Fast, flexible, sync/async, Python 3.6+ NETCONF client built on scrapli
Project description
scrapli_netconf
Documentation: https://scrapli.github.io/scrapli_netconf
Source Code: https://github.com/scrapli/scrapli_netconf
Examples: https://github.com/scrapli/scrapli_netconf/tree/master/examples
scrapli_netconf is a NETCONF driver built on top of scrapli, giving you all the scrapli behaviour you know and love, but for NETCONF connections.
Key Features:
- Easy: Just like scrapli, scrapli_netconf is easy to get going with, and looks and feels just like "normal" scrapli -- check out the documentation and example links above, and you'll be connecting to devices in no time.
- Fast: Do you like to go fast? Of course you do! scrapli_netconf supports all of the ssh transports that
scrapli core supports; check out the
ssh2
transport if you've got the need for speed! - Great Developer Experience: scrapli_netconf has great editor support thanks to being fully typed; that plus thorough docs make developing with scrapli a breeze.
- Well Tested: Perhaps out of paranoia, but regardless of the reason, scrapli_netconf has lots of tests! Unit tests cover the basics, regularly ran functional tests connect to virtual routers to ensure that everything works IRL!
- Concurrency on Easy Mode: Nornir's scrapli plugin gives you all the normal benefits of scrapli plus all the great features of Nornir.
Requirements
MacOS or *nix1, Python 3.6+
scrapli_netconf's only requirements are scrapli
, of course, and lxml
.
1 Although many parts of scrapli do run on Windows, Windows is not officially supported
Installation
pip install scrapli_netconf
See the docs for other installation methods/details.
A Simple Example
from scrapli_netconf.driver import NetconfDriver
my_device = {
"host": "172.18.0.13",
"auth_username": "vrnetlab",
"auth_password": "VR-netlab9",
"auth_strict_key": False,
"port": 830
}
conn = NetconfDriver(**my_device)
conn.open()
response = conn.get_config(source="running")
print(response.result)
Project details
Release history Release notifications | RSS feed
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
Hashes for scrapli_netconf-2021.7.30.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c71ed124971751c171160c03d2d04d62ff61b16c05551c09c06e88264f84bec |
|
MD5 | 705820d37b0d7ef05b4890d4769d4c44 |
|
BLAKE2b-256 | 33f380a9283b84b767ce56da28a5f493495c45df6d1bb03b35c624e30dbb17e6 |
Hashes for scrapli_netconf-2021.7.30-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4cf87bf615f297967e139797326a59617ebd5b8859c67b08d7a5c06c77ba04f2 |
|
MD5 | b0bd50b8a692ab1d4820cbea9082f044 |
|
BLAKE2b-256 | c0566e320f295e7f6fdcca42b882300224ddb0b1a0b591718f4f42fd9865aae9 |