Robinhood
Robinhood copied to clipboard
Added features
Added some more features and methods to Robinhood.py, and adapted example.py to showcase a few of those features.
Also organized the code and added comments to both Robinhood.py and example.py
Updated the README.md to reflect those changes and provide more details
Made the recommended changes
:+1: @dsouzarc looks good, combine changes into one commit and let's merge this!
I have an issue with the use of raw_input which is CLI and Python 2 bias (raw_input removed in Python3). IMO, the API should require a symbol and let a new CLI module handle arguments and/or input.
Also, is there a reason why session, username, password, etc are done as class variables rather than instance variables? The latter seems much more reasonable because if you create more than one instance of this class, things will get weird :)