turfrun/app.py
Ian Burgess 55e9e34866 a
2025-04-08 21:26:33 -06:00

11 lines
195 B
Python

import flask
import stravalib
app = flask.Flask(__name__)
client = stravalib.client.Client()
@app.route('/')
def index():
return flask.render_template('index.html')
app.run(host='0.0.0.0')