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.
6 lines
339 B
Python
6 lines
339 B
Python
"""Probe what extractor returns for perverzija — type, force_proxy?"""
|
|
from app.extractors import try_extract
|
|
|
|
ss = try_extract("perverzijacom", "https://tube.perverzija.com/bangbrosclips-peta-jensen-peta-jensen-daily-dick-fix/")
|
|
for s in (ss or [])[:5]:
|
|
print(f"type={s.type} quality={s.quality} link={s.link[:80]}... raw={s.raw}")
|