Skip to content

Instantly share code, notes, and snippets.

@samescolas
Created March 9, 2017 19:01
Show Gist options
  • Save samescolas/7cbc1a26d00a325e67de4fa566971dc1 to your computer and use it in GitHub Desktop.
Save samescolas/7cbc1a26d00a325e67de4fa566971dc1 to your computer and use it in GitHub Desktop.
###
import sys, requests
requests.get("https://api.robinhood.com/quotes/" + sys.argv[1] + "/")
###
import sys, json
print round(float(json.loads(sys.argv[1])[sys.argv[2]]), 2)
print "%.2f" % 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment