iemap-module
This module provides simple functions to interact with the iemap API.
Quickstart
-
Create a virtual environment and install the module in it:
pip install iemap
-
In your script or notebook, import the module:
from iemap import IEMAP
-
Create an instance of the
IEMAP
class, using youruser
andpassword
:api = IEMAP(user, password)
-
Use the
login()
method for API login:api.login()
-
Use the
my_projects()
method to get a list of your projects:api.my_projects()