Goon — self-hosted aggregator for adult-content scene metadata. Indexes scenes from TPDB, StashDB, and 30+ public adult tube sites. Cross-source deduplication via perceptual hash + Levenshtein distance. FastAPI backend + APScheduler worker + React Native (Expo) mobile client. FOSS, ad-free, donation-funded. See README for details.
20 lines
882 B
Python
20 lines
882 B
Python
"""Probe latestpornvideo + other suspected VPS-intensive tubes."""
|
|
from app.extractors import try_extract
|
|
|
|
TESTS = [
|
|
("latestpornvideocom", "https://latestpornvideo.com/777904/"),
|
|
("porndishcom", "https://www.porndish.com/porn/private-sata-jones-britney-dutch-milf-sata-jones-with-britney-dutch-in-an-anal-threesome/"),
|
|
("mypornerleakcom", "https://mypornerleak.com/mila-koi-gets-fucked-hard-by-brickzilla-bbc/"),
|
|
]
|
|
for sitetag, url in TESTS:
|
|
print(f"=== {sitetag} ===")
|
|
try:
|
|
ss = try_extract(sitetag, url)
|
|
for s in (ss or [])[:5]:
|
|
link_short = s.link[:80] + "..." if len(s.link) > 80 else s.link
|
|
print(f" type={s.type} quality={s.quality} link={link_short} raw={s.raw}")
|
|
if not ss:
|
|
print(" None (extractor returned no sources)")
|
|
except Exception as e:
|
|
print(f" ERROR: {e}")
|
|
print()
|