gpt4 book ai didi

python - 在 Python 中打开带有自定义 cookie 的网页

转载 作者:太空狗 更新时间:2023-10-30 00:58:04 25 4
gpt4 key购买 nike

比如我有cookie

my_cookies = {'name': 'Albert', 'uid': '654897897564'}

我想打开页面 http://website.com

opener = urllib2.build_opener(urllib2.HTTPCookieProcessor())
opener.addheaders.append(('User-agent', 'Mozilla/5.0 (compatible)'))
opener.open('http://website.com').read()

我如何使用预定义的 cookie 执行此操作?

最佳答案

您只需要再执行几个步骤:

import urllib2
import cookielib

cp = urllib2.HTTPCookieProcessor()
cj = cp.cookiejar

# see cookielib.Cookie documentation for options description
cj.set_cookie(cookielib.Cookie(0, 'a_cookie', 'a_value',
'80', False, 'domain', True, False, '/path',
True, False, None, False, None, None, None))
opener = urllib2.build_opener(urllib2.HTTPHandler(),
cp)
opener.addheaders.append(('User-agent', 'Mozilla/5.0 (compatible)'))
opener.open('http://website.com').read()

关于python - 在 Python 中打开带有自定义 cookie 的网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1692396/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com