pynetbox
pynetbox copied to clipboard
Python API client library for Netbox.
Trying to create webhook with additional headers, but got the error below. ``` Traceback (most recent call last): File "/opt/netbox/venv/lib/python3.9/site-packages/rq/worker.py", line 1061, in perform_job rv = job.perform() File "/opt/netbox/venv/lib/python3.9/site-packages/rq/job.py", line...
The Netbox API has no `/trace` endpoint for front-ports and rear-ports, but a `/paths` endpoint (see issue #434). This PR implements the `/paths` endpoint for pynetbox.
When querying multi-page data, the current code completely takes the value from the next-parameter in the json answer. However if the netbox instance is multi-homed, or accessed unusually, for example...
What is the projects stance on implementing type hints according to [PEP484](https://www.python.org/dev/peps/pep-0484/)? I would be willing to put in the work if a pull request would be accepted.
NetBox 3.2 will support objects in custom fields: https://github.com/netbox-community/netbox/issues/7006 Some changes are most probably needed in `pynetbox` to support that.
Updating doco to reflect the need to encapsulate the result set in a list when calling the all() method of an endpoint. See disscussion in netbox-community#450 and also sol1james#1
Close #457 Since there is no existing PR, I've created one which is based on @markkuleinio solution
I have a JSON custom field on some objects in my NetBox 3.2beta instance. When trying to update one of the objects I get this traceback. ``` Traceback (most recent...
Adding documentation to endpoint.py for using .filter() and .create() Documentation for using .create() - examples for creating device, device types, device bay, child device and assigning to a device bay,...
I am using extras.webhook to create a new webhook with different name, content_type, but the same payload_url, type_create, type_update, type_delete value, but got the error below: ``` modifying failed due...