AsyncIO client for Extreme Cloud IQ
Project description
Extreme Cloud IQ - Python3 AsyncIO Client
This repository contains a Python3 asyncio based client library for interacting with the Extreme Cloud IQ system (XIQ).
Note that Extreme does provide their own Python SDK client, which can be found in the reference section below.
Installation
pip install aio-xiq
This XIQ asyncio python client is a subclass from httpx.AsyncClient.
QuickStart
Before using the API you must either have an existing token or login with your user-name + password credentials. You can either pass these values into the client constructor, or use these environment variables:
- XIQ_USER - the login user-name
- XIQ_PASSWORD = the login password
-- or -- * XIQ_TOKEN - an existing API token
Username + Password
If you are using your login credentials you must execute the login()
method to obtain an access
token.
from aioxiq import XiqClient
async with XiqClient(xiq_user='bob@corp.com', xiq_password='notarealpassword') as api:
await api.login()
devices = await api.fetch_devices()
API Token
You can create an API token via the XIQ portal by nagivating to the Global Settings page (found under your User profile near the top-right), and then selecting the "API Token Management" option on the left sidebar.
When using the API Token approach, you can use the client diretly without having to perform the login function.
from aioxiq import XiqClient
# presume that XIQ_TOKEN environment variable is set with an existing token.
# you can immediately use the API without login.
async with XiqClient() as api:
devices = api.fetch_devices()
References
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
Built Distribution
File details
Details for the file aio-xiq-0.4.0.tar.gz
.
File metadata
- Download URL: aio-xiq-0.4.0.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.8.10 Darwin/21.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b8a6efb044cde019202daa55d52cdc9124d898075920607d875076e4cb97470 |
|
MD5 | 04cefb674e2bb576c17e7b13d40e5a1f |
|
BLAKE2b-256 | cda4eb24c838d5f706d53dda73f995726d4cf7bc6e8b78f260e22aa82d87db5d |
File details
Details for the file aio_xiq-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: aio_xiq-0.4.0-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.11 CPython/3.8.10 Darwin/21.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 775b5fd7d3eae5e6c4a5ee2a0a0337e1c187c91a3f00181a7fa07e6b4b7aa1d3 |
|
MD5 | dd0e69eeff28c16a583c920cfb9c8eca |
|
BLAKE2b-256 | cd4b3c0fa82633e46991c5a7d3e72dcecfce5f7824e963268dddb723167d4e21 |