Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
uk365 committed Jan 30, 2024
1 parent 35a1600 commit 18a82c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FZBypass/core/bypass_scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ def re_findall(regex: str, text: str) -> List[str]:


async def tamilmv(url):
cget = create_scraper().request
resp = cget("GET", url, allow_redirects=False)
cget = create_scraper().get
resp = cget(url, allow_redirects=False)
soup = BeautifulSoup(resp.text, 'html.parser')
mag = soup.select('a[href^="magnet:?xt=urn:btih:"]')
tor = soup.select('a[data-fileext="torrent"]')
Expand Down

0 comments on commit 18a82c8

Please sign in to comment.