Port meetups, discussions, gigs, dating/chat, VIP pay (ZPay/XorPay), MiroTalk live, digital academy, and ebook reader. Add persistent community_store, git-first deploy docs, and env template for production secrets. Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
761 B
Python
22 lines
761 B
Python
import re
|
|
import urllib.request
|
|
|
|
base = "https://nomadweb.nomadro.com"
|
|
html = urllib.request.urlopen(base + "/book", timeout=30).read().decode("utf-8", "replace")
|
|
links = re.findall(r'href="([^"]+\.css[^"]*)"', html)
|
|
for u in links:
|
|
full = u if u.startswith("http") else base + u
|
|
css = urllib.request.urlopen(full, timeout=30).read().decode("utf-8", "replace")
|
|
print(u, "len", len(css))
|
|
print(
|
|
" viral-title",
|
|
"viral-title" in css,
|
|
"min-h-screen",
|
|
"min-h-screen" in css,
|
|
"flex",
|
|
bool(re.search(r"\.flex\s*\{", css)),
|
|
"tailwind",
|
|
"@layer" in css or "--tw" in css,
|
|
)
|
|
print(" book-bg", "--book-bg" in css, "hero-orb", "hero-orb" in css, "viral-cover", "viral-cover" in css)
|