本文实例讲述了Python基于PycURL自动处理cookie的方法。分享给大家供大家参考。具体如下:
import pycurl
import StringIO
url = "http://www.google.com/"
crl = pycurl.Curl()
crl.setopt(pycurl.VERBOSE,1)
crl.setopt(pycurl.FOLLOWLOCATION, 1)
crl.setopt(pycurl.MAXREDIRS, 5)
crl.fp = StringIO.StringIO()
crl.setopt(pycurl.URL, url)
crl.setopt(crl.WRITEFUNCTION, crl.fp.write)
# Option -b/--cookie <name=string/file> Cookie string or file to read cookies from
# Note: must be a string, not a file object.
crl.setopt(pycurl.COOKIEFILE, "cookie_file_name")
# Option -c/--cookie-jar <file> Write cookies to this file after operation
# Note: must be a string, not a file object.
crl.setopt(pycurl.COOKIEJAR, "cookie_file_name")
crl.perform()
print crl.fp.getvalue()
希望本文所述对大家的Python程序设计有所帮助。
您可能感兴趣的文章:python处理cookie详解Python模仿POST提交HTTP数据及使用Cookie值的方法使用Python中的cookielib模拟登录网站python使用cookielib库示例分享python使用urllib2实现发送带cookie的请求Python爬虫利用cookie实现模拟登陆实例详解python模拟登录并且保持cookie的方法详解详解Python的Django框架中的Cookie相关处理python使用cookie库操保存cookie详解详解Python中的Cookie模块使用python cookielib 登录人人网的实现代码玩转python爬虫之cookie使用方法python3实现读取chrome浏览器cookie利用selenium 3.7和python3添加cookie模拟登陆的实现Python中urllib+urllib2+cookielib模块编写爬虫实战在Python中使用cookielib和urllib2配合PyQuery抓取网页信息Python使用cookielib模块操作cookie的实例教程Python get获取页面cookie代码实例