Metadata-Version: 2.1
Name: nso-jsonrpc-requester
Version: 1.0.4
Summary: This is a library used to manipulate data in Cisco NSO
Home-page: UNKNOWN
Author: Benjamin P. Trachtenberg
Author-email: e_ben_75-python@yahoo.com
License: The MIT License (MIT)
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
Requires-Dist: requests (~=2.25.0)
Requires-Dist: PyYAML (~=5.4.0)

# 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

* 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
```



