From f73d1aaca1bb486ea71d37d83aeef10a3287758f Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Wed, 24 Dec 2025 17:10:50 -0800 Subject: [PATCH] feat: Update import script to include future shows --- backend/comprehensive_import.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/backend/comprehensive_import.py b/backend/comprehensive_import.py index e5ad348..516f085 100644 --- a/backend/comprehensive_import.py +++ b/backend/comprehensive_import.py @@ -92,8 +92,11 @@ def import_shows_and_setlists(): tours_added = 0 songs_added = 0 - # Process past shows with setlists - for api_show in past_shows: + # Process ALL shows (past and future) + all_shows_to_process = past_shows + future_shows + print(f"Processing {len(all_shows_to_process)} shows...") + + for api_show in all_shows_to_process: show_date_str = api_show.get("showdate") show_date = datetime.strptime(show_date_str, "%Y-%m-%d") api_show_id = api_show.get("show_id")