Metadata-Version: 1.2
Name: xapiparser
Version: 0.0.9
Summary: XAPI ssh command parser to convert cli commands to xml for use in the Cisco XAPI REST API
Home-page: https://github.com/jonathanelscpt/xapiparser
Author: Jonathan Els
Author-email: jonathanelscpt@gmail.com
License: MIT
Project-URL: Changelog, https://github.com/jonathanelscpt/xapiparser/blob/master/CHANGELOG.rst
Project-URL: Issue Tracker, https://github.com/jonathanelscpt/xapiparser/issues
Description: ========
        Overview
        ========
        
        
        
        XAPI ssh command parser to convert cli commands to xml for use in the Cisco XAPI REST API
        
        * Free software: MIT license
        
        Installation
        ============
        
        ::
        
            pip install xapiparser
        
        You can also install the in-development version with::
        
            pip install https://github.com/jonathanelscpt/xapiparser/archive/master.zip
        
        
        Documentation
        =============
        
        
        To use the project:
        
        .. code-block:: python
        
            import xapiparser
        
            xapi = 'xConfiguration Conference Encryption Mode'
            xapiparser.parse(xapi)
        
        
        Development
        ===========
        
        To run all the tests run::
        
            tox
        
        Note, to combine the coverage data from all the tox environments run:
        
        .. list-table::
            :widths: 10 90
            :stub-columns: 1
        
            - - Windows
              - ::
        
                    set PYTEST_ADDOPTS=--cov-append
                    tox
        
            - - Other
              - ::
        
                    PYTEST_ADDOPTS=--cov-append tox
        
        
        Changelog
        =========
        
        0.0.9 (2020-09-28)
        ------------------
        
        * added typing support
        * build bug fixes.
        
        0.0.8 (2020-09-26)
        ------------------
        
        * build and deployment automation with travis.
        
        0.0.7 (2020-09-26)
        ------------------
        
        * trivial bug fixes
        
        0.0.6 (2020-09-26)
        ------------------
        
        * fixed basic case defect and added unit testing
        
        0.0.5 (2020-09-26)
        ------------------
        
        * fixed bugs in cli tool
        
        0.0.4 (2020-09-26)
        ------------------
        
        * updated supported, ssh-only and currently supported ssh expressions
        
        0.0.3 (2020-09-25)
        ------------------
        
        * fixed metavar issue with cli tool and added test coverage
        
        0.0.2 (2020-09-25)
        ------------------
        
        * first release on PyPI.
        
Keywords: cisco,xapi,telepresence,telepresence,collaboration endpoint software
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Classifier: Topic :: Text Processing :: Markup :: XML
Classifier: Topic :: Communications :: Telephony
Requires-Python: >=3.6
