https://github.com/scorphus/komootloose
Export komoot tours as GPX files from the command line — no subscription needed
https://github.com/scorphus/komootloose
gpx komoot
Last synced: 28 days ago
JSON representation
Export komoot tours as GPX files from the command line — no subscription needed
- Host: GitHub
- URL: https://github.com/scorphus/komootloose
- Owner: scorphus
- License: bsd-3-clause
- Created: 2026-06-10T12:37:31.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-10T14:59:29.000Z (about 2 months ago)
- Last Synced: 2026-06-10T16:11:15.081Z (about 2 months ago)
- Topics: gpx, komoot
- Language: HTML
- Homepage: https://pypi.org/project/komootloose
- Size: 21.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

Export komoot tours as GPX files from the command line — no subscription needed.
No CLI at hand? Use the web app: **[scorphus.github.io/komootloose](https://scorphus.github.io/komootloose/)** — runs entirely in your browser.
## Installation
```sh
uv tool install komootloose
```
Or `pipx install komootloose`, or `pip install komootloose`.
## Usage
```sh
komootloose 123456
komootloose https://www.komoot.com/tour/123456
komootloose "https://www.komoot.com/tour/123456?share_token=..." # link-shared tours
komootloose https://www.komoot.com/smarttour/123456 -o route.gpx
komootloose 123456 -o - # write GPX to stdout
```
Each tour is written to `.gpx` unless `-o` is given.
## Development
```sh
uv sync
uv run pytest
```