Metadata-Version: 2.1
Name: xapiparser
Version: 0.0.2
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
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
Requires-Dist: lxml

========
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.0 (2020-09-25)
------------------

* First release on PyPI.


