turfrun/app.py
Ian Burgess 289606db87 a
2025-04-08 21:55:58 -06:00

11 lines
206 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',debug=True)