This file is indexed.

/usr/lib/python2.7/dist-packages/ncclient-0.4.7.egg-info/PKG-INFO is in python-ncclient 0.4.7-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
Metadata-Version: 1.1
Name: ncclient
Version: 0.4.7
Summary: Python library for NETCONF clients
Home-page: http://ncclient.org
Author: Shikhar Bhushan, Leonidas Poulopoulos, Ebben Aries
Author-email: shikhar@schmizz.net, lpoulopoulos@verisign.com, earies@juniper.net
License: Apache License 2.0
Description: 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/ncclient>`_
        
        Docs:
        `http://ncclient.readthedocs.org <http://ncclient.readthedocs.org>`_
        
        Requirements:
        ^^^^^^^^^^^^^
        
        -  Python 2.6 <= version < 3.0
        -  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'}
        * Cisco Nexus: device_params={'name':'nexus'}
        * Huawei: device_params={'name':'huawei'}
        * Alcatel Lucent: device_params={'name':'alu'}
        * H3C: device_params={'name':'h3c'}
        * HP Comware: device_params={'name':'hpcomware'}
        
        Changes \| brief
        ~~~~~~~~~~~~~~~~
        
        **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.4.7: Thanks to all contribs and bug hunters; `Einar Nilsen-Nygaard <https://github.com/einarnn>`_, `Vaibhav Bajpai <https://github.com/vbajpai>`_, Norio Nakamoto .
        - v0.4.6: Thanks to all contribs and bug hunters; `Nitin Kumar <https://github.com/vnitinv>`_, `Carl Moberg <https://github.com/cmoberg>`_, `Stavros Kroustouris <https://github.com/kroustou>`_ .
        - v0.4.5: Thanks to all contribs and bug hunters; `Sebastian Wiesinger <https://github.com/sebastianw>`_, `Vincent Bernat <https://github.com/vincentbernat>`_, `Matthew Stone <https://github.com/bigmstone>`_, `Nitin Kumar <https://github.com/vnitinv>`_.
        - v0.4.3: Thanks to all contributors and bug hunters; `Jeremy Schulman <https://github.com/jeremyschulman>`_, `Ray Solomon <https://github.com/rsolomo>`_, `Rick Sherman <https://github.com/shermdog>`_, `subhak186 <https://github.com/subhak186>`_.
        - v0.4.2: Thanks to all contributors; `katharh <https://github.com/katharh>`_, `Francis Luong (Franco) <https://github.com/francisluong>`_, `Vincent Bernat <https://github.com/vincentbernat>`_, `Juergen Brendel <https://github.com/juergenbrendel>`_, `Quentin Loos <https://github.com/Kent1>`_, `Ray Solomon <https://github.com/rsolomo>`_, `Sebastian Wiesinger <https://github.com/sebastianw>`_, `Ebben Aries <https://github.com/earies>`_ .
        - v0.4.1: Many thanks, primarily to `Jeremy Schulman <https://github.com/jeremyschulman>`_ (Juniper) for providing his precious feedback, to `Eben Aries <https://github.com/earies>`_ (Juniper) for his contribution, to Juergen Brendel (Cisco) for the Cisco fork and to all contributors from Cisco and Juniper.
        
        
Keywords: NETCONF,NETCONF Python client,Juniper Optimization,Cisco NXOS Optimization
Platform: Posix; OS X; Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: System :: Networking
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules