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.
14 lines
562 B
Python
14 lines
562 B
Python
"""Probe perverzija scene page for hosters via curl_cffi."""
|
|
import re
|
|
from app.extractors._fetch import fetch_tube_html
|
|
|
|
url = "https://tube.perverzija.com/bangbrosclips-peta-jensen-peta-jensen-daily-dick-fix/"
|
|
html = fetch_tube_html(url)
|
|
print(f"size: {len(html)}")
|
|
iframes = re.findall(r'<iframe[^>]+src="([^"]+)"', html, re.I)
|
|
print(f"iframes: {iframes[:10]}")
|
|
hosters = re.findall(
|
|
r"(?:playmogo|luluvid|mixdrop|voe|streamwish|filemoon|doodstream|sdefx|xtremestream)\.[a-z]+/[a-zA-Z0-9?=.&_/-]+",
|
|
html, re.I,
|
|
)
|
|
print(f"hoster_urls: {hosters[:10]}")
|