This software downloads TCX files and accompanying activity metadata files from the Garmin Connect website. Since Garmin has discontinued its API to download your data this software was written to take its place. It is the opinion of the author that this data generated by the athlete should be accessible via an automated method and not constrained to a Web GUI interface.
Features:
The easist way to install the command line program is via the pip
installer:
pip install zensols.garmdown
Binaries are also available on pypi.
N
days (where N
is specified in a configuration file).All state between all of these steps are recorded in an SQLite database, which is a binary file stored on the file system. If this doesn't make sense to you, it means that you shouldn't need to install anything special and it lives on your disk.
The activity download module was inspired by Shannon's original project, which was used to navigate the convoluted Garmin client API.
The easiest way to use the program is to use the sync
action repeatedly
until the program doesn't do anything, example:
$ garmdown sync
This invokes all data life cycle steps, meaning it imports
activities in to the database, downloads the TCX files and creates a handy
import directory (by default in your desktop directory ~/Desktop/to-import
).
Usage: usage: garmdown <list|activity|backup|env|import|notdown|notimport|sheet|sync|tcx> [options]
Options:
--version show program's version number and exit
-h, --help show this help message and exit
-w NUMBER, --whine=NUMBER
add verbosity to logging
-c FILE, --config=FILE
configuration file
Actions:
activity Download outstanding activites
-l, --limit <int> the limit
backup Backup (force) the activites database
env Print environment
-d, --detail report details of missing data
import Import tcx file
-l, --limit <int> the limit
notdown Print activities not downloaded
-d, --detail report details of missing data
notimport Print activities not imported
-d, --detail report details of missing data
sheet Update google docs training spreadsheet
sync Download all outstanding data
-l, --limit <int> the limit
tcx Download outstanding tcx files
-l, --limit <int> the limit
An extensive changelog is available here.
Copyright (c) 2019 - 2021 Paul Landes
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.