ns1-python
ns1-python copied to clipboard
NS1 Python SDK
collections.Iterable was moved to collections.abc.Iterable in Python 3.8 but compatibility was preserved. In Python 3.10, old path was removed.
Fix loadScope so it accepts only the required scope id Fix rest.ipam.xyz classes so they accept the fields listed on the current API docs Fix rest.ipam.addresses.search so it works pr...
changed parameter from scopeGroupId to scope_group_id to conform with API
Doesn't conform to API docs..
name is absent in Addresses::PASSTHRU_FIELDS - also there's a space postfix in 'merged_address_ip' which isn't even in the current API docs?
NS1.loadScope requires a scope_id, but does not allow to pass one: ```def loadScope( self, scopegroup_id, address_id, callback=None, errback=None):``` Attempting to issue this call breaks: ``` res = api.loadScope(21939286, 68740) File...
It will be nice to have pagination when retrieving usage statistics of a zone for a specific period of time and with expand enabled. It will show each record of...
Secrets are not available for pr from fork repository in open source projects, this validation skip this job for Prs from fork repos
something akin to ```python return zones.Zone(self.config, None)._rest.list() ```
Add the ability to pass in params to search function, useful for changing the "max" param specifically. There is no current way to accomplish this per the SDK. For example:...