All you need to create a multi-user sports tracker database from multiple sources.
- Free software: MIT license
- Documentation: https://sportstrackeranalyzer.readthedocs.io.
This is the worst README ever, but the sportstrackeranalyzer is already in first state where some functionality is given. In case you have asked for a collection of all your data from Runtastic, you can already read-in the database dump, according to a simple file-based structure on disk (after you have unpacked the database dump). Follow the following steps:
- Download and Installation:
git clone REPO
make install
- Add a new database location, database type and name:
sportstrackeranalyzer createDB testDB --type FileDataBase --path /home/user/test-database-dir
- Tell your system which sportstrackeranalyzer database you would like to use
sportstrackeranalyzer loadDB testDB --type FileDataBase --path /home/user/test-database-dir
- An empty database needs a user first! Add one...
sportstrackeranalyzer addUser
- You need to tell your database which user you would like to use by default for further operations:
sportstrackeranalyzer setUser <username>
- Import your Runtastic tracks from the database dump:
sportstrackeranalyzer addTracks --source-type database --track-source runtastic --path /path/to/RunTastic_Exports/
--> No further tests made at this point! Development is ongoing! Don't be mad if not working as expected.
- Still a lot...
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.