NetBox Python API Client.
Project description
NetBox Python
Python API client library for NetBox.
Note: This is a preliminary release and still under development.
-
Github repository: https://github.com/netbox-community/netbox-python/
-
Documentation https://netbox-community.github.io/netbox-python/
Table of Contents
About
This is a thin python wrapper over the NetBox API.
Getting Started
To install run pip install netbox-python
.
Alternatively, you can clone the repo and run python setup.py install
.
Usage
The full documentation is at https://netbox-community.github.io/netbox-python/, but the following should be enough to get started using it.
To begin, import the NetBox client and instantiate it:
from netbox_python import NetBoxClient, Result
nb = NetBoxClient(
base_url="http://127.0.0.1:8000/", token="1dc6fa5bfcef8390dd83a261c36ed8f1551b2d6b"
)
The first argument NetBoxClient takes is the NetBox URL. The 'token' argument is from NetBox.
Now using the client you can make calls to the api, for example:
# 1. List (paginated)
ret = nb.dcim.sites.list(limit=3)
# 2. Filtered List
ret = nb.dcim.sites.list(region_id="43")
# 3. All
ret = nb.dcim.sites.all()
# 4. Get
ret = nb.dcim.sites.get(24)
# 5. Create
ret = nb.dcim.sites.create(name="foo3", slug="foo3")
# 6. Bulk Create
data = [
{"name": "foo4", "slug": "foo4"},
{"name": "foo5", "slug": "foo5"},
{"name": "foo6", "slug": "foo6"},
]
ret = nb.dcim.sites.create(data)
# 7. Update
ret = nb.dcim.sites.update(26, name="foo2-new", slug="foo2-new-slug")
# 8. Bulk Update
data = [
{"id": 28, "name": "foo4-new", "slug": "foo4-new"},
{"id": 29, "name": "foo5-new", "slug": "foo5-new"},
]
ret = nb.dcim.sites.update(data)
# 9. Delete
ret = nb.dcim.sites.delete(37)
# 10. Bulk Delete
data = [{"id": 25}, {"id": 27}]
ret = nb.dcim.sites.delete(data)
The methods on the api's correspond to the NetBox REST API, so ('circuits', 'core', 'dcim', 'extras', 'ipam', 'plugins', 'tenancy', 'users', 'virtualization', 'wireless')
circuits would have 'circuit_terminations', 'circuit_types', etc... off of it. Each of the endpoints has 'list', 'get', 'create', 'update' and 'delete' functions.
Roadmap
See the open issues for a list of proposed features (and known issues).
- Top Feature Requests (Add your votes using the 👍 reaction)
- Top Bugs (Add your votes using the 👍 reaction)
- Newest Bugs
Support
Reach out to the maintainer at one of the following places:
Contributing
First off, thanks for taking the time to contribute! Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are greatly appreciated.
Please read our contribution guidelines, and thank you for being involved!
Authors & contributors
The original setup of this repository is by Arthur Hanson.
For a full list of all authors and contributors, see the contributors page.
License
This project is licensed under the Apache Software License 2.0.
See LICENSE for more information.
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 netbox_python-0.1.8.tar.gz
.
File metadata
- Download URL: netbox_python-0.1.8.tar.gz
- Upload date:
- Size: 54.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf77520e8e6a830178e7c97a799775f369e736f9091b556b1bcfd3eb35bc000e |
|
MD5 | 174aa5cf05252d06a9ef3a4f6102a24e |
|
BLAKE2b-256 | de0bdc0733d3c79cc4364d71cc1e1e2ef2c11e45822dc950f2e609b687450e72 |
File details
Details for the file netbox_python-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: netbox_python-0.1.8-py3-none-any.whl
- Upload date:
- Size: 17.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b40cbc2cf0e323303d068cc23c064730fd17706c3cfc4b9a6aaf590060f8c05 |
|
MD5 | f046cbf8611225ad9c0a2e6f24022b64 |
|
BLAKE2b-256 | 8623ef59b45d9cd107564eedcc40d57ee7d7b406ed2d4140fb5a8da5b83ec8c6 |