12 lines
225 B
Python
12 lines
225 B
Python
#!/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)
|