mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-20 08:30:42 -08:00
10 lines
255 B
Python
10 lines
255 B
Python
import re
|
|
|
|
ANIMEUNITY = "animeunity.so"
|
|
ANIMEUNITY_BASE = f"https://www.{ANIMEUNITY}"
|
|
|
|
MAX_TIMEOUT = 10
|
|
|
|
TOKEN_REGEX = re.compile(r'<meta.*?name="csrf-token".*?content="([^"]*)".*?>')
|
|
DOWNLOAD_URL_REGEX = re.compile(r"window.downloadUrl\s*=\s*'([^']*)'")
|