Skip to main content

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

auviknetworks-1.0.0.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

auviknetworks-1.0.0-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file auviknetworks-1.0.0.tar.gz.

File metadata

  • Download URL: auviknetworks-1.0.0.tar.gz
  • Upload date:
  • Size: 7.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.4

File hashes

Hashes for auviknetworks-1.0.0.tar.gz
Algorithm Hash digest
SHA256 e3d2903e38367accf3625cee25e066698a022ed65dcf09e484afff0371068f77
MD5 1eeeec48562e51103e57417622bf6ea4
BLAKE2b-256 bb0804e3158551e251be06042d973eec1e80fa6c25bcc2d98d909ccbf84524a1

See more details on using hashes here.

File details

Details for the file auviknetworks-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: auviknetworks-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 8.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.4

File hashes

Hashes for auviknetworks-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e03b9edb1d78cb76a7a78d58565e64b3fc489489d77795ab5f42e9ecffa18d78
MD5 03ff0dae4eed3ac7d5f9fcbb0d7678c1
BLAKE2b-256 1977a2655bbc8507bfa5d71fff33edd0193e4ec571eb7ff1b4009228eb641b98

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page