Metadata-Version: 1.1
Name: BloomSky-API
Version: 0.0.1
Summary: A simple Python client for the BloomSky API.
Home-page: https://github.com/tylerdave/bloomsky-api
Author: Dave Forgac
Author-email: tylerdave@tylerdave.com
License: MIT
Description: ===============================
        BloomSky API
        ===============================
        
        .. image:: https://img.shields.io/travis/tylerdave/bloomsky-api.svg
                :target: https://travis-ci.org/tylerdave/bloomsky-api
        
        .. image:: https://img.shields.io/pypi/v/bloomsky-api.svg
                :target: https://pypi.python.org/pypi/bloomsky-api
        
        
        A simple Python client for the BloomSky API.
        
        *Note: Neither this package nor its maintainer are affiliated with BloomSky.*
        
        For more information about the BloomSky device and its API, see: 
        http://weatherlution.com/bloomsky-api/
        
        
        Prerequisites
        -------------
        
        * Python (2.7, 3.3, 3.4, 3.5)
        * BloomSky API key (get it here: https://dashboard.bloomsky.com/)
        
        Installation
        ------------
        
        .. code-block:: bash
        
          pip install BloomSky-API
        
        
        Usage
        -----
        
        You can either store the API key in an environment variable named
        `BLOOMSKY_API_KEY` or provide it as an argument when creating the client.
        
        **Stored in environment variable:**
        
        .. code-block:: python
        
          import bloomsky_api
          client = bloomsky_api.BloomSkyAPIClient()
          data = client.get_data()
        
        **Provided via argument:**
          
        .. code-block:: python
        
          import bloomsky_api
          client = bloomsky_api.BloomSkyAPIClient(api_key='Your-real-API-key-goes-here')
          data = client.get_data()
        
        Data
        ----
        
        The returned data contains all of the information from the API response but
        with more Pythonic names and data types.
        
        
        
        
        History
        -------
        
        Pre-release
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
