Metadata-Version: 1.0
Name: Starbucks
Version: 0.1.2
Summary: Unoffical Starbucks API.
Home-page: https://github.com/minsoopark/starbucks-py
Author: Minsoo Park
Author-email: minsoo1003@gmail.com
License: BSD License
Description: ============
        Starbucks-py
        ============
        
        .. image:: https://pypip.in/v/Starbucks/badge.svg
            :target: https://pypi.python.org/pypi/Starbucks/
        
        Unofficial Starbucks API.
        
        This API is written in Python.
        
        *Only supports for Starbucks Korea.*
        
        
        Installation
        ------------
        
        You can install Starbucks with ``pip``
        
        ::
        
            $ pip install starbucks
        
        
        Features
        --------
        
        1. Login
        ~~~~~~~~
        
        You can login to Starbucks like:
        
        ::
        
            from starbucks import Starbucks
            
            starbucks = Starbucks()
            starbucks.login('username', 'password')
            
        
        
        2. Get My Card Information
        ~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        You can get your card information like:
        
        ::
        
            # You should know the registration number of your card.
            # It is in the source code of Starbucks web page.
            card = starbucks.get_card_info('0000000')
            
        
        
        3. Get My Stars Count
        ~~~~~~~~~~~~~~~~~~~~~
        
        You can get your stars count like:
        
        ::
        
            starbucks.get_stars_count()
            
        
        
        4. Logout
        ~~~~~~~~~
        
        If you want to logout, just:
        
        ::
        
            starbucks.logout()
            
        
        
        Known Issues
        ------------
        
        - Should I have to check if I logged in successfully like this?
        
        
        To Do
        -----
        
        - Cards list
        - Card usage histories
        - and so on.
        
Keywords: Starbucks
Platform: UNKNOWN
