- Fork elmeg-demo codebase for multi-band support - Add data importer infrastructure with base class - Create band-specific importers: - phish.py: Phish.net API v5 - grateful_dead.py: Grateful Stats API - setlistfm.py: Dead & Company, Billy Strings (Setlist.fm) - Add spec-kit configuration for Gemini - Update README with supported bands and architecture
13 lines
293 B
Python
13 lines
293 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
print("Starting seed script...")
|
|
sys.stdout.flush()
|
|
|
|
from database import engine
|
|
from sqlmodel import Session
|
|
print("Imported database...")
|
|
sys.stdout.flush()
|
|
|
|
with Session(engine) as session:
|
|
print("Session created successfully!")
|
|
sys.stdout.flush()
|