ncclient


Namencclient JSON
Version 0.6.15 PyPI version JSON
download
home_pagehttps://github.com/ncclient/ncclient
SummaryPython library for NETCONF clients
upload_time2023-10-17 21:36:51
maintainer
docs_urlNone
authorShikhar Bhushan, Leonidas Poulopoulos, Ebben Aries, Einar Nilsen-Nygaard
requires_python>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
licenseApache 2.0
keywords netconf netconf python client juniper optimization cisco nxos optimization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ncclient: Python library for NETCONF clients
--------------------------------------------

ncclient is a Python library that facilitates client-side scripting and
application development around the NETCONF protocol. ``ncclient`` was
developed by `Shikar Bhushan <http://schmizz.net>`. It is now
maintained by `Leonidas Poulopoulos (@leopoul) <http://ncclient.org>`
and `Einar Nilsen-Nygaard (@einarnn)`.

Docs:
`http://ncclient.readthedocs.org <http://ncclient.readthedocs.org>`_

Github:
`https://github.com/ncclient/ncclient <https://github.com/ncclient/ncclient>`_

Requirements:
^^^^^^^^^^^^^

-  Python 2.7 or Python 3.4+
-  setuptools 0.6+
-  Paramiko 1.7+
-  lxml 3.3.0+
-  libxml2
-  libxslt

If you are on Debian/Ubuntu install the following libs (via aptitude or
apt-get):

-  libxml2-dev
-  libxslt1-dev

Installation:
^^^^^^^^^^^^^

::

    [ncclient] $ sudo python setup.py install

or via pip:

::

    pip install ncclient

Examples:
^^^^^^^^^

::

    [ncclient] $ python examples/juniper/*.py

Usage
~~~~~

Get device running config
'''''''''''''''''''''''''

Use either an interactive Python console (ipython) or integrate the
following in your code:

::

    from ncclient import manager

    with manager.connect(host=host, port=830, username=user, hostkey_verify=False) as m:
        c = m.get_config(source='running').data_xml
        with open("%s.xml" % host, 'w') as f:
            f.write(c)

As of 0.4.1 ncclient integrates Juniper's and Cisco's forks, lots of new concepts
have been introduced that ease management of Juniper and Cisco devices respectively.
The biggest change is the introduction of device handlers in connection paramms.
For example to invoke Juniper's functions annd params one has to re-write the above with 
**device\_params={'name':'junos'}**:

::

    from ncclient import manager

    with manager.connect(host=host, port=830, username=user, hostkey_verify=False, device_params={'name':'junos'}) as m:
        c = m.get_config(source='running').data_xml
        with open("%s.xml" % host, 'w') as f:
            f.write(c)

Device handlers are easy to implement and prove to be futureproof.

Supported device handlers
'''''''''''''''''''''''''

* Juniper: `device_params={'name':'junos'}`
* Cisco:
    - CSR: `device_params={'name':'csr'}`
    - Nexus: `device_params={'name':'nexus'}`
    - IOS XR: `device_params={'name':'iosxr'}`
    - IOS XE: `device_params={'name':'iosxe'}`
* Huawei:
    - `device_params={'name':'huawei'}`
    - `device_params={'name':'huaweiyang'}`
* Nokia SR OS: `device_params={'name':'sros'}`
* H3C: `device_params={'name':'h3c'}`
* HP Comware: `device_params={'name':'hpcomware'}`
* Server or anything not in above: `device_params={'name':'default'}`

Changes \| brief
~~~~~~~~~~~~~~~~

**v0.6.12**

* Fix for accidental breakage of Juniper ExecuteRPC support

**v0.6.11**

* Support for custom client capabilities
* Restructuring/refactoring of example scripts
* Minor bugfixes
* Minor unit test refactoring

**v0.6.10**

* NETCONF call-home (RFC8071) support
* YANG 1.1 `action` support
* Nokia SR OS device handler support
* Removal of old ALU base-r13 API documentation
* Increased test coverage
* Variety of bugfixes and minor enhancements from a variety of contributors since 0.6.9 (see commit history)
* Thanks to all contributors!

**v0.6.9**

* Fix for breaking API change

**v0.6.8**

* Pulled due to accidental breaking API change
* Variety of small updates and bugfixes, but of note:
    - Support for namespace prefixes for XPath queries
    - `edit-config` parameter validation
    - Support for multiple RPC errors
    - API to get supported device types
    - Support for subtree filters with multiple top-level tags
* Thanks to all contributors!

**v0.6.7**

- Variety of bugfixes from a variety of contributors since 0.6.6 (see commit history)

**v0.6.6**

- Read ssh timeout from config file if not specified in method call
- Tox support
- Huge XML tree parser support
- Adding optional bind address to connect

**v0.6.5**

- Updated README for 0.6.5 release

**v0.6.4**

- Pin selectors2 to Python versions <= 3.4
- Fix config examples to actually use the nc namespace
- Fix: correctly set port for paramiko when using ssh_config file
- Test: add test to check ProxyCommand uses correct port
- Update commits for py3
- Enhance Alcatel-Lucent-support
- Juniper RPC: allow specifying format in CompareConfiguration
- Parsing of NETCONF 1.1 frames no longer decodes each chunk of bytes
- Fix filter in create_subscription
- Validate 'with-defaults' mode based on supported modes advertised in capability URI

**v0.6.3**

- Fix homepage link registered with PyPi
- SSH Host Key checking
- Updated junos.py to resolve RestrictedUser error
- Close the channel when closing SSH session
- Invoke self.parse() to ensure errors, if any, have been detected before check in ok()

**v0.6.2**

- Migration to user selectors instead of select, allowing higher scale operations
- Improved netconf:base:1.1 parsing
- Graceful exit on session close

**v0.6.0**

- Fix use of new Python 3.7 keyword, async
- Re-enable Python 3.7

**v0.5.4**

- Rollup of minor changes since 0.5.3
- Disablement of Python 3.7 due to async keyword issue

**v0.5.3**

- Add notifications support
- Add support for ecdsa keys
- Various bug fixes

**v0.5.2**

- Add support for Python 3
- Improve Junos ioproc performance
- Performance improvements
- Updated test cases
- Many bug and performance fixes


**v0.4.7**

- Add support for netconf 1.1

**v0.4.6**

- Fix multiple RPC error generation
- Add support for cancel-commit and persist param
- Add more examples

**v0.4.5**

- Add Huawei device support
- Add cli command support for hpcomware v7 devices
- Add H3C support, Support H3C CLI,Action,Get_bulk,Save,Rollback,etc.
- Add alcatel lucent support

- Rewrite multiple error handling
- Add coveralls support, with shield in README.md
- Set severity level to higher when multiple
- Simplify logging and multi-error reporting
- Keep stacktrace of errors
- Check for known hosts on hostkey_verify only
- Add check for device sending back null error_text
- Fix RPC.raise_mode
- Specifying hostkey_verify=False should not load_known_hosts
- Check the correct field on rpc-error element

**v0.4.3**

- Nexus exec_command operation
- Allow specifying multiple cmd elements in Cisco Nexus
- Update rpc for nested rpc-errors
- Prevent race condition in threading
- Prevent hanging in session close

**v0.4.2**

- Support for paramiko ProxyCommand via ~/.ssh/config parsing
- Add Juniper-specific commit operations
- Add Huawei devices support
- Tests/Travis support
- ioproc transport support for Juniper devices
- Update Cisco CSR device handler
- Many minor and major fixes

**v0.4.1**

-  Switch between replies if custom handler is found
-  Add Juniper, Cisco and default device handlers
-  Allow preferred SSH subsystem name in device params
-  Allow iteration over multiple SSH subsystem names.




Acknowledgements
~~~~~~~~~~~~~~~~
-  v0.6.11: @musicinmybrain, @sstancu, @earies
-  v0.6.10: @vnitinv, @omaxx, @einarnn, @musicinmybrain, @tonynii, @sstancu, Martin Volf, @fredgan, @avisom, Viktor Velichkin, @ogenstad, @earies
-  v0.6.9: [Fred Gan](https://github.com/fredgan)
-  v0.6.8: [Fred Gan](https://github.com/fredgan), @vnitinv, @kbijakowski, @iwanb, @badguy99, @liuyong, Andrew Mallory, William Lvory
-  v0.6.7: @vnitinv, @chaitu-tk, @sidhujasminder, @crutcha, @markgoddard, @ganeshrn, @songxl, @doesitblend, @psikala, @xuxiaowei0512, @muffizone
-  v0.6.6: @sstancu, @hemna, @ishayansheikh
-  v0.6.4: @davidhankins, @mzagozen, @knobix, @markafarrell, @psikala, @moepman, @apt-itude, @yuekyang
-  v0.6.3: @rdkls, @Anthony25, @rsmekala, @vnitinv, @siming85
-  v0.6.2: @einarnn, @glennmatthews, @bryan-stripe, @nickylba
-  v0.6.0: `Einar Nilsen-Nygaard`_
-  v0.5.4: Various
-  v0.5.3: `Justin Wilcox`_, `Stacy W. Smith`_, `Mircea Ulinic`_,
   `Ebben Aries`_, `Einar Nilsen-Nygaard`_, `QijunPan`_
-  v0.5.2: `Nitin Kumar`_, `Kristian Larsson`_, `palashgupta`_,
   `Jonathan Provost`_, `Jainpriyal`_, `sharang`_, `pseguel`_,
   `nnakamot`_, `Алексей Пастухов`_, `Christian Giese`_, `Peipei Guo`_,
   `Time Warner Cable Openstack Team`_
-  v0.4.7: `Einar Nilsen-Nygaard`_, `Vaibhav Bajpai`_, Norio Nakamoto
-  v0.4.6: `Nitin Kumar`_, `Carl Moberg`_, `Stavros Kroustouris`_
-  v0.4.5: `Sebastian Wiesinger`_, `Vincent Bernat`_, `Matthew Stone`_,
   `Nitin Kumar`_
-  v0.4.3: `Jeremy Schulman`_, `Ray Solomon`_, `Rick Sherman`_,
   `subhak186`_
-  v0.4.2: `katharh`_, `Francis Luong (Franco)`_, `Vincent Bernat`_,
   `Juergen Brendel`_, `Quentin Loos`_, `Ray Solomon`_, `Sebastian
   Wiesinger`_, `Ebben Aries`_
-  v0.4.1: `Jeremy Schulman`_, `Ebben Aries`_, Juergen Brendel

.. _Nitin Kumar: https://github.com/vnitinv
.. _Kristian Larsson: https://github.com/plajjan
.. _palashgupta: https://github.com/palashgupta
.. _Jonathan Provost: https://github.com/JoProvost
.. _Jainpriyal: https://github.com/Jainpriyal
.. _sharang: https://github.com/sharang
.. _pseguel: https://github.com/pseguel
.. _nnakamot: https://github.com/nnakamot
.. _Алексей Пастухов: https://github.com/p-alik
.. _Christian Giese: https://github.com/GIC-de
.. _Peipei Guo: https://github.com/peipeiguo
.. _Time Warner Cable Openstack Team: https://github.com/twc-openstack
.. _Einar Nilsen-Nygaard: https://github.com/einarnn
.. _Vaibhav Bajpai: https://github.com/vbajpai
.. _Carl Moberg: https://github.com/cmoberg
.. _Stavros Kroustouris: https://github.com/kroustou
.. _Sebastian Wiesinger: https://github.com/sebastianw
.. _Vincent Bernat: https://github.com/vincentbernat
.. _Matthew Stone: https://github.com/bigmstone
.. _Jeremy Schulman: https://github.com/jeremyschulman
.. _Ray Solomon: https://github.com/rsolomo
.. _Rick Sherman: https://github.com/shermdog
.. _subhak186: https://github.com/subhak186
.. _katharh: https://github.com/katharh
.. _Francis Luong (Franco): https://github.com/francisluong
.. _Juergen Brendel: https://github.com/juergenbrendel
.. _Quentin Loos: https://github.com/Kent1
.. _Ebben Aries: https://github.com/earies
.. _Justin Wilcox: https://github.com/jwwilcox
.. _Stacy W. Smith: https://github.com/stacywsmith
.. _Mircea Ulinic: https://github.com/mirceaulinic
.. _QijunPan: https://github.com/QijunPan

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ncclient/ncclient",
    "name": "ncclient",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
    "maintainer_email": "",
    "keywords": "NETCONF,NETCONF Python client,Juniper Optimization,Cisco NXOS Optimization",
    "author": "Shikhar Bhushan, Leonidas Poulopoulos, Ebben Aries, Einar Nilsen-Nygaard",
    "author_email": "shikhar@schmizz.net, lpoulopoulos@verisign.com, exa@dscp.org, einarnn@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/6d/db/887f9002c3e6c8b838ec7027f9d8ac36337f44bcd146c922e3deee60e55e/ncclient-0.6.15.tar.gz",
    "platform": "Posix; OS X; Windows",
    "description": "ncclient: Python library for NETCONF clients\n--------------------------------------------\n\nncclient is a Python library that facilitates client-side scripting and\napplication development around the NETCONF protocol. ``ncclient`` was\ndeveloped by `Shikar Bhushan <http://schmizz.net>`. It is now\nmaintained by `Leonidas Poulopoulos (@leopoul) <http://ncclient.org>`\nand `Einar Nilsen-Nygaard (@einarnn)`.\n\nDocs:\n`http://ncclient.readthedocs.org <http://ncclient.readthedocs.org>`_\n\nGithub:\n`https://github.com/ncclient/ncclient <https://github.com/ncclient/ncclient>`_\n\nRequirements:\n^^^^^^^^^^^^^\n\n-  Python 2.7 or Python 3.4+\n-  setuptools 0.6+\n-  Paramiko 1.7+\n-  lxml 3.3.0+\n-  libxml2\n-  libxslt\n\nIf you are on Debian/Ubuntu install the following libs (via aptitude or\napt-get):\n\n-  libxml2-dev\n-  libxslt1-dev\n\nInstallation:\n^^^^^^^^^^^^^\n\n::\n\n    [ncclient] $ sudo python setup.py install\n\nor via pip:\n\n::\n\n    pip install ncclient\n\nExamples:\n^^^^^^^^^\n\n::\n\n    [ncclient] $ python examples/juniper/*.py\n\nUsage\n~~~~~\n\nGet device running config\n'''''''''''''''''''''''''\n\nUse either an interactive Python console (ipython) or integrate the\nfollowing in your code:\n\n::\n\n    from ncclient import manager\n\n    with manager.connect(host=host, port=830, username=user, hostkey_verify=False) as m:\n        c = m.get_config(source='running').data_xml\n        with open(\"%s.xml\" % host, 'w') as f:\n            f.write(c)\n\nAs of 0.4.1 ncclient integrates Juniper's and Cisco's forks, lots of new concepts\nhave been introduced that ease management of Juniper and Cisco devices respectively.\nThe biggest change is the introduction of device handlers in connection paramms.\nFor example to invoke Juniper's functions annd params one has to re-write the above with \n**device\\_params={'name':'junos'}**:\n\n::\n\n    from ncclient import manager\n\n    with manager.connect(host=host, port=830, username=user, hostkey_verify=False, device_params={'name':'junos'}) as m:\n        c = m.get_config(source='running').data_xml\n        with open(\"%s.xml\" % host, 'w') as f:\n            f.write(c)\n\nDevice handlers are easy to implement and prove to be futureproof.\n\nSupported device handlers\n'''''''''''''''''''''''''\n\n* Juniper: `device_params={'name':'junos'}`\n* Cisco:\n    - CSR: `device_params={'name':'csr'}`\n    - Nexus: `device_params={'name':'nexus'}`\n    - IOS XR: `device_params={'name':'iosxr'}`\n    - IOS XE: `device_params={'name':'iosxe'}`\n* Huawei:\n    - `device_params={'name':'huawei'}`\n    - `device_params={'name':'huaweiyang'}`\n* Nokia SR OS: `device_params={'name':'sros'}`\n* H3C: `device_params={'name':'h3c'}`\n* HP Comware: `device_params={'name':'hpcomware'}`\n* Server or anything not in above: `device_params={'name':'default'}`\n\nChanges \\| brief\n~~~~~~~~~~~~~~~~\n\n**v0.6.12**\n\n* Fix for accidental breakage of Juniper ExecuteRPC support\n\n**v0.6.11**\n\n* Support for custom client capabilities\n* Restructuring/refactoring of example scripts\n* Minor bugfixes\n* Minor unit test refactoring\n\n**v0.6.10**\n\n* NETCONF call-home (RFC8071) support\n* YANG 1.1 `action` support\n* Nokia SR OS device handler support\n* Removal of old ALU base-r13 API documentation\n* Increased test coverage\n* Variety of bugfixes and minor enhancements from a variety of contributors since 0.6.9 (see commit history)\n* Thanks to all contributors!\n\n**v0.6.9**\n\n* Fix for breaking API change\n\n**v0.6.8**\n\n* Pulled due to accidental breaking API change\n* Variety of small updates and bugfixes, but of note:\n    - Support for namespace prefixes for XPath queries\n    - `edit-config` parameter validation\n    - Support for multiple RPC errors\n    - API to get supported device types\n    - Support for subtree filters with multiple top-level tags\n* Thanks to all contributors!\n\n**v0.6.7**\n\n- Variety of bugfixes from a variety of contributors since 0.6.6 (see commit history)\n\n**v0.6.6**\n\n- Read ssh timeout from config file if not specified in method call\n- Tox support\n- Huge XML tree parser support\n- Adding optional bind address to connect\n\n**v0.6.5**\n\n- Updated README for 0.6.5 release\n\n**v0.6.4**\n\n- Pin selectors2 to Python versions <= 3.4\n- Fix config examples to actually use the nc namespace\n- Fix: correctly set port for paramiko when using ssh_config file\n- Test: add test to check ProxyCommand uses correct port\n- Update commits for py3\n- Enhance Alcatel-Lucent-support\n- Juniper RPC: allow specifying format in CompareConfiguration\n- Parsing of NETCONF 1.1 frames no longer decodes each chunk of bytes\n- Fix filter in create_subscription\n- Validate 'with-defaults' mode based on supported modes advertised in capability URI\n\n**v0.6.3**\n\n- Fix homepage link registered with PyPi\n- SSH Host Key checking\n- Updated junos.py to resolve RestrictedUser error\n- Close the channel when closing SSH session\n- Invoke self.parse() to ensure errors, if any, have been detected before check in ok()\n\n**v0.6.2**\n\n- Migration to user selectors instead of select, allowing higher scale operations\n- Improved netconf:base:1.1 parsing\n- Graceful exit on session close\n\n**v0.6.0**\n\n- Fix use of new Python 3.7 keyword, async\n- Re-enable Python 3.7\n\n**v0.5.4**\n\n- Rollup of minor changes since 0.5.3\n- Disablement of Python 3.7 due to async keyword issue\n\n**v0.5.3**\n\n- Add notifications support\n- Add support for ecdsa keys\n- Various bug fixes\n\n**v0.5.2**\n\n- Add support for Python 3\n- Improve Junos ioproc performance\n- Performance improvements\n- Updated test cases\n- Many bug and performance fixes\n\n\n**v0.4.7**\n\n- Add support for netconf 1.1\n\n**v0.4.6**\n\n- Fix multiple RPC error generation\n- Add support for cancel-commit and persist param\n- Add more examples\n\n**v0.4.5**\n\n- Add Huawei device support\n- Add cli command support for hpcomware v7 devices\n- Add H3C support, Support H3C CLI,Action,Get_bulk,Save,Rollback,etc.\n- Add alcatel lucent support\n\n- Rewrite multiple error handling\n- Add coveralls support, with shield in README.md\n- Set severity level to higher when multiple\n- Simplify logging and multi-error reporting\n- Keep stacktrace of errors\n- Check for known hosts on hostkey_verify only\n- Add check for device sending back null error_text\n- Fix RPC.raise_mode\n- Specifying hostkey_verify=False should not load_known_hosts\n- Check the correct field on rpc-error element\n\n**v0.4.3**\n\n- Nexus exec_command operation\n- Allow specifying multiple cmd elements in Cisco Nexus\n- Update rpc for nested rpc-errors\n- Prevent race condition in threading\n- Prevent hanging in session close\n\n**v0.4.2**\n\n- Support for paramiko ProxyCommand via ~/.ssh/config parsing\n- Add Juniper-specific commit operations\n- Add Huawei devices support\n- Tests/Travis support\n- ioproc transport support for Juniper devices\n- Update Cisco CSR device handler\n- Many minor and major fixes\n\n**v0.4.1**\n\n-  Switch between replies if custom handler is found\n-  Add Juniper, Cisco and default device handlers\n-  Allow preferred SSH subsystem name in device params\n-  Allow iteration over multiple SSH subsystem names.\n\n\n\n\nAcknowledgements\n~~~~~~~~~~~~~~~~\n-  v0.6.11: @musicinmybrain, @sstancu, @earies\n-  v0.6.10: @vnitinv, @omaxx, @einarnn, @musicinmybrain, @tonynii, @sstancu, Martin Volf, @fredgan, @avisom, Viktor Velichkin, @ogenstad, @earies\n-  v0.6.9: [Fred Gan](https://github.com/fredgan)\n-  v0.6.8: [Fred Gan](https://github.com/fredgan), @vnitinv, @kbijakowski, @iwanb, @badguy99, @liuyong, Andrew Mallory, William Lvory\n-  v0.6.7: @vnitinv, @chaitu-tk, @sidhujasminder, @crutcha, @markgoddard, @ganeshrn, @songxl, @doesitblend, @psikala, @xuxiaowei0512, @muffizone\n-  v0.6.6: @sstancu, @hemna, @ishayansheikh\n-  v0.6.4: @davidhankins, @mzagozen, @knobix, @markafarrell, @psikala, @moepman, @apt-itude, @yuekyang\n-  v0.6.3: @rdkls, @Anthony25, @rsmekala, @vnitinv, @siming85\n-  v0.6.2: @einarnn, @glennmatthews, @bryan-stripe, @nickylba\n-  v0.6.0: `Einar Nilsen-Nygaard`_\n-  v0.5.4: Various\n-  v0.5.3: `Justin Wilcox`_, `Stacy W. Smith`_, `Mircea Ulinic`_,\n   `Ebben Aries`_, `Einar Nilsen-Nygaard`_, `QijunPan`_\n-  v0.5.2: `Nitin Kumar`_, `Kristian Larsson`_, `palashgupta`_,\n   `Jonathan Provost`_, `Jainpriyal`_, `sharang`_, `pseguel`_,\n   `nnakamot`_, `\u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041f\u0430\u0441\u0442\u0443\u0445\u043e\u0432`_, `Christian Giese`_, `Peipei Guo`_,\n   `Time Warner Cable Openstack Team`_\n-  v0.4.7: `Einar Nilsen-Nygaard`_, `Vaibhav Bajpai`_, Norio Nakamoto\n-  v0.4.6: `Nitin Kumar`_, `Carl Moberg`_, `Stavros Kroustouris`_\n-  v0.4.5: `Sebastian Wiesinger`_, `Vincent Bernat`_, `Matthew Stone`_,\n   `Nitin Kumar`_\n-  v0.4.3: `Jeremy Schulman`_, `Ray Solomon`_, `Rick Sherman`_,\n   `subhak186`_\n-  v0.4.2: `katharh`_, `Francis Luong (Franco)`_, `Vincent Bernat`_,\n   `Juergen Brendel`_, `Quentin Loos`_, `Ray Solomon`_, `Sebastian\n   Wiesinger`_, `Ebben Aries`_\n-  v0.4.1: `Jeremy Schulman`_, `Ebben Aries`_, Juergen Brendel\n\n.. _Nitin Kumar: https://github.com/vnitinv\n.. _Kristian Larsson: https://github.com/plajjan\n.. _palashgupta: https://github.com/palashgupta\n.. _Jonathan Provost: https://github.com/JoProvost\n.. _Jainpriyal: https://github.com/Jainpriyal\n.. _sharang: https://github.com/sharang\n.. _pseguel: https://github.com/pseguel\n.. _nnakamot: https://github.com/nnakamot\n.. _\u0410\u043b\u0435\u043a\u0441\u0435\u0439 \u041f\u0430\u0441\u0442\u0443\u0445\u043e\u0432: https://github.com/p-alik\n.. _Christian Giese: https://github.com/GIC-de\n.. _Peipei Guo: https://github.com/peipeiguo\n.. _Time Warner Cable Openstack Team: https://github.com/twc-openstack\n.. _Einar Nilsen-Nygaard: https://github.com/einarnn\n.. _Vaibhav Bajpai: https://github.com/vbajpai\n.. _Carl Moberg: https://github.com/cmoberg\n.. _Stavros Kroustouris: https://github.com/kroustou\n.. _Sebastian Wiesinger: https://github.com/sebastianw\n.. _Vincent Bernat: https://github.com/vincentbernat\n.. _Matthew Stone: https://github.com/bigmstone\n.. _Jeremy Schulman: https://github.com/jeremyschulman\n.. _Ray Solomon: https://github.com/rsolomo\n.. _Rick Sherman: https://github.com/shermdog\n.. _subhak186: https://github.com/subhak186\n.. _katharh: https://github.com/katharh\n.. _Francis Luong (Franco): https://github.com/francisluong\n.. _Juergen Brendel: https://github.com/juergenbrendel\n.. _Quentin Loos: https://github.com/Kent1\n.. _Ebben Aries: https://github.com/earies\n.. _Justin Wilcox: https://github.com/jwwilcox\n.. _Stacy W. Smith: https://github.com/stacywsmith\n.. _Mircea Ulinic: https://github.com/mirceaulinic\n.. _QijunPan: https://github.com/QijunPan\n",
    "bugtrack_url": null,
    "license": "Apache 2.0",
    "summary": "Python library for NETCONF clients",
    "version": "0.6.15",
    "project_urls": {
        "Homepage": "https://github.com/ncclient/ncclient"
    },
    "split_keywords": [
        "netconf",
        "netconf python client",
        "juniper optimization",
        "cisco nxos optimization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ddb887f9002c3e6c8b838ec7027f9d8ac36337f44bcd146c922e3deee60e55e",
                "md5": "0eb4818f9459fdaa8b4a21e0ff3da589",
                "sha256": "6757cb41bc9160dfe47f22f5de8cf2f1adf22f27463fb50453cc415ab96773d8"
            },
            "downloads": -1,
            "filename": "ncclient-0.6.15.tar.gz",
            "has_sig": false,
            "md5_digest": "0eb4818f9459fdaa8b4a21e0ff3da589",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
            "size": 634885,
            "upload_time": "2023-10-17T21:36:51",
            "upload_time_iso_8601": "2023-10-17T21:36:51.563810Z",
            "url": "https://files.pythonhosted.org/packages/6d/db/887f9002c3e6c8b838ec7027f9d8ac36337f44bcd146c922e3deee60e55e/ncclient-0.6.15.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-17 21:36:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ncclient",
    "github_project": "ncclient",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "ncclient"
}
        
Elapsed time: 0.13164s