PYTHON PHONE MODULE

Paul Boddie paul at boddie.org.uk
Mon Oct 2 09:56:39 EDT 2006


vedran_dekovic at yahoo.com wrote:
> Can you tell me one simple python phone module and if that module have
> some moudules which need download from internet,then give me urls of that
> modules

I did see that you were trying to get pyphone [1] to work. According to
the description in that program, it seems that the solution you're
looking for involves dialling numbers on your modem from a Python
program. Is this correct? If so, there's a thread [2] about such
matters which mentions PySerial [3] and provides an example, tidied up
and reproduced here:

import serial
modem = serial.Serial(2)
modem.write("ATDT5555555\r\n")

There are other Python-based solutions involving doing things with
different kinds of telephones and telephony: t616hack [4] deals with
messaging on certain mobile telephones, BitPim [5] provides a lot of
features for communicating with various CDMA telephones, Chestnut
Dialer [6] is a PPP dialler.

Anyway, I can't really hope to enumerate all available solutions in a
reasonable amount of time, but I hope this helps at least.

Paul

[1] http://lstep.free.fr/actuel/Code/PyPhone/index.html
[2] http://mail.python.org/pipermail/python-list/2002-June/110862.html
[3] http://pyserial.sourceforge.net/
[4] http://www.python.org/pypi/t616hack
[5] http://www.bitpim.org/
[6] http://chestnut-dialer.sourceforge.net/




More information about the Python-list mailing list