https://github.com/peter554/garmin-strava-sync
A small automation to sync my activities from Garmin Connect to Strava
https://github.com/peter554/garmin-strava-sync
Last synced: about 2 months ago
JSON representation
A small automation to sync my activities from Garmin Connect to Strava
- Host: GitHub
- URL: https://github.com/peter554/garmin-strava-sync
- Owner: Peter554
- License: mit
- Created: 2023-01-15T20:37:00.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-26T16:20:00.000Z (over 3 years ago)
- Last Synced: 2024-10-19T11:28:53.010Z (almost 2 years ago)
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# garmin strava sync
A small automation to sync my activities from Garmin Connect to Strava.
* Using https://playwright.dev/python/ for browser automation.
* Deployed as a GitHub action, manually triggerable using the workflow_dispatch trigger.
New Garmin activities will be posted to Strava.
Updates and deletes on Garmin are not synced to Strava, since this is complex and offers me little benefit (updates/deletes are rare).
Triggering the sync using the GitHub API:
```
curl \
-X POST \
-u peter554:$TOKEN \
https://api.github.com/repos/peter554/garmin-strava-sync/actions/workflows/sync.yml/dispatches \
-d '{"ref": "master", "inputs": {"n_activities": "5"}}'
```