forked from jaroslawhartman/withings-garmin-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.origin
70 lines (50 loc) · 2.42 KB
/
README.origin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
=====================
withings-garmin-v2
=====================
Based on withings-garmin by Masayuki Hamasaki, improved to support SSO authorization in Garmin Connect 2.
SSO authorization derived from https://github.com/cpfair/tapiriik
Additionally, requires 'Requests: HTTP for Humans' (http://docs.python-requests.org/en/latest/)
$ sudo easy_install requests
------------------------
このツールは,Withingsで記録した体重データをGarmin Connectと同期するためのツールです.
以下のようにsync.pyを起動してください.
$ python sync.py --wu [email protected] --wp password --ws USR --gu garmin_user --gp garmin_pass
-f (--fromdate) と -t (--todate) オプションを利用することにより,同期する期間を設定することができます.
例えば,以下のようにした場合 2011年1月20日 から 2011年2月2日までのデータだけを同期します.
$ python sync.py -f 2011-01-20 -t 2011-02-02
日付を指定しなかった場合 -f,-t ともにスクリプト実行時の日付がセットされます.(当日のデータだけ同期)
自動で同期する場合はcron等をご利用ください.
requires
--------
Python 2.5+
$ sudo easy_install simplejson (for Python2.5 only)
usage
-----
Usage: $python sync.py [options]
Options:
-h, --help show this help message and exit
--withings-username=<user>, --wu=<user>
username to login Withings Web Service.
--withings-password=<pass>, --wp=<pass>
password to login Withings Web Service.
--withings-shortname=<name>, --ws=<name>
your shortname used in Withings.
--garmin-username=<user>, --gu=<user>
username to login Garmin Connect.
--garmin-password=<pass>, --gp=<pass>
password to login Garmin Connect.
-f <date>, --fromdate=<date>
-t <date>, --todate=<date>
--no-upload Won't upload to Garmin Connect and output binary-
string to stdout.
-v, --verbose Run verbosely
tips
----
- 以下のようにすると, Garmin Connectへのアップロードを行わず, .fitファイルを作ることだけができます.
$ python sync.py --no-upload > weight.fit
- sync.py の定数を設定すると対応するオプションを省略できます.
WITHINGS_USERNMAE = ''
WITHINGS_PASSWORD = ''
WITHINGS_SHORTNAME = ''
GARMIN_USERNAME = ''
GARMIN_PASSWORD = ''