A client library for accessing Enelyzer API
Project description
enelyzer-api-client
A client library for accessing Enelyzer API
Usage
First Authenticate and get your access token:
from enelyzer_api_client.auth import DeviceCodeAuthenticator, ServiceAccountAuthenticator
client_id = ""
client_secret = ""
username = ""
password = ""
environment = "production" # or "staging"
authenticator = ServiceAccountAuthenticator(client_id, client_secret, username, password, environment=environment)
token = authenticator.get_auth_token()
Then, create a client:
from enelyzer_api_client import AuthenticatedClient
base_url_staging="https://client-api.enelyzer.com"
base_url_production="https://client-api.enelyzer.com"
client = AuthenticatedClient(base_url=base_url_staging, token="{token}")
Now call your endpoint and use your models:
from enelyzer_api_client.api.units_categories_and_quantities import get_units
organisation_group = ""
organisation_id = ""
with client as client:
response = get_units.sync(
organisation_group=organisation_group,
organisation_id=organisation_id,
client=client,
)
print(response)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
enelyzer_api_client-0.4.0.tar.gz
(28.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file enelyzer_api_client-0.4.0.tar.gz.
File metadata
- Download URL: enelyzer_api_client-0.4.0.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.10.11 Darwin/22.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4aa3107189b3a156e3c3ecd9003dbff5240fa29084a917d466b2ddbedd59329
|
|
| MD5 |
96a3a08931bdf30c416515f714042723
|
|
| BLAKE2b-256 |
944b04e006a529114932d640f670315e393bc96d910e2084d241d0158aec41d7
|
File details
Details for the file enelyzer_api_client-0.4.0-py3-none-any.whl.
File metadata
- Download URL: enelyzer_api_client-0.4.0-py3-none-any.whl
- Upload date:
- Size: 77.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.10.11 Darwin/22.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6371720eace59db9581b124d4aab8fbac645f95b178a9683d6c179f6db46c233
|
|
| MD5 |
27651022d14a570e3b1e2621a3e7cdb6
|
|
| BLAKE2b-256 |
84552f0a0f100b3863bd6fce29da02303020c0f20d37554ba1783a709f4a575e
|