adding in flask

This commit is contained in:
zack
2026-04-23 18:35:11 -04:00
parent 206a229895
commit 390f062e0a
7 changed files with 309 additions and 27 deletions

11
app.py Normal file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/python3
from ose import *
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
htmlBody = returnSheets('test')
return render_template("sheet.html", htmlBody=htmlBody)