8 lines
137 B
Python
8 lines
137 B
Python
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/')
|
|
def hello_world():
|
|
return 'Welcome to the homepage of bea!'
|
|
|
|
app.run() |