# Verify (crawler-view audit) This folder contains a lightweight SEO audit that fetches external listing/profile URLs using a Googlebot User-Agent, then extracts: - Booking.com / TripAdvisor: rating, review count, badges (JSON-LD first) - Instagram / Facebook / TikTok: follower count + last post date hints (meta tags) - Policy check: searches page text for "New Year's Eve", "minimum stay", "sold out" ## Setup ```bash python3 -m venv .venv . .venv/bin/activate pip install -r verify/requirements.txt ``` ## Run ```bash python verify/tools/audit_listings.py --platform auto python verify/tools/audit_listings.py --platform auto --include-jsonld ``` To save output for review: ```bash python verify/tools/audit_listings.py --platform auto > verify/results/audit.jsonl ```