- 授权协议: GPL
- 开发语言: Python
- 操作系统: Windows
- 软件首页: http://msnp.sourceforge.net/
- 软件文档: http://msnp.sourceforge.net/tutorial.html
软件介绍
msnp.py 是一个实现了 MSN 消息协议的 Python 模块,提供面向对象的 API。
示例代码:
import msnp
import time
msn = msnp.Session()
msn.login('trinity@hotmail.com', 'Z10N0101')
while True:
msn.process()
time.sleep(1)
