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.jsonandui_state.jsonscripts/โ validation + scraping helperstests/โ unit tests.env.exampleโ sample environment file.github/workflows/validate.ymlโ CI/CD workflow
Create 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_KEYInstall deps:
Copy code
pip install -r requirements.txt
Run validation:Copy code
python scripts/validate_numbers.pyRun scrape:
Copy code
python scripts/scrape_runner.py# Environment
.env
*.key
*.pem
# Python
__pycache__/
*.pyc
.venv/