-
-
Save sovietspy2/5b668739197e6fb6e21bffb638f76408 to your computer and use it in GitHub Desktop.
A simple Python script that queries the Bitstamp API every 5 seconds and prints the last USD/Bitcoin price to the shell. Requires the Python Requests library.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests, json | |
from time import sleep | |
def getBitcoinPrice(): | |
URL = 'https://www.bitstamp.net/api/ticker/' | |
try: | |
r = requests.get(URL) | |
priceFloat = float(json.loads(r.text)['last']) | |
return priceFloat | |
except requests.ConnectionError: | |
print "Error querying Bitstamp API" | |
while True: | |
print "Bitstamp last price: $" + str(getBitcoinPrice()) + "/BTC" | |
sleep(5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment