Skip to main content

Python binding for Asterisk AJAM interface

Project description

Pyajam allows to interact with an asterisk server using the AJAM interface, in a pythonic way. Example:

>>> from pyajam import Pyajam
>>> ajam = Pyajam(server='192.168.0.10', username='mspencer', password='*rocks!')
>>> if not ajam.login():
>>>             print "Invalid login"
>>>             sys.exit(1)
>>> # display list of peers (SIP and IAX2)
>>> print ajam.peers())
>>> # display peer 101 attributes
>>> peer  = ajam.sippeer('101'))
>>> # screenprint events
>>> def ajam_event_listener(data):
>>>             print data
>>> ajam.waitevent(async=False, callback=ajam_event_listener)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyAjam-0.2.tar.gz (20.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page