tree: 8b539f662d7ecbebc04ca682b6c9a26d1866b4d3 [path history] [tgz]
  1. CMakeLists.txt
  2. README.md
  3. examples/
  4. netconf.c
  5. netconf.h
  6. session.c
  7. setup.py.in
  8. ssh.c
  9. 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.