Skip to content

ericflo/weightbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This module is an unofficial API into WeightBot. Right now it's very simple because WeightBot is simple.

Here's an example of how you can use it:

from weightbot import WeightBot
from pprint import pprint

wb = WeightBot('me@example.com', 'my_password')
data = wb.get_data()

pprint(data)

And then running that program might result in:

[{'date': datetime.date(2009, 8, 6), 'kilograms': 91.2, 'pounds': 201.1},
 {'date': datetime.date(2009, 8, 7), 'kilograms': 90.1, 'pounds': 198.7},
 {'date': datetime.date(2009, 8, 8), 'kilograms': 90.0, 'pounds': 198.5},
 {'date': datetime.date(2009, 8, 9), 'kilograms': 89.8, 'pounds': 198.0},]

You could also get at the raw csv file by doing wb.get_csv_data.

Hope you enjoy it!

About

An unofficial API into WeightBot.com

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages