get url response time

 get url response time

  
  
  
  
  1. #!/usr/bin/env python 
  2. # coding=utf8 
  3. # Filename: urltime.py 
  4. # Last modified: 2013-04-18 11:22 
  5. # Author: itnihao 
  6. # Mail: [email protected] 
  7. # Description: 
  8.  
  9. import time,urllib2, sys, re 
  10.  
  11. #URL =  sys.argv[1] 
  12. URL  =  'http://www.baidu.com’ 
  13.  
  14. ''''' 
  15.  获取html网页中的url 
  16. ''' 
  17. s=urllib2.urlopen(URL).read() 
  18. ss=s.replace(" ", "") 
  19. urls=re.findall('"[a-z]+://[a-zA-Z0-9]+.*?"', ss, re.I) 
  20.  
  21. ''''' 
  22. 访问各url,并打印出访问所需要的时间 
  23. ''' 
  24. for i in urls: 
  25.      START_TIME  =  time.time() 
  26.      url =  i.replace('"',  ''
  27.      try
  28.          urllib2.urlopen(url) 
  29.          END_TIME =  time.time() 
  30.          TIME  =  END_TIME - START_TIME 
  31.          print i,TIME 
  32.      except
  33.         print i,"url error" 

纯属个人记录,不做过多说明

你可能感兴趣的:(response,url,get,time)