Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
uk365 authored Jan 30, 2024
1 parent f1ac23a commit 9f1a5e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FZBypass/core/bypass_scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,11 +170,11 @@ async def tamilmv(url):
magnets=soup.findAll('a')
links=[]
for i in magnets:
ax = re_findall(MAGNET_REGEX, i.get_text())
try:
if i.get_text()=="MAGNET" or i.find('img').get('alt')=="magnet.png":
j=i.find_previous_sibling('strong')
links.append({"name":j.get_text(),"link":i.get('href')})
ax = re_findall(MAGNET_REGEX, i.text)
j=i.find_previous_sibling('strong')
links.append({"name":j.get_text(),"link":i.get('href')})
except:
pass

Expand Down

0 comments on commit 9f1a5e8

Please sign in to comment.