2014-10-07 22:49:54 +04:00
|
|
|
pyst2: A Python Interface to Asterisk
|
2015-03-29 10:31:10 +03:00
|
|
|
=====================================
|
2010-06-18 13:46:51 +04:00
|
|
|
|
2015-03-29 10:43:40 +03:00
|
|
|
.. image:: https://img.shields.io/pypi/v/pyst2.svg
|
|
|
|
:alt: pyst2 Release
|
|
|
|
:target: https://pypi.python.org/pypi/pyst2
|
|
|
|
|
|
|
|
.. image:: https://img.shields.io/pypi/dm/pyst2.svg
|
|
|
|
:alt: pyst2 Downloads
|
|
|
|
:target: https://pypi.python.org/pypi/pyst2
|
|
|
|
|
|
|
|
.. image:: https://img.shields.io/travis/rdegges/pyst2.svg
|
|
|
|
:alt: pyst2 Build
|
|
|
|
:target: https://travis-ci.org/rdegges/pyst2
|
|
|
|
|
|
|
|
.. image:: https://github.com/rdegges/pyst2/raw/master/assets/snake-sketch.jpg
|
|
|
|
:alt: Snake Sketch
|
|
|
|
|
|
|
|
|
|
|
|
Meta
|
|
|
|
----
|
|
|
|
|
|
|
|
- Author: Randall Degges
|
|
|
|
- Email: r@rdegges.com
|
|
|
|
- Site: http://www.rdegges.com
|
|
|
|
- Status: *looking for maintainer*, active
|
|
|
|
|
2015-03-29 10:32:28 +03:00
|
|
|
**NOTE**: This project is in need of an active maintainer. I'm quite busy with
|
|
|
|
other non-asterisk related projects in my personal time, so if you're a good
|
|
|
|
Python programmer, and working with this library and Asterisk on a daily basis
|
|
|
|
-- please consider maintaining the project! Contact me for more information:
|
|
|
|
r@rdegges.com
|
|
|
|
|
2015-03-29 10:43:40 +03:00
|
|
|
In the meantime, I'm happy to accept pull requests and cut releases as needed.
|
|
|
|
If you want to contribute to the project, please do!
|
|
|
|
|
|
|
|
|
|
|
|
Purpose
|
|
|
|
-------
|
|
|
|
|
|
|
|
pyst2 consists of a set of interfaces and libraries to allow programming of
|
2010-06-18 13:46:51 +04:00
|
|
|
Asterisk from python. The library currently supports AGI, AMI, and the parsing
|
|
|
|
of Asterisk configuration files. The library also includes debugging facilities
|
|
|
|
for AGI.
|
|
|
|
|
2014-10-07 22:49:54 +04:00
|
|
|
This project has been forked from pyst (http://sf.net/projects/pyst/) because
|
|
|
|
it was impossible for me to contact the project maintainer (after several
|
|
|
|
attempts), and I'd like to bring the project up-to-date, fix bugs, and make
|
|
|
|
it more usable overall.
|
2010-06-30 18:46:29 +04:00
|
|
|
|
2014-10-07 22:49:54 +04:00
|
|
|
My immediate plans include adding full documentation, re-writing some
|
|
|
|
of the core routines, adding a test suite, and accepting pull requests.
|
|
|
|
|
|
|
|
If you are one of the current maintainers, and would like to take over the
|
2015-03-29 10:32:28 +03:00
|
|
|
fork, please contact me: r@rdegges.com, so we can get that setup!
|
2014-10-07 22:49:54 +04:00
|
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
2015-03-29 10:43:40 +03:00
|
|
|
To install ``pyst2``, simply run:
|
|
|
|
|
|
|
|
.. code-block:: console
|
2014-10-07 22:49:54 +04:00
|
|
|
|
2015-03-29 10:34:43 +03:00
|
|
|
$ pip install pyst2
|
2010-06-30 18:46:29 +04:00
|
|
|
|
2015-03-29 10:43:40 +03:00
|
|
|
This will install the latest version of the library automatically.
|
|
|
|
|
2010-06-18 13:46:51 +04:00
|
|
|
|
2014-10-07 22:49:54 +04:00
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
|
2010-06-18 13:46:51 +04:00
|
|
|
Documentation is currently only in python docstrings, you can use
|
|
|
|
pythons built-in help facility::
|
|
|
|
|
|
|
|
import asterisk
|
|
|
|
help (asterisk)
|
|
|
|
import asterisk.agi
|
|
|
|
help (asterisk.agi)
|
|
|
|
import asterisk.manager
|
|
|
|
help (asterisk.manager)
|
|
|
|
import asterisk.config
|
|
|
|
help (asterisk.config)
|
|
|
|
|
2010-06-23 12:30:44 +04:00
|
|
|
Some notes on platforms: We now specify "platforms = 'Any'" in
|
|
|
|
``setup.py``. This means, the manager part of the package will probably
|
|
|
|
run on any platform. The agi scripts on the other hand are called
|
|
|
|
directly on the host where Asterisk is running. Since Asterisk doesn't
|
|
|
|
run on windows platforms (and probably never will) the agi part of the
|
|
|
|
package can only be run on Asterisk platforms.
|
|
|
|
|
2015-03-29 10:34:43 +03:00
|
|
|
|
2010-06-18 14:15:08 +04:00
|
|
|
Credits
|
|
|
|
-------
|
|
|
|
|
2011-05-31 23:25:55 +04:00
|
|
|
Thanks to Karl Putland for writing the original package.
|
2015-03-29 10:34:43 +03:00
|
|
|
|
2010-06-18 14:15:08 +04:00
|
|
|
Thanks to Matthew Nicholson for maintaining the package for some years
|
|
|
|
and for handing over maintenance when he was no longer interested.
|
2015-03-29 10:34:43 +03:00
|
|
|
|
2014-10-07 22:49:54 +04:00
|
|
|
Thanks to Randall Degges for maintaining this for and accepting
|
|
|
|
pull requests.
|
2010-06-18 13:46:51 +04:00
|
|
|
|
2015-03-29 10:34:43 +03:00
|
|
|
|
2010-06-18 13:46:51 +04:00
|
|
|
Things to do for pyst
|
|
|
|
---------------------
|
|
|
|
|
2010-06-18 14:15:08 +04:00
|
|
|
This is the original changelog merged into the readme file. I'm not so
|
|
|
|
sure I really want to change all these things (in particular the
|
|
|
|
threaded implementation looks good to me). I will maintain a section
|
2014-10-07 22:49:54 +04:00
|
|
|
summarizing the changes in this README. Detailed changes will be
|
|
|
|
available in the version control tool (currently git).
|
2010-06-18 14:15:08 +04:00
|
|
|
|
2010-06-18 13:46:51 +04:00
|
|
|
* ChangeLog:
|
|
|
|
The ChangeLog needs to be updated from the monotone logs.
|
|
|
|
|
|
|
|
* Documentation:
|
|
|
|
All of pyst's inline documentation needs to be updated.
|
|
|
|
|
|
|
|
* manager.py:
|
2010-06-30 18:46:29 +04:00
|
|
|
This should be converted to be single threaded. Also there is a race
|
2010-06-18 13:46:51 +04:00
|
|
|
condition when a user calls manager.logoff() followed by
|
|
|
|
manager.close(). The close() function may still call logoff again if
|
|
|
|
the socket thread has not yet cleared the _connected flag.
|
|
|
|
|
|
|
|
A class should be made for each manager action rather than having a
|
|
|
|
function in a manager class. The manager class should be adapted to
|
|
|
|
have a send method that know the general format of the classes.
|
|
|
|
|
2010-06-18 16:59:45 +04:00
|
|
|
Matthew Nicholson writes on the mailinglist (note that I'm not sure I'll do
|
|
|
|
this, I'm currently satisfied with the threaded implementation):
|
|
|
|
|
2014-10-07 22:49:54 +04:00
|
|
|
For pyst 0.3 I am planning to clean up the manager.py. There are
|
|
|
|
several know issues with the code. No one has actually reported these
|
|
|
|
as problems, but I have personally had trouble with these. Currently
|
|
|
|
manager.py runs in several threads, the main program thread, a thread to
|
|
|
|
read from the network, and an event distribution thread. This causes
|
|
|
|
problems with non thread safe code such as the MySQLdb libraries. This
|
|
|
|
design also causes problems when an event handler throws an exception
|
|
|
|
that causes the event processing thread to terminate.
|
|
|
|
|
|
|
|
The second problem is with the way actions are sent. Each action has a
|
|
|
|
specific function associated with it in the manager object that takes
|
|
|
|
all possible arguments that may ever be passed to that action. This
|
|
|
|
makes the api somewhat rigid and the Manager object cluttered.
|
|
|
|
|
|
|
|
To solve these problems I am basically going to copy the design of my
|
|
|
|
Astxx manager library (written in c++) and make it more python like.
|
|
|
|
Each action will be a different object with certain methods to handle
|
|
|
|
various tasks, with one function in the actual Manager class to send the
|
|
|
|
action. This will make the Manager class much smaller and much more
|
|
|
|
flexible. The current code will be consolidated into a single threaded
|
|
|
|
design with hooks to have the library process events and such. These
|
|
|
|
hooks will be called from the host application's main loop.
|