/usr/lib/python3/dist-packages/galileo-0.5.1.egg-info/PKG-INFO is in galileo 0.5.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | Metadata-Version: 1.1
Name: galileo
Version: 0.5.1
Summary: Utility to securely synchronize a Fitbit tracker with the Fitbit server
Home-page: https://bitbucket.org/benallard/galileo
Author: Benoît Allard
Author-email: benoit.allard@gmx.de
License: LGPL
Description-Content-Type: UNKNOWN
Description: Galileo
=======
:author: Benoît Allard <benoit.allard@gmx.de>
:version: 0.5.1
:license: LGPLv3+
:bug tracker: https://bitbucket.org/benallard/galileo/issues
:mailing list: galileo@freelists.org (subscribe_, archive_)
:build status: |droneio_badge|_
.. _subscribe: mailto:galileo-request@freelists.org?subject=subscribe
.. _archive: http://freelists.org/archive/galileo/
.. |droneio_badge| image:: https://drone.io/bitbucket.org/benallard/galileo/status.png
.. _droneio_badge: https://drone.io/bitbucket.org/benallard/galileo
Introduction
------------
Galileo is a Python utility to securely synchronize a Fitbit device with the
Fitbit web service. It allows you to browse your data on their website, and
compatible applications.
All Bluetooth-based trackers are supported. Those are:
- Fitbit One
- Fitbit Zip
- Fitbit Flex
- Fitbit Force
- Fitbit Charge
- Fitbit Charge HR
.. note:: The newer Trackers: Alta, Surge, and Blaze are **not supported**
due to a change in the network communication protocol.
Help with dumps is welcome !
.. note:: The Fitbit Ultra tracker is **not supported** as it communicates
using the ANT protocol. To synchronize it, please use libfitbit_.
This utility is mainly targeted at Linux because Fitbit does not
provide any Linux-compatible software, but as Python is
cross-platform and the libraries used are available on a broad variety
of platforms, it should not be too difficult to port it to other
platforms.
.. _libfitbit: https://github.com/openyou/libfitbit
Main features
-------------
- Synchronize your fitbit tracker with the fitbit server using the provided
dongle.
- Securely communicate (using HTTPS) with the fitbit server.
- Save all your dumps locally for possible later analyse.
Installation
------------
The easy way
~~~~~~~~~~~~
.. warning:: If you want to run the utility as a non-root user, you will have
to install the udev rules manually (See `The more complicated
way`_, or follow the instructions given when it fails).
::
$ pip install galileo
$ galileo
.. note:: If you don't want to install this utility system-wide, you
may want to install it inside a virtualenv_, the behaviour
will not be affected.
.. _virtualenv: http://www.virtualenv.org
Distribution packages
~~~~~~~~~~~~~~~~~~~~~
The following Linux distributions have packages available for installation:
**Arch**:
The utility is available from AUR_. You can install it using the yaourt_ package manager: ``yaourt -S galileo``.
**Fedora**:
The utility is packaged in a `COPR repo`_. Download the relevant repo
for your version of Fedora, and then ``yum install galileo``.
**Gentoo**:
The utility is packaged as ``app-misc/galileo`` within the
`squeezebox <http://git.overlays.gentoo.org/gitweb/?p=user/squeezebox.git>`_
overlay. See https://wiki.gentoo.org/wiki/Layman for details of how
to use Gentoo overlays.
**Debian**:
galileo is now officially part of the sid_ distribution.
**Ubuntu**:
The utility is available over the ppa ``ppa:cwayne18/fitbit``. Use the
following commands to install it and start the daemon::
sudo add-apt-repository ppa:cwayne18/fitbit
sudo apt-get update && sudo apt-get install galileo
start galileo
.. note: This ppa has no support for newer Ubuntu releases. There are
reports that the Debian package (see above) can be installed there
though.
.. _AUR: https://aur.archlinux.org/packages/galileo/
.. _yaourt: https://wiki.archlinux.org/index.php/yaourt
.. _`COPR repo`: https://copr.fedoraproject.org/coprs/stbenjam/galileo/
.. _sid: https://packages.debian.org/sid/main/galileo
The more complicated way
~~~~~~~~~~~~~~~~~~~~~~~~
First, you need to clone this repository locally, and install the required
dependencies:
**pyusb**:
Need at least a 1.0 version, 0.4 and earlier are not compatible.
Please use a tagged release as development version might contains bug or
interface breakage.
**requests**:
Newer versions (2.x) preferred, although older should also work.
You should copy the file ``99-fitbit.rules`` to the directory
``/etc/udev/rules.d`` in order to be able to run the utility as a
non-root user.
Don't forget to:
- restart the udev service: ``sudo service udev restart``
- unplug and re-insert the dongle to activate the new rule.
Then simply run the ``run`` script located at the root of this repository.
If your system uses systemd then there is an example unit file in the
``contrib`` directory that you may wish to customize.
Documentation
-------------
For the moment, this README (and the ``--help`` command line option) is the
main documentation we have. The wiki_ is meant to gather technical
information about the project like the communication protocol, or the format
of the dump. Once this information reached a suffficient level of maturation,
the goal is to integrate it into the project documentation. So head-on there,
and start sharing your findings !
Manual pages for the galileo_\(1) utility and the galileorc_\(5) configuration
file are provided within the ``doc`` directory.
.. _wiki: https://bitbucket.org/benallard/galileo/wiki
.. _galileo: https://pythonhosted.org/galileo/galileo.1.html
.. _galileorc: https://pythonhosted.org/galileo/galileorc.5.html
Acknowledgements
----------------
Special thanks to the folks present @ the `issue 46`_ of libfitbit.
Especially to `sansneural <https://github.com/sansneural>`_ for
https://docs.google.com/file/d/0BwJmJQV9_KRcSE0ySGxkbG1PbVE/edit and
`Ingo Lütkebohle`_ for http://pastebin.com/KZS2inpq.
.. _`issue 46`: https://github.com/openyou/libfitbit/issues/46
.. _`Ingo Lütkebohle`: https://github.com/iluetkeb
Disclaimer
----------
Fitbit is a registered trademark and service mark of Fitbit, Inc. galileo is
designed for use with the Fitbit platform. This product is not put out by
Fitbit, and Fitbit does not service or warrant the functionality of this
product.
Keywords: fitbit,synchronize,health,tracker
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Classifier: Topic :: Internet
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
|