But when I am using urllib, fiddler is able to capture all the calls.
When I am using httplib2,
import httplib2
import json
h = httplib2.Http(".cache")
serviceurl = 'http://google.com'
response, content = h.request(serviceurl)
When I am using urllib,
import json
import urllib.request
import requests
url = 'http://google.com'
uh = urllib.request.urlopen(url,)
data=uh.read()