Metadata-Version: 2.1
Name: iemap
Version: 0.2.2
Summary: Tools to use IEMAP Rest API
Home-page: https://github.com/ai4mat/iemap-module
Download-URL: https://github.com/ai4mat/iemap-module/archive/refs/tags/v0.2.2.tar.gz
Author: Marco Puccini
Author-email: marco.puccini@enea.it
License: GPL
Project-URL: Homepage, https://github.com/ai4mat/iemap-module
Project-URL: Documentation, https://github.com/ai4mat/iemap-module
Project-URL: Bug Tracker, https://github.com/ai4mat/iemap-module/issues
Keywords: pypi,iemap,api
Classifier: Development Status :: 3 - Alpha
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 :: 3.10
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Utilities
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
    import iemap
    ```

3. Create an instance of the `IEMAP` class, using your `user` and `password`:
    ```python
    api = iemap.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()
    ```
