Python API wrapper for CryptoCompare making retrieving data from that service simple and clean. Official documentation for endpoints is available here https://min-api.cryptocompare.com/
from cryptocompare import CryptoCompare
cc = CryptoCompare()
price = cc.get_price('BTC', 'USD')['BTC']['USD']
print("1 BTC is worth {} USD".format(price))