beta -> master

This commit is contained in:
Boris Daniel Martinez Millán 2021-03-08 20:14:53 -05:00
parent a7b29977d8
commit 14cc40f336
2 changed files with 3 additions and 7 deletions

View File

@ -1,4 +1,4 @@
# Telefricabot #Telefricabot
Es un proyecto hecho en python para utilizar telegram Es un proyecto hecho en python para utilizar telegram
como cliente de friendica, nacio desde la idea de un como cliente de friendica, nacio desde la idea de un

8
api.py
View File

@ -1,4 +1,4 @@
from html2text import html2text
import requests,io,random,re import requests,io,random,re
ua = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:60.0) Gecko/20100101' ua = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:60.0) Gecko/20100101'
@ -44,13 +44,9 @@ class FriendApi():
exp=re.findall('<div class="wall-item-body e-content p-name">.*</div>',texto) exp=re.findall('<div class="wall-item-body e-content p-name">.*</div>',texto)
exp1=re.findall('"display/.*"',texto) exp1=re.findall('"display/.*"',texto)
out=[] out=[]
for i in re.findall('<a href=".*" class="tag" title=".*">',texto):
texto=texto.replace(i,'')
for i in re.findall('<img src=".*" alt=".*" title=".*">',texto):
texto.replace(i,'')
for i in range(0,limit): for i in range(0,limit):
try: try:
out.append(exp[i].replace('</a>','').replace('</div>','').replace('<div class="wall-item-body e-content p-name">','').replace('<br>','')+'\n'+self.url+exp1[i].replace('"','').replace('><i class=icon-link icon-large><span class=ser-only','')+'\n\n') out.append(html2text(exp[i])+'\n'+self.url+exp1[i].replace('"','').replace('> _< span class=sr-only','')+'\n\n')
except: except:
break break
return out return out