Skip to main content

Minimal wrapper around the NetScaler NITRO API

Project description

NITRO API Wrapper
=================
This project is a minimalist wrapper around the NetScaler NITRO API. Its purpose
is to expedite the process of testing the API and building scripts to do useful tasks.

It is expected that you refer to the NITRO documentation while using this lib.

There are two ways in which this lib can be consumed:

1. The `API` class can be instantiated from any code. It has a single `request`
method, which is used to make API calls against NITRO.

2. The `CLI` class is a subclass of `API` and is designed to be a convenience
class for working with stand alone scripts that populate the `API` constructor
using command line arguments parsed by `docopt`. The command line arguments can be
passed in directly or they can be added to a JSON file and the `--json` flag can
be used to reference the JSON file path. A `cli_example.py` file is included in
the package to give a working example of how to use this use case.

The `request` method takes a NITRO API call and returns a python dictionary with
the result.

``` python
api.request(self, path, payload=None, method=None)
```

``` sphinx
Builds the request and returns a json object of the result or None.
If 'payload' is specified, the request will be a POST, otherwise it will be a GET.

:param path: a path appended to 'self.base_path' (default of '/nitro/v1'),
eg: path='/config' => '/nitro/v1/config'
:type path: str or unicode

:param payload: the object to be passed to the server
:type payload: dict or None

:param method: the request method [ GET | POST | PUT | DELETE ]
:type method: str or unicode

:returns: the result of the request as a dictionary;
if result is json: return json as a dict
if result == '': return {'headers': <headers dict>}
if result != json and result != '': return {'result': '<text returned>'}
:rtype: dict or None
```


**Examples using the parent `API` class:**

``` python
from nitroapi import API

# Recommended usage using WITH (to automatically login and logout):
with API(username="your user", password="your pass", endpoint="ns url") as api:
system_stats = api.request('/stat/system')

# Manual setup and tear down example (requires explicit logout):
api = API(username="your user", password="your pass", endpoint="ns url")
api.request('/config/login', {
'login': {
'username':api.username,
'password':api.password
}
})
system_stats = api.request('/stat/system')
api.request('/config/logout', {'logout': {}})
```


**Examples using the `CLI` sub-class:**
Duplicate the `./cli_example.py` to get started.

``` python
from nitroapi import CLI

# Recommended usage using WITH (to automatically login and logout):
with CLI(__doc__) as api:
pprint.pprint(api.request('/stat/system'))

# Manual setup and tear down example (requires explicit logout):
api = CLI(__doc__)
api.request('/config/login', {
'login': {
'username':api.username,
'password':api.password
}
})
system_stats = api.request('/stat/system')
api.request('/config/logout', {'logout': {}})
```


INSTALL
=======
The easiest way to install this library is through `pip`.

``` bash
$ pip install nitroapi
```

Alternatively, you can pull down the source code directly and install manually.

``` bash
$ git clone https://github.com/swill/nitroapi.git
$ cd nitroapi
$ python setup.py install
```


USAGE
=====
The core functionality is documented above, but it is worth spending a minute
to better describe the `CLI` use case.

``` bash
$ ./cli_example.py --help

Usage:
cli_example.py [--json=<arg>] [--endpoint=<arg> --username=<arg> --password=<arg>] [options]
cli_example.py (-h | --help)

Options:
-h --help Show this screen.
--json=<arg> Path to a JSON config file with the same names as the options (without the '--' prefix).
--endpoint=<arg> NetScaler URL.
--username=<arg> NetScaler username.
--password=<arg> NetScaler password.
--base_path=<arg> Base NetScaler API path [default: /nitro/v1].
--logging=<arg> Boolean to turn on or off logging [default: True].
--log_level=<arg> The logging verbosity. [default: DEBUG].
Valid entries are: CRITICAL | ERROR | WARNING | INFO | DEBUG | NOTSET
--log=<arg> The log file to be used [default: logs/nitroapi.log].
--clear_log=<arg> Removes the log each time the API object is created [default: True].
--verify_ssl=<arg> Verify the SSL Certificate for a target HTTPS endpoint [default: True].
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nitroapi-0.1.0.tar.gz (5.8 kB view details)

Uploaded Source

File details

Details for the file nitroapi-0.1.0.tar.gz.

File metadata

  • Download URL: nitroapi-0.1.0.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for nitroapi-0.1.0.tar.gz
Algorithm Hash digest
SHA256 73b06314b4862c6a32ad7d320bae0fe6fc81570687a67e973d7449a0a83a7833
MD5 4f316ca385604e2fa9748da84b664b6e
BLAKE2b-256 580571421a4d31e6d30ef896fe7b3fcdc1ca07eb3aaecceaba79be8e7c683606

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page