Skip to content

Python library dedicated to interact with Sports Tracker App

Notifications You must be signed in to change notification settings

prezesp/py-sporstracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

py-sporstracker

Python library dedicated to interact with Sports Tracker App

Instalation

pip install git+git://github.com/prezesp/py-sporstracker.git

Usage

from sportstracker import SportsTrackerLib

stlib = SportsTrackerLib()
stlib.login('USER', 'PASS')

# print number of my workouts
print(len(stlib.get_workouts()))

# add workout
filename = "my-great-training.gpx"
with open(filename) as f:
	gpx = f.read()
	stlib.add_workout(filename, gpx)

About

Python library dedicated to interact with Sports Tracker App

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages