472,146 Members | 1,198 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,146 software developers and data experts.

PYTHON PHONE MODULE

Hello,
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



THANKS!!!!!!!!!!!!!!!!!!!!!!!!!!

Oct 2 '06 #1
2 1859

vedranCan you tell me one simple python phone module ...

What is a "phone module"? Does it manipulate phone numbers, map phone
numbers to locations, place phone calls, handle phone calls?

Skip
Oct 2 '06 #2
ve************@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/pyt...ne/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/

Oct 2 '06 #3

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

2 posts views Thread by JD | last post: by
6 posts views Thread by Ashley Lloyd | last post: by
5 posts views Thread by Carl | last post: by
14 posts views Thread by Philippe C. Martin | last post: by
8 posts views Thread by fscked | last post: by
2 posts views Thread by Johny | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.