Metadata-Version: 2.1
Name: robinhood-api
Version: 0.0.3
Summary: the unofficial Robinhood API
Home-page: https://github.com/james-yun/robinhood
Author: James Yun
Author-email: jameswyun99@gmail.com
License: MIT
Description: # robinhood
        [![PyPI version](https://badge.fury.io/py/robinhood-api.svg)](https://badge.fury.io/py/robinhood-api)
        ![PyPI workflow](https://github.com/james-yun/robinhood/workflows/Publish%20Python%20%F0%9F%90%8D%20distributions%20%F0%9F%93%A6%20to%20PyPI/badge.svg)  
        
        the unofficial Robinhood API (pre-alpha)
        
        ## Installation
        
        ```bash
        pip install robinhood-api
        ```
        
        ## Authentication
        The first time you log in, you will be prompted to verify your identity by entering a code send to your phone or email. 
        This will generate an OAuth bearer token that will be stored in tokens.json. 
        Subsequent logins will not require your credentials.
        
        ## Usage
        
        ```python
        import robinhood
        
        
        # you will be prompted for your username and password
        robinhood.login()  
        
        # check your stocks
        print(robinhood.positions())
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        
        ## License
        [MIT](LICENSE)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
