Flask Start
This commit is contained in:
@@ -0,0 +1,9 @@
|
|||||||
|
from flask import Flask
|
||||||
|
|
||||||
|
app = Flask(__name__)
|
||||||
|
|
||||||
|
@app.route('/')
|
||||||
|
def hello():
|
||||||
|
return 'Hello, World!'
|
||||||
|
|
||||||
|
app.run(port=5000)
|
||||||
Reference in New Issue
Block a user