sarel's picture
Upload scripts/seed_db.py with huggingface_hub
4b947f1 verified
Raw
History Blame Contribute Delete
184 Bytes
#!/usr/bin/env python3
"""Seed the CreditScope SQLite database with synthetic customers."""
from backend.db.seed import seed_database
if __name__ == "__main__":
seed_database()