WeatherStation/WebGui/Helloworld.py
jeanGaston bd7021fa85 Init
Creation of dokerfiles for scraper and webgui.
2024-01-29 16:24:09 +01:00

11 lines
162 B
Python

from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ == '__main__':
app.run(debug=True)