Metadata-Version: 2.1
Name: iemap
Version: 0.3.5
Summary: Tools to use IEMAP Rest API
Author-email: Sergio Ferlito <sergio.ferlito@enea.it>, Marco Puccini <marco.puccini@enea.it>
Maintainer-email: Marco Puccini <marco.puccini@enea.it>
Project-URL: Homepage, https://github.com/ai4mat/iemap-module
Project-URL: Bug Tracker, https://github.com/ai4mat/iemap-module/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# iemap-module

This module provides simple functions to interact with the iemap API. 

## Quickstart
1. Create a virtual environment and install the module in it:
    ```bash
    pip install iemap
    ```

2. In your script or notebook, import the module:
    ```python
    from iemap import IEMAP
    ```

3. Create an instance of the `IEMAP` class, using your `user` and `password`:
    ```python
    api = IEMAP(user, password)
    ```

4. Use the `login()` method for API login:
    ```python
    api.login()
    ```

5. Use the `my_projects()` method to get a list of your projects:
    ```python
    api.my_projects()
    ```
