Spaces:
Sleeping
Sleeping
File size: 383 Bytes
d76057f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """
BharatGraph - Main entry point
Run scrapers from project root to avoid import issues.
Usage: python main.py
"""
import sys
import os
# This ensures all imports work from project root
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
if __name__ == "__main__":
print("BharatGraph is ready.")
print("Run scrapers like: python -m scrapers.datagov_scraper")
|