This repo contains curated data sources and UI state configs for SkunkScrape. It also includes Python helpers for MSISDN validation and HLR lookups.
config/
→ sources.json
and ui_state.json
scripts/
→ validation + scraping helperstests/
→ unit tests.env.example
→ sample environment file.github/workflows/validate.yml
→ CI/CD workflowCreate a .env
file in repo root:
WEBHOOK_URL=https://webhook.skunkscrape.com/events
PROXIES=http://user:password@proxy1:8080
HLR_API=https://api.hlrlookup.com/hlr?msisdn={number}&apikey=YOUR_KEY
Install deps:
Copy code
pip install -r requirements.txt
Run validation:
Copy code
python scripts/validate_numbers.py
Run scrape:
Copy code
python scripts/scrape_runner.py
# Environment
.env
*.key
*.pem
# Python
__pycache__/
*.pyc
.venv/