A portfolio exporter utility for Robinhood and any other brokers I may be interested in the future.
python main.py
Launch the server.
FLASK_APP=Exporter_Server.py flask run
Export credentials as env variables.
export rh_user="your username/email"
export rh_pass="your pass"
export rh_code="your 2 factor code if you have one"
Send an export request.
curl -d "{\"rh_user\" : \"${rh_user}\", \"rh_pass\": \"${rh_pass}\", \"code\" : \"${rh_code}\" }" \
-H "Content-Type: application/json" \
-X POST http://127.0.0.1:5000/
-
[Review] Setup end-of-day ticker price caching.
-
Export Robinhood portfolio to csv.
-
Export Robinhood portfolio to json.
-
Create a Robinhood Exporter microservice.
-
Create a GUI for post-processing fields before they are exported.