Advertisement
Guest User

Untitled

a guest
Jul 29th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. import urllib.request
  2.  
  3. while (1):
  4.     response = urllib.request.urlopen('http://www.horacerta.com.br/')
  5.     html = response.read()
  6.     print(html)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement