tree: 01fb01355418f0c3f6731e9402165d3c242d7efc [path history] [tgz]
  1. CMakeLists.txt
  2. README.md
  3. docs/
  4. examples/
  5. netconf.c
  6. netconf.h
  7. session.c
  8. setup.py.in
  9. ssh.c
  10. tls.c
python/README.md

This is work in progress. DO NOT USE for now.

Requirements

  • Python 3
  • libnetconf2

Building

From the libnetconf2 main build:

$ mkdir build; cd build $ cmake -DENABLE_PYTHON=ON .. $ make

make install

Usage

import netconf2 session = netconf2.Session('localhost', 830) del(session)

More detailed examples can be found in the example/ directory.