mirror of
https://github.com/HugeFrog24/jailbirdz-dl.git
synced 2026-05-01 00:52:18 +00:00
Fixed pagination bug
This commit is contained in:
@@ -1,2 +1,18 @@
|
||||
BASE_URL = "https://www.jailbirdz.com"
|
||||
COOKIE_DOMAIN = "jailbirdz.com" # rookiepy domain filter (no www)
|
||||
# config.py
|
||||
from typing import Final
|
||||
|
||||
# How long a cached file size stays valid. 0 = always re-probe; large = effectively forever.
|
||||
SIZE_CACHE_TTL: Final[int] = 9_999_999 # seconds (~115 days)
|
||||
|
||||
SITES: Final[dict[str, dict[str, str]]] = {
|
||||
"jailbirdz": {
|
||||
"base_url": "https://www.jailbirdz.com",
|
||||
"cookie_domain": "jailbirdz.com",
|
||||
"env_prefix": "JAILBIRDZ",
|
||||
},
|
||||
"pinkcuffs": {
|
||||
"base_url": "https://www.pinkcuffs.com",
|
||||
"cookie_domain": "pinkcuffs.com",
|
||||
"env_prefix": "PINKCUFFS",
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user