Datasets:
Bappadala Rohith Kumar Naidu
docs: update repository and scripts readmes to reflect 4.2GB master sync layouts
3c7d01d SafeVixAI β Data Acquisition Scripts π¬
These scripts are the raw data pipeline that built the 4.2 GB SafeVixAI dataset. All scripts here are pure Python β they require no database, no Redis, no PostGIS.
Scripts are mirrored from the SafeVixAI main repo and organized by their origin folder.
π Structure
scripts/
βββ backend/ β from SafeVixAI/backend/scripts/
β βββ app/ β Web app database setup & SQL migrations
β βββ data/ β Civic intel ETL pipelines & seeders
β
βββ chatbot_service/ β from SafeVixAI/chatbot_service/scripts/
β βββ app/ β Chatbot seeders
β βββ data/ β Overpass GIS fetchers (Pro version)
β βββ verify_rag.py β Vectorstore validation
β
βββ scripts/ β from SafeVixAI/scripts/
βββ app/ β Asset generators
βββ data/ β Scrapers, downloaders, and legacy seeders
π Recommended Run Order
# Install dependencies first
pip install requests pdfplumber
# 1. Setup Kaggle API (one-time)
pwsh scripts/scripts/data/setup_kaggle.ps1
# 2. Fetch all emergency services (use Pro versions)
python scripts/chatbot_service/data/fetch_hospitals.py
python scripts/chatbot_service/data/fetch_police.py
python scripts/chatbot_service/data/fetch_ambulance.py
python scripts/chatbot_service/data/fetch_blood_banks.py
python scripts/chatbot_service/data/fetch_fire.py
# 3. Download legal documents
python scripts/scripts/data/download_legal_pdfs.py
# 4. Extract MoRTH accident tables from PDFs
python scripts/scripts/data/extract_morth2022_tables.py
# 5. Normalize accident blackspot data
python scripts/scripts/data/seed_blackspots.py
# 6. Normalize traffic violations (MVA 2019)
python scripts/backend/data/seed_violations.py
# 7. Verify everything is correct
python scripts/scripts/data/verify_data.py
β Pro vs Basic Fetchers
| Feature | scripts/scripts/data/fetch_*.py |
scripts/chatbot_service/data/fetch_*.py |
|---|---|---|
| Retry logic | β | β |
| Exponential backoff | β | β |
| Indian GIS precision | Basic | Enhanced |
| Extra fields (email, postcode) | β | β |
Always prefer chatbot_service/data/ versions for data acquisition.
π¦ Dependencies
pip install -r requirements.txt
See requirements.txt in the Hub root.