{"id":15029558,"url":"https://github.com/robinhood-unofficial/pyrh","last_synced_at":"2025-05-14T11:08:56.167Z","repository":{"id":31487351,"uuid":"35051500","full_name":"robinhood-unofficial/pyrh","owner":"robinhood-unofficial","description":"Python Framework to make trades with the unofficial Robinhood API","archived":false,"fork":false,"pushed_at":"2024-08-08T03:35:06.000Z","size":714,"stargazers_count":1802,"open_issues_count":17,"forks_count":601,"subscribers_count":138,"default_branch":"master","last_synced_at":"2025-05-07T13:51:40.498Z","etag":null,"topics":["python","python-framework","robinhood-api"],"latest_commit_sha":null,"homepage":"https://pyrh.readthedocs.io/en/latest/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robinhood-unofficial.png","metadata":{"files":{"readme":"README.rst","changelog":"newsfragments/.gitignore","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-05-04T18:20:47.000Z","updated_at":"2025-05-01T14:55:41.000Z","dependencies_parsed_at":"2024-03-04T03:43:39.327Z","dependency_job_id":"5ec8c218-e4e0-44ab-8acc-f35969430e55","html_url":"https://github.com/robinhood-unofficial/pyrh","commit_stats":null,"previous_names":["jamonek/robinhood"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinhood-unofficial%2Fpyrh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinhood-unofficial%2Fpyrh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinhood-unofficial%2Fpyrh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robinhood-unofficial%2Fpyrh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robinhood-unofficial","download_url":"https://codeload.github.com/robinhood-unofficial/pyrh/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254129484,"owners_count":22019628,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python","python-framework","robinhood-api"],"created_at":"2024-09-24T20:11:01.304Z","updated_at":"2025-05-14T11:08:56.115Z","avatar_url":"https://github.com/robinhood-unofficial.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://i.imgur.com/74CYw5g.png\n   :target: https://github.com/robinhood-unofficial/pyrh\n   :alt: robinhood-logo\n\n-------------------------------------------------------------\n\npyrh - Unofficial Robinhood API\n###############################\n\n.. image:: https://github.com/robinhood-unofficial/pyrh/workflows/build/badge.svg?branch=master\u0026event=push\n   :target: https://github.com/robinhood-unofficial/pyrh/actions?query=workflow%3Abuild+branch%3Amaster\n   :alt: Build Status\n\n.. image:: https://codecov.io/gh/robinhood-unofficial/pyrh/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/robinhood-unofficial/pyrh\n   :alt: Coverage\n\n.. image:: https://readthedocs.org/projects/pyrh/badge/?version=latest\n   :target: https://pyrh.readthedocs.io/en/latest/?badge=latest\n   :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/pyrh?style=plastic\n   :target: https://pypi.org/project/pyrh/\n   :alt: PyPI Version\n\n.. image:: https://img.shields.io/pypi/dm/pyrh?color=blue\u0026style=plastic\n   :target: https://pypi.org/project/pyrh/\n   :alt: PyPI - Downloads\n\n.. image:: https://img.shields.io/github/license/robinhood-unofficial/Robinhood\n   :target: https://github.com/robinhood-unofficial/pyrh/blob/master/LICENSE\n   :alt: License\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg\n   :target: https://github.com/psf/black\n   :alt: Code Style\n\n.. image:: https://img.shields.io/github/labels/robinhood-unofficial/pyrh/help%20wanted\n   :target: https://github.com/robinhood-unofficial/pyrh/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22\n   :alt: Help Wanted\n\nPython Framework to make trades with Unofficial Robinhood API. Supports Python 3.8.1+\n\n*Please note this project is stable and in maintenance mode but is happy to accept contributions*\n\nDocumentation: https://pyrh.readthedocs.io/en/latest/\n\nQuick start\n***********\n\n.. code-block:: python\n\n   from pyrh import Robinhood\n\n   rh = Robinhood(username=\"YOUR_EMAIL\", password=\"YOUR_PASSWORD\")\n   rh.login()\n   rh.print_quote(\"AAPL\")\n\nHow To Install:\n***************\n\n.. code-block::\n\n   pip install pyrh\n\nRunning example.ipynb_\n**********************\n\n.. _example.ipynb: https://github.com/robinhood-unofficial/pyrh/blob/master/notebooks/example.ipynb\n\nClone the repository and install jupyter capabilities.\n\n.. code-block::\n\n   $ git clone https://github.com/robinhood-unofficial/pyrh.git\n   $ cd pyrh\n   $ python --version # python 3.3+ for venv functionality\n   Python 3.8.1\n   $ python -m venv pyrh_env\n   $ source pyrh_env/bin/activate\n   (pyrh_env) $ pip install .[notebook]\n   (pyrh_env) $ cp .env.sample .env # update the values in here\n   (pyrh_env) $ jupyter notebook notebooks/example.ipynb\n\nNow just run the files in the example.\n\nRelated\n*******\n\n* `robinhood-ruby \u003chttps://github.com/rememberlenny/robinhood-ruby\u003e`_ - RubyGem for interacting with Robinhood API\n* `robinhood-node \u003chttps://github.com/aurbano/robinhood-node\u003e`_ - NodeJS module to make trades with Robinhood Private API\n* See the original `blog post \u003chttps://medium.com/@rohanpai25/reversing-robinhood-free-accessible-automated-stock-trading-f40fba1e7d8b\u003e`_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinhood-unofficial%2Fpyrh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobinhood-unofficial%2Fpyrh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinhood-unofficial%2Fpyrh/lists"}