2015-07-08 05:59:43 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
2015-08-11 21:58:17 +02:00
|
|
|
#
|
|
|
|
# Robô Ed Telegram Bot
|
|
|
|
# Copyright (C) 2015 Leandro Toledo de Souza <leandrotoeldodesouza@gmail.com>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2015-08-10 18:57:31 +02:00
|
|
|
|
2015-07-08 05:59:43 +02:00
|
|
|
|
|
|
|
__author__ = 'leandrotoledodesouza@gmail.com'
|
|
|
|
|
2015-07-30 08:04:59 +02:00
|
|
|
import logging
|
2015-07-08 05:59:43 +02:00
|
|
|
import telegram
|
2015-07-14 09:31:20 +02:00
|
|
|
import urllib
|
2015-07-08 05:59:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2015-07-30 08:04:59 +02:00
|
|
|
logging.basicConfig(
|
|
|
|
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
2015-07-14 09:31:20 +02:00
|
|
|
bot = telegram.Bot('TOKEN') # Telegram Bot Authorization Token
|
2015-07-08 05:59:43 +02:00
|
|
|
|
|
|
|
LAST_UPDATE_ID = bot.getUpdates()[-1].update_id # Get lastest update
|
|
|
|
|
|
|
|
while True:
|
2015-08-24 11:46:33 +02:00
|
|
|
for update in bot.getUpdates(offset=LAST_UPDATE_ID, timeout=10):
|
2015-07-08 05:59:43 +02:00
|
|
|
text = update.message.text
|
|
|
|
chat_id = update.message.chat.id
|
|
|
|
update_id = update.update_id
|
|
|
|
|
2015-08-20 19:58:57 +02:00
|
|
|
if text:
|
|
|
|
roboed = ed(text) # Ask something to Robô Ed
|
|
|
|
bot.sendMessage(chat_id=chat_id, text=roboed)
|
|
|
|
LAST_UPDATE_ID = update_id + 1
|
2015-07-08 05:59:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
def ed(text):
|
|
|
|
url = 'http://www.ed.conpet.gov.br/mod_perl/bot_gateway.cgi?server=0.0.0.0%3A8085&charset_post=utf-8&charset=utf-8&pure=1&js=0&tst=1&msg=' + text
|
2015-07-14 09:31:20 +02:00
|
|
|
data = urllib.urlopen(url).read()
|
2015-07-08 05:59:43 +02:00
|
|
|
|
|
|
|
return data.strip()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|