The fork here is more actively maintained.
Download a copy of your Garmin Connect data, including stats and GPX tracks. This fork has been modified from the original to support Python 3 (no backwards compatibility for 2).
This script will backup your personal Garmin Connect data. All downloaded data will go into a directory called YYYY-MM-DD_garmin_connect_export/
in the current working directory. Activity records and details will go into a CSV file called activities.csv
. GPX files (or whatever format you specify) containing track data, activity title, and activity descriptions are saved as well, using the Activity ID.
If there is no GPS track data (e.g., due to an indoor treadmill workout), a data file is still saved. If the GPX format is used, activity title and description data are saved. If the original format is used, Garmin may not provide a file at all and an empty file will be created. For activities where a GPX file was uploaded, Garmin may not have a TCX file available for download, so an empty file will be created. Since GPX is the only format Garmin should have for every activity, it is the default and preferred download format.
If you have many activities, you may find that this script crashes with an "Operation timed out" message. Just run the script again and it will pick up where it left off.
usage: gcexport.py [-h] [--version] [--username [USERNAME]]
[--password [PASSWORD]] [-c [COUNT]]
[-f [{gpx,tcx,original}]] [-d [DIRECTORY]] [-u]
optional arguments:
-h, --help show this help message and exit
-v, --verbose increase output verbosity
--version print version and exit
--username [USERNAME]
your Garmin Connect username (otherwise, you will be
prompted)
--password [PASSWORD]
your Garmin Connect password (otherwise, you will be
prompted)
-c [COUNT], --count [COUNT]
number of recent activities to download, or 'all'
(default: 1)
-f [{gpx,tcx,original}], --format [{gpx,tcx,original}]
export format; can be 'gpx', 'tcx', or 'original'
(default: 'gpx')
-d [DIRECTORY], --directory [DIRECTORY]
the directory to export to (default: './YYYY-MM-
DD_garmin_connect_export')
-u, --unzip if downloading ZIP files (format: 'original'), unzip
the file and removes the ZIP file
-s, --skipvalidation if running in gpxc format, skips the validation step
Examples:
python gcexport.py --count all
will download all of your data to a dated directory.
python gcexport.py -d ~/MyActivities -c 3 -f original -u --username bobbyjoe --password bestpasswordever1
will download your three most recent activities in the FIT file format (or whatever they were uploaded as) into the ~/MyActivities
directory (unless they already exist). Using the --username
and --password
flags are not recommended because your password will be stored in your command line history. Instead, omit them to be prompted (and note that nothing will be displayed when you type your password).
Alternatively, you may run it with ./gcexport.py
if you set the file as executable (i.e., chmod u+x gcexport.py
).
Because this is not an official feature of Garmin Connect, Garmin may very well make changes that break this utility.
If you want to see all of the raw data that Garmin hands to this script, just print out the contents of the json_results
variable. I believe most everything that is useful has been included in the CSV file. You will notice some columns have been duplicated: one column geared towards display, and another column fit for number crunching (labeled with "Raw"). I hope this is most useful. Some information is missing, such as "Favorite" or "Avg Strokes." This is available from the web interface, but is not included in data given to this script.
Also, be careful with speed data, because sometimes it is measured as a pace (minutes per mile) and sometimes it is measured as a speed (miles per hour).
This script is for personal use only. It simulates a standard user session (i.e., in the browser), logging in using cookies and an authorization ticket. This makes the script pretty brittle. If you're looking for a more reliable option, particularly if you wish to use this for some production service, Garmin does offer a paid API service.
The original project was written in PHP, based on "Garmin Connect export to Dailymile" code at http://www.ciscomonkey.net/gc-to-dm-export/ (link has been down for a while). The script was originally written in Python by @kjkjava here, but is no longer being maintained.
Contributions are welcome, particularly if this script stops working with Garmin Connect. You may consider opening a GitHub Issue first. New features, however simple, are encouraged.
MIT © 2015 Kyle Krafka
Thanks for using this script and I hope you find it as useful as I do! 😄