Skip to content

Instantly share code, notes, and snippets.

View peltho's full-sized avatar

Thomas Pellegatta peltho

  • France
View GitHub Profile
@mneedham
mneedham / app.py
Last active February 9, 2024 18:26
Mapping Strava runs using Leaflet and Open Street Map
from flask import Flask
from flask import render_template
import csv
import json
app = Flask(__name__)
@app.route('/')
def my_runs():
runs = []