Skip to content

ai4mat/iemap-module

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

    pip install iemap
  2. In your script or notebook, import the module:

    from iemap import IEMAP
  3. Create an instance of the IEMAP class, using your user and password:

    api = IEMAP(user, password)
  4. Use the login() method for API login:

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

    api.my_projects()