tree: 149c4266ffedea8fad753d74b62708e9c5a8a1d1 [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.