https://github.com/btr1975/nso_jsonrpc_requester
Cisco NSO JSON-RPC Python Library
https://github.com/btr1975/nso_jsonrpc_requester
cisco engineering json-rpc network nso python3
Last synced: 12 months ago
JSON representation
Cisco NSO JSON-RPC Python Library
- Host: GitHub
- URL: https://github.com/btr1975/nso_jsonrpc_requester
- Owner: btr1975
- License: mit
- Created: 2020-05-20T14:41:37.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-25T22:41:18.000Z (about 3 years ago)
- Last Synced: 2025-03-28T15:15:42.631Z (about 1 year ago)
- Topics: cisco, engineering, json-rpc, network, nso, python3
- Language: Python
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
| BRANCH | STATUS |
|---|---|
| master | [](https://github.com/btr1975/nso_jsonrpc_requester/actions/workflows/test-coverage-lint.yml) |
| develop | [](https://github.com/btr1975/nso_jsonrpc_requester/actions/workflows/test-coverage-lint.yml) |
[](https://pepy.tech/project/nso-jsonrpc-requester)
[](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
```