Skip to content

nathanwiens/ncm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 

Repository files navigation

Cradlepoint NCM SDK

This is a Python client library for Cradlepoint NCM API

INSTALL AND RUN INSTRUCTIONS

  1. Install the ncm pip package, or copy the ncm.py file into your working directory:

    pip3 install ncm
    
  2. Set NCM API Keys. API Keys must be passed as a dictionary:

    api_keys = {
        'X-CP-API-ID': 'aaaa',
        'X-CP-API-KEY': 'bbbb',
        'X-ECM-API-ID': 'cccc',
        'X-ECM-API-KEY': 'dddd'
    }
    
  3. Import the module and create an instance of the NcmClient object:

    If using pip:

    from ncm import ncm
    n = ncm.NcmClient(api_keys=api_keys)
    

    If not using pip:

    import ncm
    n = ncm.NcmClient(api_keys=api_keys)
    
  4. Call functions from the module as needed. For example:

    print(n.get_accounts())
    

USAGE AND TIPS:

This python class includes a few optimizations to make it easier to work with the API. The default record limit is set at 500 instead of the Cradlepoint default of 20, which reduces the number of API calls required to return large sets of data.

This can be modified by specifying a "limit parameter":

n.get_accounts(limit=10)

You can also return the full list of records in a single array without the need for paging by passing limit='all':

n.get_accounts(limit='all')

It also has native support for handling any number of "__in" filters beyond Cradlepoint's limit of 100. The script automatically chunks the list into groups of 100 and combines the results into a single array.

About

Cradlepoint NCM SDK

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages