Library for Huawei, Nokia network device API interactions
Project description
PyNetCom
pynetcom is a library designed for connecting to network switches and routers from various vendors via REST API and CLI, as well as for interacting with management systems such as Huawei NCE and Nokia NSP. The library allows you to execute commands, retrieve inventory data, and obtain alarm lists.
Features
- Connect to network devices using REST API and CLI.
- Interact with management systems (e.g., Huawei NCE, Nokia NSP).
- Retrieve inventory data.
- Obtain alarm lists.
- Convenient token management for authorization.
- Automatic token refresh upon expiration.
Installation
You can install the package using pip:
pip install pynetcom
Development
To set up the development environment:
# Install development dependencies
pip install setuptools wheel twine
# Install the package locally
pip install .
# Create wheel and source
pip install build twine
python -m build
Running Examples
To run examples, follow these steps:
-
Clone the repository:
git clone https://github.com/ddarth/pynetcom.git cd pynetcom
-
Set up a virtual environment:
python -m venv .venv
-
Activate the virtual environment:
-
On Windows:
.venv\Scripts\activate
-
On macOS/Linux:
source .venv/bin/activate
-
-
Add your configuration data to config.py:
cp examples/config.example.py examples/config.py vi examples/config.py
API_NCE_USER = "your_nce_api_user" API_NCE_PASS = "your_nce_password" API_NCE_HOST = "https://your_nce_hostip:26335" API_NSP_USER = "your_nsp_api_user" API_NSP_PASS = "your_nsp_password" API_NSP_HOST = "https://your_nsp_host" NETCONF_HOST = "192.168.0.1" NETCONF_PORT = 830 # 22 for huawei NETCONF_USER = "your_netconf_user" NETCONF_PASSWORD = "yout_netconf_password"
-
Run an example script:
python examples/huawei_nce.py
Usage
Here is an example of how to use the library:
from pynetcom import RestNCE
# Initialize connection to NCE
nce = RestNCE(API_NCE_HOST, API_NCE_USER, API_NCE_PASS)
# Get subnets from NCE
nce.send_request("/restconf/v2/data/huawei-nce-resource-inventory:subnets")
items = nce.get_data()
print(items)
For additional info see examples/ folder
License
This project is licensed under the MIT License - see the LICENSE file for details.
Warning
Library use nsp_token.txt and nce_token.txt to store tokens. Make sure that your have write permission to it.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pynetcom-0.1.6.tar.gz.
File metadata
- Download URL: pynetcom-0.1.6.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08bc7896ebd67f333803a7bf2cd9c70f0cc1a17c62c07e60a192be9e2312d82d
|
|
| MD5 |
dd36a518585540def986239b093bbf92
|
|
| BLAKE2b-256 |
7697adb610e826d94b2500cc0e0e4046dff7bfa8b9005a92ca47b6921e765696
|
File details
Details for the file pynetcom-0.1.6-py3-none-any.whl.
File metadata
- Download URL: pynetcom-0.1.6-py3-none-any.whl
- Upload date:
- Size: 16.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7398553efefe230bb4688c83a35ab041ef86c1cd622dae83f1b1becbf7210ef
|
|
| MD5 |
e5e07de570317e67d41cba4bb3384837
|
|
| BLAKE2b-256 |
5d036fd59785bd080f8cc203f2aedd4115b6eaf24577346cf2e14b07a0c34a66
|