-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter_api.py
321 lines (262 loc) · 10.2 KB
/
twitter_api.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
from datetime import date
import Levenshtein
import pandas as pd
import tweepy
import json
import csv
import sys
import os
class TwitterClass:
"""
Classe API do Twitter
"""
def __init__(self):
# flag print tweet
self.print_tweet = 0
# dicionário de mapeamento de emojis
self.dict_map_emoji = {'grafico':'\U0001F4CA',
'pesca':'\U0001F3A3',
'peixe':'\U0001F41F',
'oceano':'\U0001F305',
'onda':'\U0001F30A',
'robo':'\U0001F916',
'surf':'\U0001F3C4',
'sol':'\U0001F324',
'sol_face':'\U0001F31E',
'nuvem':'\U0001F325',
'nuvem_sol':'\U0001F326',
'chuva':'\U0001F327',
'chuva_sol':'\U0001F326',
'chuva_relampago':'\U000126C8',
'relampago':'\U00011F329',
'satelite':'\U0001F6F0',
'oculos_sol':"\U0001F60E",
'sombra':'\U0001F3D6',
'vento':'\U0001F32A',
'dedo_baixo':'\U0001F447',
'tres_pontos':'\U0001F4AC',
'barco_1':'\U000126F4',
'barco_2':'\U0001F6F3',
'barco_3':'\U0001F6A2',
'normal': '\U0001F600',
'sono': '\U0001F634',
'bravo': '\U0001F92C',
'covid': '\U0001F637'
}
# path atual
self.current_path = sys.path[0]
# path json twitter
path_infos_json = os.path.join(self.current_path, "credenciais_twitter.json")
path_json_flag_publicacao = os.path.join(self.current_path, "flag_publicacao.json")
path_palavras_banidas = os.path.join(self.current_path, "lista_palavras_banidas.txt")
self.path_twitter_bd = os.path.join(self.current_path, "tweets_bd.csv")
# leitura do arquivo json com as credenciais
f = open(path_infos_json, "r")
infos_login = json.load(f)
CONSUMER_KEY = infos_login['CONSUMER_KEY']
CONSUMER_SECRET = infos_login['CONSUMER_SECRET']
ACCESS_TOKEN = infos_login['ACCESS_TOKEN']
ACCESS_TOKEN_SECRET = infos_login['ACCESS_TOKEN_SECRET']
f.close()
# leitura do arquivo json com os parâmetros
f = open(path_json_flag_publicacao, "r")
infos = json.load(f)
self.flag_publicacao = int(infos["flag_publicacao"])
f.close()
# cria lista de palavras banidas, caso não exista ainda
if not os.path.exists(path_palavras_banidas):
file = open(path_palavras_banidas, 'w+')
file.close()
# leitura das palavras banidas
f = open(path_palavras_banidas, "r")
self.lista_palavras_banidas = f.read().split('\n')
f.close()
# se não existe arquivo de bd, cria
if not os.path.exists(self.path_twitter_bd):
df = pd.DataFrame(columns=['tweet', 'modulo', 'intent', 'lista_atributos', 'data'])
df.to_csv(self.path_twitter_bd, sep=';', index=False)
# Autentica no Twitter
try:
# login API
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_TOKEN, ACCESS_TOKEN_SECRET)
# Twitter API
api = tweepy.API(auth)
# Verifica credenciais
api.verify_credentials()
self.api = api
# Erro de autenticação
except Exception as e:
print("Erro de autenticação!")
print (e)
sys.exit(0)
# limite de caracteres
self.limite_caracteres = 2_000
# distancia minima entre tweets
self.distancia_minima_tweets = 0.005
# limite de tweets no bd
self.limite_tweets = 1_000_000
# inicio do post
self.inicio_post = f"{self.dict_map_emoji['robo']} "
# fim do post
self.fim_post = f"\n\n\n#AmazôniaAzul {self.dict_map_emoji['oceano']}"\
+f"\n#redebotsdobem {self.dict_map_emoji['satelite']}"
def valida_tweet(self, tweet):
'''
retorna flag indicando se o tweet é válido para ser publicados
'''
return self.verifica_tweet_pode_ser_publicado(tweet) and self.valida_tamanho_tweet(tweet)
def get_meses(self):
'''
retorna meses
'''
return {1: 'janeiro',
2: 'fevereiro',
3: 'março',
4: 'abril',
5: 'maio',
6: 'junho',
7: 'julho',
8: 'agosto',
9: 'setembro',
10: 'outubro',
11: 'novembro',
12: 'dezembro'
}
def calcula_distancia_strings(self, string1, string2):
'''
Retorna distância entre strings
'''
return (Levenshtein.distance(string1, string2)/max(len(string1), len(string2)))
def valida_tamanho_tweet(self, tweet):
'''
valida tamanho do tweet
retorna True caso menor e False caso maior que o limite de caracteres
'''
flag = (len(tweet) >= 10 and len(tweet) <= self.limite_caracteres)
return flag
def get_inicio_post(self):
'''
retorna fim do post
'''
return self.inicio_post
def get_fim_post(self):
'''
retorna fim do post
'''
return self.fim_post
def get_status_twitter(self):
'''
Status do Twitter
'''
return self.flag_publicacao
def substitui_emojis(self, texto):
'''
substitui emoji
'''
lista_emojis = list(self.dict_map_emoji.keys())
for emoji in lista_emojis:
texto = texto.replace(f"[{emoji}]", self.dict_map_emoji[emoji])
texto = texto.replace(f"[emoji_{emoji}]", self.dict_map_emoji[emoji])
return texto
# publica o tweet
def make_tweet(self, tweet, modulo, intent='teste', lista_atributos="teste", modo_operacao='padrao', tweet_id=0):
"""
Publica um tweet utilizando a API do Twitter
"""
tweet = self.substitui_emojis(tweet)
if self.print_tweet == 1:
print (tweet)
try:
if (tweet_id != 0):
if modo_operacao == 'padrao':
# publica o Tweet sem foto
status = self.api.update_status(tweet, in_reply_to_status_id=tweet_id)
elif modo_operacao == 'foto':
# publica o Tweet com foto
status = self.api.update_with_media("foto.png", tweet, in_reply_to_status_id=tweet_id)
else:
print ('Erro! Modo de operacao nao reconhecido.')
return status
# adiciona tweet ao bd
try:
print ('adicionando ao bd')
self.adiciona_tweet(tweet, modulo, intent, lista_atributos)
except Exception as e:
<<<<<<< HEAD
return status
=======
print (e)
return 0
>>>>>>> 3baf2b5123e8124a9e0c7d55812a9a288ff5e6b3
# retorna status do tweet
return 'ok'
else:
if modo_operacao == 'padrao':
# publica o Tweet sem foto
status = self.api.update_status(tweet)
elif modo_operacao == 'foto':
# publica o Tweet com foto
status = self.api.update_with_media("foto.png", tweet)
else:
print ('Erro! Modo de operacao nao reconhecido.')
sys.exit(0)
return 0
# adiciona tweet ao bd
try:
self.adiciona_tweet(tweet, modulo, intent, lista_atributos)
except Exception as e:
print (e)
return 0
# retorna status do tweet
<<<<<<< HEAD
return status
=======
return 'ok'
>>>>>>> 3baf2b5123e8124a9e0c7d55812a9a288ff5e6b3
except Exception as e:
print (e)
return 0
def verifica_tweet_ok(self, tweet):
'''
Verifica se o tweet está ok
'''
try:
# verifica se tweet possui palavras proibidas
for palavra in self.lista_palavras_banidas:
if palavra in tweet:
return 0
except:
return 0
# tweet ok
return 1
def verifica_tweet_pode_ser_publicado(self, tweet):
'''
Verifica se o tweet está ok
'''
df_tweets = pd.read_csv(self.path_twitter_bd, sep=';').dropna(subset=['tweet'])
lista_tweets_publicados = df_tweets['tweet'].values.tolist()
# verifica se conteúdo já foi postado
for tweet_publicado in lista_tweets_publicados[:-100:-1]:
distancia = self.calcula_distancia_strings(tweet, tweet_publicado)
if (distancia < self.distancia_minima_tweets):
print (f'Distancia pequena de {distancia}. Tweet vetado, muito similar.')
return 0
# tweet ok
return 1
def adiciona_tweet(self, tweet, modulo, intent, lista_atributos):
'''
Adiciona tweet ao bd
'''
# data de hoje
data_hoje = date.today().strftime("%d/%m/%Y")
# adiciona linha
linha=[tweet, modulo, intent, lista_atributos, data_hoje]
# bd atual
df_bd = pd.read_csv(self.path_twitter_bd, sep=';', encoding='utf-8')
# insere linha
df_bd.loc[-1] = linha
df_bd.index = df_bd.index + 1
df_bd = df_bd.sort_index()
# salva bd atualizado em csv
df_bd.to_csv(self.path_twitter_bd, sep=';', index=False)