tree: 9f3a9d849fdeca74c2314e6a6ec27b456067f34f [path history] [tgz]
  1. CMakeLists.txt
  2. README.md
  3. docs/
  4. err.c
  5. examples/
  6. netconf.c
  7. netconf.h
  8. rpc.c
  9. rpc.h
  10. session.c
  11. session.h
  12. setup.py.in
  13. ssh.c
  14. 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.