Python NetBox Client
Project description
python-netbox is a client for the Netbox (https://github.com/digitalocean/netbox) API. It’s based on the APIv2 which is released since version 2.0.0. It requires python 3.
The full documentation can be found here.
Installation
To get the latest version from Github:
$ pip3 install python-netbox
Usage
To start with the module:
>>> from netbox import NetBox >>> netbox = NetBox(host='127.0.0.1', port=32768, use_ssl=False, auth_token='token')
Examples
Get all devices:
>>> netbox.dcim.get_devices()
Get devices per rack:
>>> netbox.dcim.get_devices_per_rack('rack_name')
Get device by name
>>> netbox.dcim.get_devices(name='device_name')
Create a site:
>>> netbox.dcim.create_site('site1', 'site1')
Delete a site:
>>> netbox.dcim.delete_site('site1')
Get IP address object:
>>> netbox.ipam.get_ip_addresses(address='10.0.0.1/16')
Support
If you have questions or comments please send an email to thomas@tjrb.nl
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
python-netbox-0.0.14.tar.gz
(9.9 kB
view details)
File details
Details for the file python-netbox-0.0.14.tar.gz
.
File metadata
- Download URL: python-netbox-0.0.14.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/38.5.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 109627a5d2321fc24d3ee133f453910543b09e94e5cb4865a070ed8c80945153 |
|
MD5 | 6eef0e309a15395032a6861a6d93829c |
|
BLAKE2b-256 | ab6055846cea59f25a5fa8e0b5fab346c9729a3c8fee89a9c5b61ddf408b3a41 |