Project
Returns metadata for the current project.
proj = client.project()Returns
Project with the following attributes:
| Attribute | Type | Description |
|---|---|---|
proj_id |
int |
Project ID |
proj_name |
str |
Project name |
city |
str |
Project city |
tz |
str |
Project timezone |
usage |
int |
Current data point usage |
capacity |
int |
Total data point capacity |
Example
proj = client.project()
print(proj.proj_name) # "Acme HQ"
print(proj.city) # "Richmond, VA"
print(proj.tz) # "New_York"
print(proj.usage) # 1200
print(proj.capacity) # 5000