Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/btr1975/nsojsonrpcrequestergo
Cisco NSO JSON-RPC Go Library
https://github.com/btr1975/nsojsonrpcrequestergo
automation cisco engineering go golang network nso
Last synced: 30 days ago
JSON representation
Cisco NSO JSON-RPC Go Library
- Host: GitHub
- URL: https://github.com/btr1975/nsojsonrpcrequestergo
- Owner: btr1975
- License: mit
- Created: 2021-01-11T17:48:34.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T22:47:43.000Z (almost 2 years ago)
- Last Synced: 2024-10-03T05:09:21.958Z (about 2 months ago)
- Topics: automation, cisco, engineering, go, golang, network, nso
- Language: Go
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nsojsonrpcrequestergo
* 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/[email protected]
```### 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/[email protected]#egg=nso_jsonrpc_requester
```