Skip to content

Commit

Permalink
First Commit of fitbit module.
Browse files Browse the repository at this point in the history
  • Loading branch information
issackelly committed Feb 26, 2012
1 parent c0bcedb commit aee5a49
Show file tree
Hide file tree
Showing 10 changed files with 827 additions and 0 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Issac Kelly (Kelly Creative Tech)
Percy Perez (ORCAS)
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2012 Issac Kelly and ORCAS

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
6 changes: 6 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
TODO

* Public calls only based on consumer_key, (should work, untested)
* Change Units
* Docs
* Tests
21 changes: 21 additions & 0 deletions fitbit/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
"""
Fitbit API Library
------------------
:copyright: (c) 2012 by Issac Kelly.
:license: BSD, see LICENSE for more details.
"""
from .exceptions import BadResponse
from .api import Fitbit, FitbitConsumer, FitbitOauthClient

# Meta.

__title__ = 'fitbit'
__author__ = 'Issac Kelly and ORCAS'
__copyright__ = 'Copyright 2012 Issac Kelly'
__license__ = 'Apache 2.0'

__version__ = '0.0.1'

# Module namespace.
Loading

0 comments on commit aee5a49

Please sign in to comment.