Metadata-Version: 2.0
Name: panoramisk
Version: 1.0
Summary: asyncio based library to play with asterisk
Home-page: https://github.com/gawel/panoramisk/
Author: Gael Pasgrimaud
Author-email: gael@gawel.org
License: MIT license
Keywords: asyncio,asterisk,voip
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Communications :: Telephony
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: trollius
Requires-Dist: futures
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: coverage (<3.99); extra == 'test'
Requires-Dist: coveralls; extra == 'test'
Requires-Dist: mock; extra == 'test'

================================
Panoramisk. The Asterisk's druid
================================

.. image:: https://travis-ci.org/gawel/panoramisk.png?branch=master&style=flat-square
        :target: https://travis-ci.org/gawel/panoramisk

.. image:: https://img.shields.io/coveralls/gawel/panoramisk/master.svg
        :target: https://coveralls.io/r/gawel/panoramisk?branch=master

.. image:: https://img.shields.io/pypi/v/panoramisk.svg?style=flat-square
        :target: https://pypi.python.org/pypi/panoramisk

.. image:: https://img.shields.io/pypi/dw/panoramisk.svg?style=flat-square
        :target: https://pypi.python.org/pypi/panoramisk

.. image:: https://img.shields.io/github/issues/gawel/panoramisk.svg?style=flat-square
        :target: https://github.com/gawel/panoramisk/issues

.. image:: https://img.shields.io/github/license/gawel/panoramisk.svg?style=flat-square
        :target: https://github.com/gawel/panoramisk/blob/master/LICENSE


`Panoramisk` is a library based on python's `AsyncIO
<http://docs.python.org/dev/library/asyncio.html>`_ to play with `Asterisk
<http://www.asterisk.org/community/documentation>`_'s `manager
<https://wiki.asterisk.org/wiki/display/AST/The+Asterisk+Manager+TCP+IP+API>`_.

It uses the TCP manager server to listen to events and send actions.

For basic usage, you have some examples in `examples/
<https://github.com/gawel/panoramisk/tree/master/examples>`_ folder.

You can find some help on IRC: irc://irc.freenode.net/panoramisk (`www
<https://kiwiirc.com/client/irc.freenode.net/?nick=panoramisk|?&theme=basic#panoramisk>`_)


Running the Tests
-----------------

Running your test with::

    $ python setup.py test
    $ py.test tests/ docs/


Source code
-----------

Find us on Github at https://github.com/gawel/panoramisk/


Documentation
-------------

Check out the documentation on Read the Docs: https://panoramisk.readthedocs.org/


Installation
------------

Install, upgrade and uninstall panoramisk with these commands::

    $ pip install panoramisk
    $ pip install --upgrade panoramisk
    $ pip uninstall panoramisk


