Files
remnawave-minishop/scratch_find.py
T
2026-04-24 21:04:53 +03:00

9 lines
268 B
Python

import re
with open('bot/app/web/templates/subscription_webapp.html', 'r', encoding='utf-8') as f:
html = f.read()
long_classes = set(re.findall(r'class="([^"]{40,})"', html))
for cls in long_classes:
print(f"--- LONG CLASS ({len(cls)} chars) ---\n{cls}\n")