Test / test.py
moamen270's picture
Update test.py
fe4d37d
raw
history blame contribute delete
144 Bytes
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == "__main__":
app.run()