1# Core web app using flask
2# Download flask if you haven't
3from flask import Flask
4app = Flask(__name__)
5
6@app.route('/')
7def hello_world():
8 return 'Hello, World!'
9
10if __name__ == '__main__':
11 app.run()
12
13# If you want to put this on the internet, use something like heroku to deploy it.