A brief python library to handler API authentication with Robinhood.
# input username and password. Or, alternatively, pull from a config file,
# see https://github.com/westonplatter/fast_arrow_auth/blob/master/examples/auth_generated_device_token.py
username = "my_username"
password = "my_device"
client = Client(username=username, password=password)
result = client.authenticate()
user = User.fetch(client)
print("Username = {}".format(user["username"]))
Install the package from pypi,
pip install fast_arrow_auth
fast_arrow_auth
is focused only on authenticating with Robinhood's API.
It's focused on these discrete operations,
- authenticate via username/password or username/password/mfa
- write auth_token, etc to file for API clients to use
Install pipenv, and then run,
pipenv install --dev
Run the test suite via,
make test
Run the test suite against a specific python version,
pipenv run tox -e py36
Adding so I don't forget the next time I release a version,
python setup.py sdist bdist_wheel
twine upload dist/*
Add projects here.