http = httplib2.Http()# get cookie_value hereheaders = {'cookie':cookie_value}response, content = http.request("http://www.theURL.com", 'GET', headers=headers)您可能需要添加其他标头参数以指定其他HTTP请求参数。

http = httplib2.Http()# get cookie_value hereheaders = {'cookie':cookie_value}response, content = http.request("http://www.theURL.com", 'GET', headers=headers)您可能需要添加其他标头参数以指定其他HTTP请求参数。