28 lines
815 B
Markdown
28 lines
815 B
Markdown
# 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 <url1> <url2>
|
|
python verify/tools/audit_listings.py --platform auto --include-jsonld <url>
|
|
```
|
|
|
|
To save output for review:
|
|
|
|
```bash
|
|
python verify/tools/audit_listings.py --platform auto <url1> <url2> > verify/results/audit.jsonl
|
|
```
|