How to get started
Installation
Production version
Installation is made through pip:
pip install gazu
Development version
If you are interested in the development version, install it from the git repository:
pip install --upgrade setuptools
pip install git+https://github.com/cgwire/cgwire-api-client.git
Configuration
The client requires a few extra configuration before being used. It needs to know where is located the API server:
import gazu
gazu.client.set_host("https://zou-server-url/api")
Authentication
Authenticate your library with the following function call:
gazu.log_in("user@mail.com", "userpassword")