this is bennys version bitch

This commit is contained in:
Ben Mosley
2025-11-30 22:23:48 -06:00
parent 81cfc3892b
commit 68a6eae50b
8 changed files with 433 additions and 0 deletions

14
app.py Normal file
View File

@@ -0,0 +1,14 @@
from __future__ import annotations
import os, json, time, requests
from datetime import datetime
from pathlib import Path
from typing import Optional
from flask import (
Flask, render_template, request, redirect, url_for, flash, session, jsonify, abort
)
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy import case
from dotenv import load_dotenv