You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
307 B
Python
15 lines
307 B
Python
4 years ago
|
#!/usr/bin/env python3
|
||
|
# vim: set sw=4 ts=4 ex
|
||
|
from flask import Flask, render_template, url_for
|
||
|
from flask_flatpages import FlatPages
|
||
|
from datetime import datetime
|
||
|
|
||
|
app = Flask(__name__)
|
||
|
|
||
|
@app.route("/")
|
||
|
def hello_world():
|
||
|
return 'Hello, World!'
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
app.run(host='0.0.0.0')
|