Python Cookie 读取和保存方法
作者:薛定谔的DBA 时间:2021-01-21 15:57:51
如下所示:
#保存 cookie 到变量
import urllib.request
import http.cookiejar
cookie = http.cookiejar.CookieJar()
handler = urllib.request.HTTPCookieProcessor(cookie)
opener = urllib.request.build_opener(handler)
response = opener.open('http://flights.ctrip.com/')
for item in cookie:
print('%s = %s' % (item.name,item.value))
#保存 cookie 到文件
import urllib.request
import http.cookiejar
cookie_file = 'E:/mypy/cookie.txt'
cookie = http.cookiejar.MozillaCookieJar(cookie_file)
handler = urllib.request.HTTPCookieProcessor(cookie)
opener = urllib.request.build_opener(handler)
#response = opener.open('http://flights.ctrip.com/')
request = urllib.request.Request('http://flights.ctrip.com/',headers={"Connection": "keep-alive"})
response = opener.open(request)
cookie.save(ignore_discard=True, ignore_expires=True)
for item in cookie:
print('%s = %s' % (item.name,item.value))
#从文件中读取 cookie 访问
import urllib.request
import http.cookiejar
cookie_file = 'E:/mypy/cookie.txt'
cookie = http.cookiejar.MozillaCookieJar()
cookie.load(cookie_file, ignore_discard=True, ignore_expires=True)
handler = urllib.request.HTTPCookieProcessor(cookie)
opener = urllib.request.build_opener(handler)
request = urllib.request.Request('http://flights.ctrip.com/')
html = opener.open(request).read().decode('gbk')
print(html)
来源:https://blog.csdn.net/kk185800961/article/details/80644479
标签:Python,Cookie,读取,保存
0
投稿
猜你喜欢
使用Python编写类UNIX系统的命令行工具的教程
2023-08-24 05:03:02
交互设计实用指南系列(12)—避免出错
2010-04-12 13:02:00
深入浅析同源策略和跨域访问
2024-04-28 09:49:02
vue axios请求拦截实例代码
2024-05-13 09:14:17
keras topN显示,自编写代码案例
2021-03-19 03:15:13
对numpy下的轴交换transpose和swapaxes的示例解读
2022-09-11 10:30:51
ubuntu下设置mysql自动备份的例子
2024-01-21 18:09:08
python 字典常用方法超详细梳理总结
2023-06-29 05:48:40
一文详细谈谈GoLang的panic和error
2024-05-13 10:45:15
正确使用字体和颜色 让网页内容更易阅读
2007-09-13 18:45:00
SQLServer 清理日志的实现
2024-01-27 12:41:21
Python实现EXCEL表格的排序功能示例
2021-05-17 20:50:11
PHP在线打包下载功能示例
2024-06-05 09:40:17
python调用cmd命令行制作刷博器
2023-07-26 15:18:35
使用Python测试Ping主机IP和某端口是否开放的实例
2022-01-07 13:14:47
一文教会你在sqlserver中创建表
2024-01-17 11:42:57
非常酷炫的Bootstrap图片轮播动画
2024-04-23 09:16:34
javascript函数声明和函数表达式区别分析
2024-04-23 09:09:09
Linux mysql-5.6如何实现重置root密码
2024-01-27 16:48:29
vue-router懒加载速度缓慢问题及解决方法
2024-04-27 16:07:23