image-host-server/app.py

12 lines
228 B
Python
Raw Normal View History

2022-03-11 16:33:55 +01:00
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return render_template('home.html')
if __name__ == '__main__':
app.run(host='0.0.0.0')