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