Created
February 9, 2015 13:54
-
-
Save diegorocha/7dbf0f4627006aebcdde to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env python | |
import requests | |
import BeautifulSoup | |
#Faz a requisição | |
req = requests.get('http://pcdsh01.on.br/HoraLegalBrasileira.asp') | |
#Obtem os dados no HTML | |
soup = BeautifulSoup.BeautifulSoup(req.text) | |
hora_legal = soup.find('td', {'bgcolor': '#FFFF00'}).text | |
#Utiliza o dado | |
print 'Hora Legal Brasileira : %s' % (hora_legal) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment