-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPythonBot.py
200 lines (191 loc) · 9.43 KB
/
PythonBot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
# -*- coding: utf-8 -*-
__author__ = 'Marcos Vinícius Rodrigues - https://github.com/mvrpl'
__version__ = 2.0
__doc__ = '''Bot de telegram sobre python com quiz game, posts de facebook/blogs, projetos kickstarter e projetos github.'''
import string
import requests
import json
from time import sleep
import pickle
import os
import random
import tokens
import urllib2
from xml.dom import minidom
def FacebookPost():
'''
Envia um post aleatorio das paginas que estao na variavel pages.
Necessario de um token (https://developers.facebook.com/tools/explorer/).
'''
pages = ['pythonbrasil', '1658435974378579', 'minutopython']
url = "https://graph.facebook.com/%s/posts?limit=25&access_token=%s" % (random.choice(pages), tokens.graph_api_token)
json_data = json.loads(requests.get(url).content)
random_post = random.randint(0, len(json_data['data']))
if 'message' in json_data['data'][random_post]:
content = json_data['data'][random_post]['message']
message_id = json_data['data'][random_post]['id']
org_id = message_id.split('_')[0]
status_id = message_id.split('_')[1]
post_link = 'https://www.facebook.com/%s/posts/%s' % (org_id, status_id)
return '%s\n%s' % (content,post_link)
def KickStarter():
'''
Envia um projeto aleatorio que usa python.
'''
url = "https://www.kickstarter.com/projects/search.json?search=&term=python"
json_data = json.loads(requests.get(url).content)
random_post = random.randint(0, len(json_data['projects'])-1)
project_name = json_data['projects'][random_post]['name']
project_blurb = json_data['projects'][random_post]['blurb']
project_creator = json_data['projects'][random_post]['creator']['name']
project_category = json_data['projects'][random_post]['category']['name']
project_url = json_data['projects'][random_post]['urls']['web']['project']
return u'Título: %s\nDescrição: %s\nPor: %s\nCategoria: %s\nLink: %s' % (project_name, project_blurb, project_creator, project_category, project_url)
def Rand_Posts():
'''
Envia um post aleatorio dos blogs que estao na variavel "blogs_feeds".
'''
blogs_feeds = ['http://pythonclub.com.br/feeds/all.atom.xml']
random_blog = random.choice(blogs_feeds)
posts_source = urllib2.urlopen(random_blog)
results = posts_source.read()
doc = minidom.parseString(results)
if random_blog == blogs_feeds[0]:
posts = doc.getElementsByTagName('entry')
random_post = random.randint(0, len(posts))
try:
title = posts[random_post].getElementsByTagName('title')[0].firstChild.nodeValue
link = posts[random_post].getElementsByTagName('link')[0].getAttribute('href')
return title+'\n'+link
except IndexError:
Rand_Posts()
elif random_blog == blogs_feeds[1]:
posts = doc.getElementsByTagName('item')
random_post = random.randint(0, len(posts))
try:
title = posts[random_post].getElementsByTagName('title')[0].firstChild.nodeValue
link = posts[random_post].getElementsByTagName('link')[0].firstChild.nodeValue
if title.lower().find('python') != -1:
return title+'\n'+link
else:
Rand_Posts()
except IndexError:
Rand_Posts()
def quiz(answer, chat_id, name_user):
'''
Jogo de perguntas e respostas sobre python, necessario existir o arquivo questions.json com o layout:
[
{
"question": "Quem inventou a linguagem de programa\u00e7\u00e3o Python ?",
"correct_option": 3,
"options": [
"Rasmus Lerdorf",
"Yukihiro Matsumoto",
"Brendan Eich",
"Guido van Rossum"
]
}, etc
]
'''
if os.path.isfile('question_%s.txt' % (chat_id)) == True:
file = open('question_%s.txt' % (chat_id), 'r')
id_question = pickle.load(file)
file.close()
else:
id_question = 0
questions_json = json.load(open('questions.json', 'r'))
question_info = questions_json[id_question]
optionLetters = string.ascii_uppercase[:len(question_info['options'])]
options_output = '\n'.join('/respQuiz%s: %s' % (letter, answer) for letter, answer in zip(optionLetters.upper(), question_info['options']))
if len(answer) > 0:
if answer == optionLetters[question_info['correct_option']]:
file = open('question_%s.txt' % (chat_id), 'w')
pickle.dump(random.randint(0, len(questions_json)-1), file)
file.close()
return u'Acertou!, %s\n%s\nResposta correta: %s\n/enviaQuiz para próxima questão.' % (name_user, question_info['question'], question_info['options'][question_info['correct_option']])
elif answer not in optionLetters:
return u'%s, Opção inválida!' % (name_user)
else:
return u'Errou %s' % (name_user)
else:
return u'%s\n%s' % (question_info['question'], options_output)
if os.path.isfile('last_update.txt') == True:
file = open('last_update.txt', 'r')
last_update = pickle.load(file)
else:
last_update = 0
url = 'https://api.telegram.org/bot%s/' % tokens.telegram_bot_python
while True:
try:
get_updates = json.loads(requests.get(url + 'getUpdates?offset='+str(last_update)).content)
except:
continue
for update in get_updates['result']:
if last_update < update['update_id']:
last_update = update['update_id']
file = open('last_update.txt', 'w')
pickle.dump(last_update, file)
file.close()
try:
print(update['message']['text'])
except:
continue
try:
if u'/start' in update['message']['text']:
help_bot = u'Olá\nComandos disponíveis:\n/enviaKickstarter: envia um projeto de python aleatoriamente.\n/enviaQuiz: envia uma questão sobre Python aleatória.\n/enviaFace: Envia um post aleatório de páginas sobre Python.\n/enviaArtigo: Envia um artigo aletório sobre Python & cia.\n/enviaGithub: Envia um repo de python aleatório.\n/buscarGithub "Texto": Digite um texto para buscar um repo no github sem aspas.\n/enviaStack: Envia um stackoverflow randomico sobre Python.\n/sobrePython: Envia artigo da Wikipedia sobre Python.'
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text=help_bot ))
if u'/enviaStack' in update['message']['text']:
try:
random_stackoverflow = json.loads(requests.get('https://api.stackexchange.com/2.2/search?pagesize=100&order=desc&sort=activity&tagged=python&site=stackoverflow').content)
except requests.ConnectionError:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text='Stack Overflow temporariamente indisponível :(' ))
continue
rand_id = random.randint(0, 99)
send_random = '%s\n%s' % (random_stackoverflow['items'][rand_id]['title'], random_stackoverflow['items'][rand_id]['link'])
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text=send_random ))
if u'/sobrePython' in update['message']['text']:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text='https://pt.wikipedia.org/wiki/Python' ))
if u'/enviaKickstarter' in update['message']['text']:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text=KickStarter() ))
if u'/enviaArtigo' in update['message']['text']:
try:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text=Rand_Posts() ))
except:
pass
if u'/enviaQuiz' in update['message']['text']:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text=quiz('', update['message']['chat']['id'], update['message']['from']['first_name']) ))
if u'/respQuiz' in update['message']['text']:
try:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text=quiz(update['message']['text'].replace('@TelePyBot', '')[-1], update['message']['chat']['id'], update['message']['from']['first_name']) ))
except IndexError:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text='Envie uma opção' ))
continue
if u'/enviaFace' in update['message']['text']:
try:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text=FacebookPost() ))
except:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text='Facebook API temporariamente indisponível :(' ))
continue
if u'/enviaGithub' in update['message']['text']:
git_repos = json.loads(requests.get('https://api.github.com/search/repositories?q=language:python&sort=stars&order=desc').content)
rand_id = random.randint(0, 29)
send_github = '%s\n%s' % (git_repos['items'][rand_id]['description'], git_repos['items'][rand_id]['html_url'])
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text=send_github ))
if u'/buscarGithub' in update['message']['text']:
keyword = update['message']['text'].split(' ', 1)
try:
git_repos_search = json.loads(requests.get('https://api.github.com/search/repositories?q='+keyword[1]+'+language:python&sort=stars&order=desc').content)
except IndexError:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text='Nada Encontrado' ))
continue
rand_id = random.randint(0, len(git_repos_search['items']))
try:
send_github = '%s\n%s' % (git_repos_search['items'][rand_id]['description'], git_repos_search['items'][rand_id]['html_url'])
except IndexError:
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text='Nada Encontrado' ))
continue
requests.get(url + 'sendMessage', params=dict(chat_id=update['message']['chat']['id'], text=send_github ))
except KeyError as e:
print(e)
continue
sleep(3)