python - How to see all url's loaded using urllib -
what trying open url so:
req = urllib2.request('http://www.google.com') response = urllib2.urlopen(req)
but want able see every background url loaded before getting http://www.google.com (like js files , images). or better if capture ones text in url.
Comments
Post a Comment