Python Framework to make trades with Unofficial Robinhood API. Supports Python 3.8.1+
Please note this project is stable and in maintenance mode but is happy to accept contributions
Documentation: https://pyrh.readthedocs.io/en/latest/
from pyrh import Robinhood
rh = Robinhood(username="YOUR_EMAIL", password="YOUR_PASSWORD")
rh.login()
rh.print_quote("AAPL")
pip install pyrh
Running example.ipynb
Clone the repository and install jupyter capabilities.
$ git clone https://github.com/robinhood-unofficial/pyrh.git $ cd pyrh $ python --version # python 3.3+ for venv functionality Python 3.8.1 $ python -m venv pyrh_env $ source pyrh_env/bin/activate (pyrh_env) $ pip install .[notebook] (pyrh_env) $ cp .env.sample .env # update the values in here (pyrh_env) $ jupyter notebook notebooks/example.ipynb
Now just run the files in the example.
- robinhood-ruby - RubyGem for interacting with Robinhood API
- robinhood-node - NodeJS module to make trades with Robinhood Private API
- See the original blog post.