14 lines
247 B
Python
14 lines
247 B
Python
#!/usr/bin/python3
|
|
from flask import render_template
|
|
from flask_sqlalchemy import SQLAlchemy
|
|
from markupsafe import escape
|
|
import requests, json
|
|
|
|
def homepage():
|
|
return "homepage"
|
|
|
|
def home():
|
|
return "welcome home!"
|
|
|
|
def index():
|
|
return "index" |