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 06eca22 commit 48a8f06
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions FZBypass/core/bypass_scrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,9 @@ async def toonworld4all(url: str):
return prsd
MAGNET_REGEX = r"magnet:\?xt=urn:btih:[a-zA-Z0-9]*"

def re_findall(regex: str, text: str) -> List[str]:
return re.findall(regex, text)

async def tamilmv(url):
req=requests.get(url)
soup=bs(req.content,'html.parser')
Expand Down

0 comments on commit 48a8f06

Please sign in to comment.