Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/knio/myfitbit
Fitbit data export - Because your data belongs to you!
https://github.com/knio/myfitbit
Last synced: about 2 months ago
JSON representation
Fitbit data export - Because your data belongs to you!
- Host: GitHub
- URL: https://github.com/knio/myfitbit
- Owner: Knio
- License: gpl-3.0
- Created: 2017-04-10T06:37:45.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-06T19:00:51.000Z (over 2 years ago)
- Last Synced: 2024-10-16T15:30:03.372Z (2 months ago)
- Language: Python
- Size: 1.42 MB
- Stars: 34
- Watchers: 5
- Forks: 12
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MyFitbit
Because *"Your data belongs to you!"*
...and fitbit's own data export sucks.
![Python version](https://img.shields.io/pypi/pyversions/myfitbit.svg?style=flat)
[![Build status](https://img.shields.io/travis/Knio/myfitbit/master.svg?style=flat)](https://travis-ci.org/Knio/myfitbit)
[![Coverage status](https://img.shields.io/coveralls/github/Knio/myfitbit/master.svg?style=flat)](https://coveralls.io/r/Knio/myfitbit?branch=master)## Installation
The recommended way to install `myfitbit` is with
[`pip`](http://pypi.python.org/pypi/pip/):sudo pip install myfitbit
[![PyPI version](https://img.shields.io/pypi/v/myfitbit.svg?style=flat)](https://pypi.org/project/myfitbit/)
[![PyPI downloads](https://img.shields.io/pypi/dm/myfitbit.svg?style=flat)](https://pypi.org/project/myfitbit/)Manual installation:
```sh
git clone [email protected]:Knio/myfitbit
cd myfitbit
python3 setup.py install
```## Setup
1. Register a new app at https://dev.fitbit.com/apps/new
The app should look like this:
The Callback URL must be exactly `http://localhost:8189/auth_code`
2. Configure the API keys
Make a file `myfitbit.ini` in your working directory with the client ID and secret you got from registering the fitbit app:
```
[fitbit_auth]
client_id = 123ABCD
client_secret = 0123456789abcdef0a1b2c3d4f5
access_token_file = .myfitbit_access_token
```2. Export your data
```
python3 -m myfitbit
```This will open a web browser and prompt you to allow the app to access your data.
It will then begin exporting to your current working directory.
Note that the fitbit API is rate limited to 150 calls/hour, and you can query only 1 day of heartrate data at a time. If you many days of data, you will be rate limited and see an HTTP 429 error. Simply re-run the command an hour later and it will resume downloading where it left off.
3. Generate report
```
python3 -m myfitbit.report --user 123ABC
```Use the user id seen in the output from step 2
This will generate `report.html` in your current working directory.
![Fitbit Report](docs/fitbit.png)