Async netbox library
Project description
AIO Netbox
An asyncio netbox library that conforms to any running netbox via it's OpenAPI spec
Installation
AIONetbox is distributed as a library intended to be included in other asyncio python projects. It has been developed on python 3.6+ though 3.8 is recommended.
pip install aionetbox
Usage
from aionetbox import AIONetbox
netbox = AIONetbox.from_openapi(
url='http://localhost:8000',
api_key='0123abcd'
)
sites = await netbox.dcim.dcim_sites_list()
my_site = await netbox.dcim.dcim_sites_read(id=2)
custom_field_sort = await netbox.dcim.dcim_regions_list(cf_sf_id='identifier')
Each module and method map to the swagger definition for netbox (/api/docs
)
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
aionetbox-1.6.2.tar.gz
(9.5 kB
view hashes)
Built Distribution
aionetbox-1.6.2-py3-none-any.whl
(22.9 kB
view hashes)
Close
Hashes for aionetbox-1.6.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ad831b5050480fdc2108b7f68d158757cca4837a852bd7de320fb36477d1480 |
|
MD5 | 4337043663a058e9c71b7461f9fe955b |
|
BLAKE2b-256 | a978e05c8a27258dc3d4059d298f33e499a684be47c45d12c222c6c212186145 |