Measuring Webpage Loadtime using Python -
i've been trying measure webpage loadtime using python.
i've tried using requests module, urllib, etc. code i've used shown below, using google example. import requests import time
start = time.time() gos = requests.get('http://www.google.com') gos.content end = time.time()- start print(end)
this works google not work page trying assess - it's intranet webpage. when print content of problematic page on console, displays
b''
Comments
Post a Comment