Tosch Automatisering Auvik Networks libary
Project description
AuvikNetworksConnection Class
The AuvikNetworksConnection class provides an interface to interact with the Auvik Networks API, allowing users to authenticate and retrieve data related to tenants and devices. The class includes error handling and retry logic for API requests to ensure reliability. This README provides an overview of the class's functionality, methods, and usage.
Class Summary
AuvikNetworksConnection Purpose: To authenticate and interact with the Auvik Networks API.
Command-list
get_tenants: Retrieves tenant information. get_tenant_details: Retrieves detailed information for a specific tenant. get_device_info: Retrieves device information for a specific tenant. get_auvik_devices_info: Retrieves detailed device information, with optional additional details.
Methods:
init(username: str, password: str): Initializes the connection and authenticates the user. get_tenants(json_output: bool = False): Retrieves tenant information. get_tenant_details(domain_prefix: str, json_output: bool = False): Retrieves detailed information for a specific tenant. get_auvik_devices_info(tenant_id: str = None, include_detail: bool = False, json_output: bool = False): Retrieves detailed device information with optional detail fields.
Ensure you have the necessary Python packages installed: import requests import json import pandas as pd import time
Initialization
To use the AuvikNetworksConnection class, you need to provide your Auvik username and password (API token): from auvik_networks_connection import AuvikNetworksConnection
username = "your_username" password = "your_password"
auvik_conn = AuvikNetworksConnection(username, password)
Retrieve Tenants
You can retrieve tenant information using the get_tenants method: tenants = auvik_conn.get_tenants() print(tenants) To retrieve the output in JSON format, set json_output to True: tenants_json = auvik_conn.get_tenants(json_output=True) print(tenants_json)
Retrieve Tenant Details
To get detailed information for a specific tenant:
domain_prefix = "tenant_prefix" tenant_details = auvik_conn.get_tenant_details(domain_prefix) print(tenant_details)
Retrieve Detailed Device Information
To get detailed device information, including specific fields:
detailed_device_info = auvik_conn.get_auvik_devices_info(tenant_id, include_detail=True) print(detailed_device_info) Error Handling The APIErrorHandler class is used internally to handle API errors. If the API returns an error status code, an exception will be raised with a relevant message.
Retry Logic The get method includes retry logic with three attempts in case of a request failure. The system waits 10 seconds before retrying.
Notes
Ensure that your credentials are stored securely and not hard-coded in your scripts. The get_access_token method handles the base64 encoding of credentials and authenticates with the Auvik API. Use the json_output parameter to retrieve data in JSON format if required.
Project details
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
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 auviknetworks-1.0.3.tar.gz.
File metadata
- Download URL: auviknetworks-1.0.3.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de0e299fcbc0932cd49a45392b92af50cf5afe19418cafd483e94cfbca3a54ef
|
|
| MD5 |
713df0bcdc255aaec3eb58bf77563ffa
|
|
| BLAKE2b-256 |
db6830a4f06bfd49ed96bbb0713a6a70708cf3a79c2d742dbfae374da1034c3c
|
File details
Details for the file auviknetworks-1.0.3-py3-none-any.whl.
File metadata
- Download URL: auviknetworks-1.0.3-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
227674d4e5cca98dcbe1bafa8ceb85cd4b59505555479a7ea149588dc91c5a91
|
|
| MD5 |
727a42ca3b8b3e9492475aac4a10fc85
|
|
| BLAKE2b-256 |
51f2db31f89900ecd369c3230e0d829769aa074d159d8733db7f4aa5ca28734d
|