Fixed pagination bug

This commit is contained in:
HugeFrog24
2026-03-14 06:49:05 +01:00
parent 80444405e9
commit 112ea70c00
17 changed files with 25346 additions and 12457 deletions
+18 -2
View File
@@ -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",
},
}