Python Framework to make trades with Unofficial Robinhood API. Supports Python 3.6+
- A stable release is imminent
Documentation: https://pyrh.readthedocs.io/en/latest/
from pyrh import Robinhood
rh = Robinhood()
rh.login(username="YOUR_EMAIL", password="YOUR_PASSWORD")
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.7.6 $ 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.