This list is closed, nobody may subscribe to it.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(13) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
2006 |
Jan
(6) |
Feb
|
Mar
(5) |
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
(1) |
Dec
|
2007 |
Jan
(3) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
(25) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2012 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(8) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(4) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Matthew A. N. <mni...@di...> - 2005-01-11 16:22:50
|
Dax Reyes wrote: > I have not tried this but might be useful > > http://botanicus.net/dw/py-asterisk.php > > "The Python Asterisk package (codenamed py-Asterisk) is an attempt to > produce high quality, well documented Python bindings for the Asterisk > Manager API. > > The eventual goal of the package is to allow rich specification of the > Asterisk configuration in Python rather than in the quirky, > unstructured, undocumented mess that we call the Asterisk > configuration files. " > Thanks for the heads up, I am attempting to contact him now. Breifly looking over it, his manager interface is better designed than pyst, but he is missing the agi and other stuff. Since he actively maintains his project I am looking to merge with him. -- Matthew A. Nicholson Digium |
From: Matthew A. N. <mni...@di...> - 2005-01-11 15:46:13
|
Dax Reyes wrote: > Hello, > > seems to be a bug. > > try using agi.py and put something like > > #!/usr/bin/env python > > import asterisk.agi > agi = asterisk.agi.AGI() > > mydigit = agi.get_data('demo-congrats',timeout=5000) > > #do no input anything, mydigit now has a value "UNDEFINED" ! > agi.say_digits(mydigit) > sys.exit(0) > > > call function get_data and not input anything. > then call say_digits > will throw an exception because of the UNDEFINED value > > I can't think of a good fix, since if I put an "if" condition in > function get_data something like > > if res == "UNDEFINED": > res = '' > > say_digits will now issue an agi command > say digits "" "" > > which will also throw an exception > > I wouldn't call that a bug. Maybe it should be handled differently, but that is what asterisk returns to us. -- Matthew A. Nicholson Digium |
From: Dax R. <ra...@gm...> - 2005-01-11 15:26:23
|
Hello, seems to be a bug. try using agi.py and put something like #!/usr/bin/env python import asterisk.agi agi = asterisk.agi.AGI() mydigit = agi.get_data('demo-congrats',timeout=5000) #do no input anything, mydigit now has a value "UNDEFINED" ! agi.say_digits(mydigit) sys.exit(0) call function get_data and not input anything. then call say_digits will throw an exception because of the UNDEFINED value I can't think of a good fix, since if I put an "if" condition in function get_data something like if res == "UNDEFINED": res = '' say_digits will now issue an agi command say digits "" "" which will also throw an exception Dax |
From: Dax R. <ra...@gm...> - 2005-01-11 09:49:42
|
I have not tried this but might be useful http://botanicus.net/dw/py-asterisk.php "The Python Asterisk package (codenamed py-Asterisk) is an attempt to produce high quality, well documented Python bindings for the Asterisk Manager API. The eventual goal of the package is to allow rich specification of the Asterisk configuration in Python rather than in the quirky, unstructured, undocumented mess that we call the Asterisk configuration files. " |
From: Dax R. <ra...@gm...> - 2005-01-11 09:34:25
|
Thanks a lot for the script! :) On Mon, 10 Jan 2005 13:59:28 -0600, Matthew A. Nicholson <mni...@di...> wrote: > Dax Reyes wrote: > > hello list, > > > > I am just wondering if anyone has some examples on how to use pyst, > > maybe an example that is similar (if its already possible) to > > agi-test.agi included in asterisk? > > Just need some simple examples just to get me started. > > > > TIA, > > > > Dax > > > > Attached is an example script. Do a pydoc asterisk.agi for more info on specfic > functions. > > -- > Matthew A. Nicholson > Digium > > > |
From: Matthew A. N. <mni...@di...> - 2005-01-11 00:45:00
|
Version RC9 has been released. Changes include and are limited to: Turnning off DEBUG output in manager.py and a minor doc addition. -- Matthew A. Nicholson Digium |
From: Matthew A. N. <mni...@di...> - 2005-01-10 19:59:31
|
Dax Reyes wrote: > hello list, > > I am just wondering if anyone has some examples on how to use pyst, > maybe an example that is similar (if its already possible) to > agi-test.agi included in asterisk? > Just need some simple examples just to get me started. > > TIA, > > Dax > Attached is an example script. Do a pydoc asterisk.agi for more info on specfic functions. -- Matthew A. Nicholson Digium |
From: Dax R. <ra...@gm...> - 2005-01-10 05:55:45
|
hello list, I am just wondering if anyone has some examples on how to use pyst, maybe an example that is similar (if its already possible) to agi-test.agi included in asterisk? Just need some simple examples just to get me started. TIA, Dax |
From: Matthew A. N. <mni...@di...> - 2005-01-06 02:16:22
|
It appears the maintainer of this package is MIA so I added a couple of fixes and what not. You can find my changes in the patches section of the sourceforge page. Sorry for not announcing it here sooner. A summary of the changes follows: * Reconfigured the packge with distutils * Added the debian directory for buildign a debian package * Added some functions to agi.py * Fixed manager.py so it is operational now * Added agitb (derrived from cgitb), to assist in debugging agi's * Tons of bug fixes -- Matthew A. Nicholson Digium |
From: Tracy R R. <tr...@co...> - 2004-08-20 05:43:26
|
Hello all! I am new to python programming but already have a 1000 line project under my belt and it's growing so I'm catching on quickly. I've been using Asterisk for about a year but have not yet delved into AGI programming. But now I need to develop some telephony apps and python is my language of choice now and pyst is listed on voip-info as the way to go for AGI in python. However the sourceforge forums are pretty much empty and sourceforge shows only two other people subscribed to this list. So, does anyone read this? Is anyone developing with pyst? There are no list archives on sourceforge to read to see what's been going on. I am wondering if maybe there is a more popular python module that everyone is using for AGI and I'm just missing it or this is the way to go. --=20 Tracy Reed The attachment is a digital signature. http://copilotconsulting.com More info: http://copilotconsulting.com/sig |