Skip to content

Instantly share code, notes, and snippets.

@tjnel
Created March 7, 2016 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjnel/7aea8ed3e81035d0aa57 to your computer and use it in GitHub Desktop.
Save tjnel/7aea8ed3e81035d0aa57 to your computer and use it in GitHub Desktop.
import requests
from bs4 import BeautifulSoup
r = requests.get("http://www.coindesk.com/price/")
soup = BeautifulSoup(r.text, "lxml")
latest = soup.find("div", class_='bpi-value bpiUSD').text
print(latest)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment