Python USSD通过com端口

时间:2010-09-16 14:58:51

标签: python

我是python的新手。无论如何我可以通过+ cusd命令使用python通过手机发送ussd。我可以使用超级终端来做到这一点。我想自动使用python。感谢。

1 个答案:

答案 0 :(得分:2)

是。使用pyserial

>>> import serial
>>> ser = serial.Serial(0)  # open first serial port
>>> print ser.portstr       # check which port was really used
>>> ser.write("hello")      # write a string
>>> ser.close()             # close port