Metadata-Version: 1.1
Name: spot-sdk
Version: 2017.9.4
Summary: SDK for the find me spot
Home-page: https://github.com/gregology/spot-sdk
Author: Greg Clarke
Author-email: greg@gho.st
License: MIT
Description: ========
        Spot SDK
        ========
        
        Overview
        --------
        
        Simple SDK for extracting messages from Spot's API
        
        Installation
        ------------
        
        Directly from ``spot-sdk``'s `git repo <https://github.com/gregology/spot-sdk>`
        ::
        
            $ git clone git://github.com/gregology/spot-sdk.git
            $ cd spot-sdk
            $ python setup.py install
        
        Basic usage
        -----------
        ::
        
            >>> from spot_sdk import Feed
            >>> api_key = 'abcdefghijklmnopqrstuvwxy01234567'
            >>> feed = Feed(api_key)
            >>> feed.count()
            6
            >>> feed.first.type
            'UNLIMITED-TRACK'
            >>> feed.first.battery_state
            'GOOD'
            >>> feed.last.latitude
            42.000
            >>> feed.last.latitude
            datetime(2017, 1, 1, 0, 42, 0)
        
        
        Running Test
        ------------
        ::
        
            $ python spot-sdk/tests.py
        
        Python compatibility
        --------------------
        
        Developed for Python 3. May work but not tested in Python 2.
        
Keywords: spot
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
