Reputation:
How can I send/receive IM Messages using python? I want to send AOL Instant Messenger messages and receive them using python. I basically want to take in input from the chat, process it and then send the processed input back.
Upvotes: 0
Views: 1963
Reputation: 7508
Here is some sample code: http://code.google.com/p/madcow/source/browse/trunk/madcow/protocol/aim.py
Also: http://www.gilesgoatboy.org/python/skippy.html
Generally, lots of examples can be found using a google search for: python aim
Upvotes: 1