6 lines
129 B
Python
6 lines
129 B
Python
from flask import Flask
|
|
application = Flask(__name__)
|
|
@application.route('/')
|
|
def helloworld():
|
|
return 'Hello there, world!'
|