File size: 253 Bytes
4521831
561e417
 
 
4521831
 
561e417
4521831
 
 
561e417
 
f0155d3
1
2
3
4
5
6
7
8
9
10
11
12
13
from flask import Flask, render_template_string

app = Flask(__name__)

with open('index.html', 'r') as f:
    html_content = f.read()

@app.route('/')
def home():
    return render_template_string(html_content)

if __name__ == '__main__':
    app.run()