Writing a Telegram.org bot in Python
Hi, Telegram.org recently announced the support for writing bots for their platform, by providing details at https://core.telegram.org/bots. I was missing for a long time the ability to get a count on karma like we’ve on IRC servers, so I started with it. My first try is published at github repo in https://github.com/iranzo/stampython. At the moment it just uses the polling interface to check the new messages received on the channels the bot is in, and later processes them and send the relevant replies via messages. ...