netbox-python
netbox-python copied to clipboard
Python NetBox API Client
This adds an additional argument to the `NetBoxClient` class constructor called `verify` which specifies whether to verify the authenticity of the SSL certificate presented by the NetBox server. The default...
# Feature Request **Describe the Feature Request** Request was made to potentially add async support.
Fixes #22 in the simplest way by just adding the missing `ipam.vlan_group` object (from already imported `vlan_group` class).
### NetBox Python version v0.1.6 ### NetBox version v3.6.6 ### Python version 3.11 ### Steps to Reproduce Trying to call: ``` self.api.ipam.vlan_group.available_vlans.list(id=group_id, limit=1) ``` or ``` self.api.ipam.vlan_groups.available_vlans.list(id=group_id, limit=1) ``` Fails...
### NetBox Python version v0.1.6 ### NetBox version v3.6.4 ### Python version 3.8 ### Steps to Reproduce A circuit-termination has a paths endpoint. https://netbox.sipgate.net/api/circuits/circuit-terminations/13/paths/ However I'm not able / don't...
### NetBox Python version v0.1.6 ### NetBox version v3.6.4 ### Feature type Change to existing functionality ### Proposed functionality Allow passing params from the netbox client to the rest client....
# Bug Report **NetBox Python version:** 0.1.6 **Current behavior:** no update happens When I use nb.ipam.prefixes.update, no update happens **Expected behavior:** I would expect the http patch data to update...
# Feature Request Add support for calling plugin APIs like pynetbox.