2010-06-17 20:16:28 +04:00
|
|
|
""" pyst - A set of interfaces and libraries to allow programming of asterisk from python.
|
|
|
|
|
|
|
|
The pyst project includes several python modules to assist in programming
|
|
|
|
asterisk with python:
|
|
|
|
|
|
|
|
agi - python wrapper for agi
|
|
|
|
agitb - a module to assist in agi debugging, like cgitb
|
|
|
|
config - a module for parsing asterisk config files
|
|
|
|
manager - a module for interacting with the asterisk manager interface
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
__all__ = ['agi', 'agitb', 'config', 'manager']
|
2015-11-15 10:01:42 +03:00
|
|
|
__version__ = '0.4.7'
|