Metadata-Version: 2.1
Name: nso_jsonrpc_requester
Version: 1.0.7
Summary: This is a library used to manipulate data in Cisco NSO
Home-page: https://nso-jsonrpc-requester.readthedocs.io
Author: Benjamin P. Trachtenberg
Author-email: e_ben_75-python@yahoo.com
License: The MIT License (MIT)
Project-URL: Documentation, https://nso-jsonrpc-requester.readthedocs.io/en/latest/
Project-URL: Source, https://github.com/btr1975/nso_jsonrpc_requester
Project-URL: Tracker, https://github.com/btr1975/nso_jsonrpc_requester/issues
Keywords: cisco nso json rpc network engineer
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

| BRANCH | STATUS |
|---|---|
| master | [![Unit-Testing, Coverage, Linting](https://github.com/btr1975/nso_jsonrpc_requester/actions/workflows/test-coverage-lint.yml/badge.svg?branch=master)](https://github.com/btr1975/nso_jsonrpc_requester/actions/workflows/test-coverage-lint.yml) |
| develop | [![Unit-Testing, Coverage, Linting](https://github.com/btr1975/nso_jsonrpc_requester/actions/workflows/test-coverage-lint.yml/badge.svg?branch=develop)](https://github.com/btr1975/nso_jsonrpc_requester/actions/workflows/test-coverage-lint.yml) |


[![Downloads](https://pepy.tech/badge/nso-jsonrpc-requester)](https://pepy.tech/project/nso-jsonrpc-requester)
[![Supported Versions](https://img.shields.io/pypi/pyversions/nso-jsonrpc-requester.svg)](https://pypi.org/project/nso-jsonrpc-requester)

# nso_jsonrpc_requester

* This is a library to interact with the JSON-RPC of a Cisco Network
  Services Orchestrator server.

* This is not a 100% complete library it contains what I use most.

* **THIS IS NOT MEANT TO BE PRODUCTION READY SO TEST WHAT YOU WANT TO USE IT FOR**

### Library in Other Languages

* [Python 3](https://github.com/btr1975/nso_jsonrpc_requester)
* [Go](https://github.com/btr1975/nsojsonrpcrequestergo)
* I try to keep the functionality the same between both, because I use
  both.

### Go Install

* Install newest code

```shell
go get github.com/btr1975/nsojsonrpcrequestergo
```

* Install specific version example

```shell
go get github.com/btr1975/nsojsonrpcrequestergo@v1.0.0
```

### Python Install Source

* In your requirements.txt for newest code

```text
git+https://github.com/btr1975/nso_jsonrpc_requester.git@master#egg=nso_jsonrpc_requester
```

* In your requirements.txt for specific version

```text
git+https://github.com/btr1975/nso_jsonrpc_requester.git@1.0.3#egg=nso_jsonrpc_requester
```

### Python Install pip

```text
pip install nso-jsonrpc-requester
```



