Advertisement
Guest User

Untitled

a guest
Apr 25th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import urllib, time
  2.  
  3. print urllib.urlopen('http://google.com').info()
  4. time.sleep(5)
  5. print urllib.urlopen('http://google.com').info()
  6.  
  7. OUTPUT
  8.  
  9. Date: Thu, 25 Apr 2013 08:51:09 GMT
  10. ...
  11.  
  12. Date: Thu, 25 Apr 2013 08:51:14 GMT
  13. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement