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

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -