Quote:
Originally Posted by Mr.mick-duck
hi guys ,I am using huawei e220 wireless modem under mandriva and it's working very nice ,but how can I read and send my sms messages?
|
I'm sorry for this shameless plug

You can use PyHumod to send SMS from Python:
Code:
>>> import humod
>>> m=humod.Modem()
>>> m.show_model()
'E270'
>>> m.enter_text_mode()
>>> m.send_text('+353?????????', 'hello world') # to send text.
52
>>> m.connect() # to connect
>>> m.disconnect() # to disconnect
The code is available at:
http://code.google.com/p/pyhumod/