We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example code in the README's Quick Start:
from pyrh import Robinhood rh = Robinhood() rh.login(username="YOUR_EMAIL", password="YOUR_PASSWORD") rh.print_quote("AAPL")
returns a TypeError:
Traceback (most recent call last): File "C:\Users\xxx\xxx\xxx\main.py", line 8, in <module> rh = Robinhood() TypeError: SessionManager.__init__() missing 2 required positional arguments: 'username' and 'password'
is corrected as:
from pyrh import Robinhood rh = Robinhood(username="YOUR_EMAIL", password="YOUR_PASSWORD") rh.login() rh.print_quote("AAPL")
Will submit a pull request with the update.
The text was updated successfully, but these errors were encountered:
Fixes #301 - Update Quick Start example code (#302)
8ca1572
Co-authored-by: Adithya Balaji <adithyabsk@gmail.com>
Successfully merging a pull request may close this issue.
Description
The example code in the README's Quick Start:
returns a TypeError:
is corrected as:
Will submit a pull request with the update.
The text was updated successfully, but these errors were encountered: