simple_netbox is a simplified REST Client for Netbox
Features
- simple_netbox has following features:
manage login
simple CRUD via ensure_exists and ensure_absent helper functions
auto add slug on creation of objects if not supplied
CRUD interface for all possible API URLs
create curl commands from all calls (for documentation purposes)
a query layer that paginates for you, with typed accessors for the common objects (devices, sites, tenants, interfaces, …)
an optional scope — implicit filters applied to every query, so a client pinned to one tenant cannot return another’s objects
Installation
Install simple_netbox by running:
pip3 install simple_netbox
Examples
CRUD a site
from simple_netbox import NetboxClient
import logging
from getpass import getpass
import secrets
import string
logger = logging.getLogger()
logging.basicConfig(encoding="utf-8", level=logging.INFO)
URL=input("Please Enter Netbox URL: ") or "http://localhost:8000"
token=input("Please Enter the Netbox token: ") or "not set"
nb = NetboxClient(URL,token=token,log_curl_commands=True)
logging.info("list all sites")
logging.info(nb.api.dcim.sites.list()) # alternativly nb.api.dcim.sites.get() can be used
logging.info("create site demo1, slug will be autogenerated if not supplied")
site_id=nb.api.dcim.sites.create(body={"name":"demo1"})["id"] # alternativly nb.api.dcim.sites.post() can be used
logging.info("to filter results on server side following syntax can be used")
logging.info(nb.api.dcim.sites.list(params={"name":"demo1"})) # alternativly nb.api.dcim.sites.get() can be used
nb.api.dcim.sites.patch(site_id,body={"description":"demo1 desc"})
logging.info(f"delete site demo1 (id:{site_id})")
nb.api.dcim.sites.delete(site_id)
logging.info(f"create site demo2 via ensure_exists")
nb.api.dcim.sites.ensure_exists(name="demo2")
logging.info(f"update site demo2 via ensure_exists")
nb.api.dcim.sites.ensure_exists(name="demo2", description="nice location")
logging.info(f"delete site demo2 via ensure_absent")
nb.api.dcim.sites.ensure_absent(name="demo2")
print(nb.api.curl_commands)
API tokens
NetBox 4.6 introduced v2 API tokens, which are made of a public key and a secret token and authenticate with a different header. Pass the key and the client uses the v2 form; leave it out and the v1 form is used, so existing code keeps working unchanged.
# v1 token -> Authorization: Token <token>
nb = NetboxClient(URL, token=token)
# v2 token -> Authorization: Bearer nbt_<key>.<token>
nb = NetboxClient(URL, token=token, key=key)
# the credential can also be replaced on an existing client
nb.login(token, key)
A hyphen cannot appear in attribute syntax, so an endpoint like dcim/device-types is reached by calling the parent instead — resources and the api object both accept a segment name, and the result chains like any other:
device_types = nb.api.dcim("device-types").get()
nb.api("dcim")("device-types").get() # the same, all the way down
nb.api.dcim("device-types").trace # calls chain into attributes
add_resource(resource_name="dcim/device-types") registers the same path up front and remains available, but nothing has to be registered before use.
The query layer below takes paths as strings, so it sidesteps the question entirely — and, unlike attribute or call access, a segment sharing a name with a resource attribute (nb.api.dcim("get") is the HTTP action, not an endpoint) still resolves to an endpoint there.
Querying
nb.api.<app>.<endpoint> is the raw CRUD interface: one request, one page. The query layer on the client itself follows NetBox’s pagination and returns plain lists, so a query never silently stops at the first 50 objects:
nb.devices(role="access-switch", tag=["core", "edge"]) # every page
nb.device(name="core-sw-01")
nb.device(ip="10.0.0.1") # resolved via the interface the address is on
nb.interfaces(device=dev) # a device dict, an id or a name
nb.sites() / nb.tenants() / nb.tags() / nb.platforms() / nb.device_roles()
nb.racks() / nb.ip_addresses()
nb.get("ipam/vrfs", tenant="acme") # any endpoint, still paginated
nb.count("dcim/devices") # without fetching them
nb.status() # cheap connectivity + credential check
nb.set_device_field(dev, custom_fields={"os_version": "17.9.4"})
Filter values are normalised: an object returned by an earlier query can be passed straight back in (its slug is used), and a list becomes repeated parameters, which NetBox ORs.
Scope
A client may be bound to implicit filters applied to every query that can express them:
nb = NetboxClient(URL, token=token, scope={"tenant": "acme", "status": "active"})
nb.devices() # only acme's active devices
nb.devices(tenant="other") # an explicit filter always wins
nb.devices(scope=False) # the cross-tenant escape hatch
nb.devices(scope={"site": "vie"}) # replace the scope for one call
Scope is applied through a per-endpoint table (ENDPOINT_SCOPE_FILTERS) rather than blindly, because NetBox rejects a filter an endpoint does not know and because a wrongly applied one would quietly return the wrong set. An endpoint that is not in the table is queried unscoped.
Contribute
Issue Tracker: https://github.com/jinjamator/simple_netbox/issues
Source Code: https://github.com/jinjamator/simple_netbox
Roadmap
- Selected Roadmap items:
add more documentation
add some more examples
For documentation please refer to https://simple_netbox.readthedocs.io/en/latest/
License
This project is licensed under the Apache License Version 2.0
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
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 simple_netbox-0.3.2-py3-none-any.whl.
File metadata
- Download URL: simple_netbox-0.3.2-py3-none-any.whl
- Upload date:
- Size: 21.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51062191a33843c1a39c2ec433000bdffc9e18a478c4b0db6e59ad26dcfcbb16
|
|
| MD5 |
66c34496ac6858aec445865b8f279e84
|
|
| BLAKE2b-256 |
f3c2227c32b93079da95e48e0f485cdb1fe4deff224b6c4a4ad70d137f80fc93
|