-
Notifications
You must be signed in to change notification settings - Fork 0
/
metodos_auxiliares_marsemfim.py
244 lines (200 loc) · 9.2 KB
/
metodos_auxiliares_marsemfim.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
import pandas as pd
import numpy as np
import requests
import random
import heapq
import nltk
import time
import json
import sys
import re
import os
from datetime import date
from bs4 import BeautifulSoup
from selenium import webdriver
from twitter_api import TwitterClass
class HelperClassMarsemfim:
"""
Classe de métodos auxiliares
"""
def __init__(self):
# mapeamento de meses
self.dict_map_mes = {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'
}
# dia atual
print (self.get_dia_atual())
# path atual
self.current_path = str(os.getcwd())
# API do Twitter
self.twitter_api = TwitterClass()
# parâmetros
self.url = "https://marsemfim.com.br"
self.max_publicacoes = 3
self.flag_resumo = 1
self.modulo = 'marsemfim'
def prepara_tweet(self, noticia, link, flag):
'''
retorna tweet tratado
'''
if flag == 0:
return f"{self.twitter_api.get_inicio_post()}{noticia}\n\nFonte: {link}{self.twitter_api.get_fim_post()}"
else:
return f"{self.twitter_api.get_inicio_post()}{noticia}\n\nFonte: {link}{self.twitter_api.get_fim_post()}\n\nResumo da publicação abaixo! {self.twitter_api.dict_map_emoji['dedo_baixo']}"
def pesquisa_noticias(self):
'''
publica conteudo
'''
try:
lista_news = []
# entra na url
page = requests.get(self.url).text
soup = BeautifulSoup(page, 'html.parser')
lista_elementos = soup.select('h3[class*="entry-title td-module-title"]')
lista_elementos = lista_elementos[:max(len(lista_elementos), 10)]
except:
sys.exit(0)
for elemento in lista_elementos:
try:
texto = str(soup.select('h3[class*="entry-title td-module-title"]')[0]).split('">')[-1].split('</a><')[0]
link = str(soup.select('h3[class*="entry-title td-module-title"]')[0]).split('href="')[1].split('"')[0]
# gera resumo da notícia
try:
soup = BeautifulSoup(requests.get(link).content, features="lxml")
resumo_pt1 = soup.find("h2", {"style": "text-align: justify;"}).text
resumo_pt2 = soup.find("p", {"style": "text-align: justify;"}).text
resumo = f"{resumo_pt1}. {resumo_pt2}"
except Exception as e:
print (f'Erro: {e}')
resumo = ''
# coloca noticia e link na lista
lista_news.append([texto, link, resumo])
except:
continue
# sorteia ordem de publicação
try:
random.shuffle(lista_news)
return lista_news
except:
sys.exit(0)
def get_dia_atual(self):
'''
data de hoje
'''
# data de hoje
dia = date.today().strftime("%d")
mes = self.dict_map_mes[int(date.today().strftime("%m"))]
ano = date.today().strftime("%Y")
return f"{dia} de {mes} de {ano}"
def prepara_lista_resumos(self, resumo):
'''
retorna lista de textos de resumo
'''
regex_pattern = r"[,.?!]"
frases = [frase for frase in re.split(r'(?<=[\,\.\!\?])\s*', resumo) if len(frase) >= 10]
combined = []
while frases:
items = next((frases[:n] for n in range(len(frases),0,-1) if len(" ".join(frases[:n]))<=270), frases[:1])
combined.append(" ".join(items))
frases = frases[len(items):]
return combined
def publica_conteudo(self):
'''
verifica se tweet está ok e publica no Twitter
'''
# flag de publicação
if (self.twitter_api.get_status_twitter() != 1):
print ("Flag 0. Não posso publicar!")
return
# pesquisa notícias
lista_news = self.pesquisa_noticias()
try:
if (len(lista_news) == 0):
return
except:
return
# itera lista de noticias
contador_publicacoes = 0
for elemento in lista_news:
# máximo número de publicações
if (contador_publicacoes >= self.max_publicacoes):
break
try:
# cria o tweet
noticia = elemento[0]
link = elemento[1]
resumo = elemento[2]
# tweet com e sem continuação
tweet_0 = self.prepara_tweet(noticia, link, 0)
tweet_1 = self.prepara_tweet(noticia, link, 1)
# prepara resumo
lista_resumos = self.prepara_lista_resumos(resumo)
len_lista_resumos = len(lista_resumos)
# valida se tweet está ok
if self.twitter_api.verifica_tweet_pode_ser_publicado(tweet_0) and self.twitter_api.valida_tamanho_tweet(tweet_0):
if (self.flag_resumo == 0 or len(resumo) <= 10 or len_lista_resumos == 0):
self.twitter_api.make_tweet(tweet=tweet_0,
modulo=self.modulo,
intent="marsemfim",
lista_atributos=[],
modo_operacao='padrao',
tweet_id=0)
print ('Tweet publicado!')
contador_publicacoes+=1
continue
else:
# valida resumos
for resumo in lista_resumos:
if not (self.twitter_api.verifica_tweet_pode_ser_publicado(resumo)):
self.twitter_api.make_tweet(tweet=tweet_0,
modulo=self.modulo,
intent="marsemfim",
lista_atributos=[],
modo_operacao='padrao',
tweet_id=0)
print ('Tweet publicado!')
contador_publicacoes+=1
continue
# publica tweet e depois resumos
try:
status = self.twitter_api.make_tweet(tweet=tweet_0,
modulo=self.modulo,
intent="marsemfim",
lista_atributos=[],
modo_operacao='padrao',
tweet_id=0)
status_id = str(status.id_str)
except:
continue
# itera na lista de resumos
for indice_resumo in range(len_lista_resumos):
resumo = lista_resumos[indice_resumo]
print (resumo + '...')
# coloca emoji do robô
resumo = f"{self.twitter_api.dict_map_emoji['robo']} {resumo}"
# se possui mais texto para publicar no resumo
if (indice_resumo < (len_lista_resumos - 1)):
resumo = f"{resumo} {self.twitter_api.dict_map_emoji['tres_pontos']}"
# publica tweet do resumo
status = self.twitter_api.make_tweet(tweet=tweet_0,
modulo=self.modulo,
intent="marsemfim",
lista_atributos=[],
modo_operacao='padrao',
tweet_id=str(status.id_str))
print ('Tweet publicado!')
time.sleep(60)
contador_publicacoes+=1
# erro
except Exception as e:
print (f'Erro! {e}')