Update main.py

This commit is contained in:
Eduard Prigoana 2025-07-20 05:36:10 +03:00 committed by GitHub
parent 8e8c59919b
commit fb499a72c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,9 +13,9 @@ app = Flask(__name__, template_folder="templates")
CORS(app) # ✅ ENABLE CORS FOR ALL ROUTES CORS(app) # ✅ ENABLE CORS FOR ALL ROUTES
# Constants # Constants
ZIP_URL = "https://docs.google.com/spreadsheets/d/1DpuNNPfr5NwAnr1enVHjHjs_zhWiKwXd6KCpGXGjqxw/export?format=zip" ZIP_URL = "https://docs.google.com/spreadsheets/d/1S6WwM05O277npQbaiNk-jZlXK3TdooSyWtqaWUvAI78/export?format=zip"
XLSX_URL = "https://docs.google.com/spreadsheets/d/1DpuNNPfr5NwAnr1enVHjHjs_zhWiKwXd6KCpGXGjqxw/export?format=xlsx" XLSX_URL = "https://docs.google.com/spreadsheets/d/1S6WwM05O277npQbaiNk-jZlXK3TdooSyWtqaWUvAI78/export?format=xlsx"
ZIP_FILE = "Trackerhub.zip" ZIP_FILE = "Trackerhub Reup.zip"
XLSX_FILE = "artists.xlsx" XLSX_FILE = "artists.xlsx"
EXTRACT_FOLDER = "sheet" EXTRACT_FOLDER = "sheet"
HTML_FILE = os.path.join(EXTRACT_FOLDER, "Artists.html") HTML_FILE = os.path.join(EXTRACT_FOLDER, "Artists.html")