vote up 2 vote down star
2

Guys,

I have looked all over the net for a good library to use in sending and receiving sms's using python but all in vain!

Anybody who has ever tried to do this using python?

Are there GSM libraries for python out there?

Help!

Gath

flag

0% accept rate
Need more details... Send and receive SMS on a mobile, or on a computer connected to a Mobile by USB/Bluetooth? – Pev Mar 20 at 12:31

5 Answers

vote up 0 vote down

I provided a detailed answer to a similar question here. I mention a Python interface to an SMS gateway provided by TextMagic.

link|flag
vote up 0 vote down

Also check PyKannel.

There's also a web service for sending and receiving SMS (non-free, of course), but I don't have URL at hand. :(

link|flag
vote up 0 vote down

I have recently written some code for interacting with Huawei 3G USB modems in python.

My initial prototype used pyserial directly, and then my production code used Twisted's Serial support so I can access the modem asynchronously.

I found that by accessing the modem programatically using the serial port I was able to access all the functionality required to send and receive SMS messages using Hayes AT commands and extensions to the AT command set.

This is the one of the referneces I was able to find on the topic, it lists these commands:

AT+CMGL      List Messages
AT+CMGR     Read message
AT+CMGS     Send message
AT+CMGW     Write message to memory

They are complicated commands and take arguments and you have to parse the results yourself.

There are more references on the internet you can google for that reference these 4 commands that will let you work out how your modem works.

link|flag
vote up 1 vote down

Python-binding for Gammu perhaps?

BTW. It's GUI version (Wammu) is written in wxPython.

link|flag
vote up 2 vote down

Have you looked at py-sms?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.