PycURL 自动处理cookie,PycURL处理cookie,[Python]代码im
PycURL 自动处理cookie,PycURL处理cookie,[Python]代码im
[Python]代码
import pycurlimport StringIOurl = "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 使用xlrd读取Excel格式文件,pythonxlrd,[Python]代码i
- Python Daemon(守护进程),pythondaemon,[Python]代码de
- Python os.path.walk遍历文件,搜索文件里面的内容,pytho
- Python decorator,pythondecorator,[Python]代码转载
- Python 去除代码前行号,python去除代码前行,[Python]代码
- Python读取天气预报,python天气预报,import urlli
- 根据字典翻译字符串,字典翻译字符串,import strin
- 百度音乐新歌榜100曲自动下载,并改名,python2.7,新歌
- Python 实现多线程网页下载器,python多线程,# -*- coding
- Python 创建xml,python创建xml,[Python]代码fr
评论关闭