python3使用urllib获取set-cookies

Posted 一起来学python

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3使用urllib获取set-cookies相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python  
# encoding: utf-8  
import urllib.request
from collections import defaultdict
response=urllib.request.urlopen("https://twitter.com/login")
headerstr=response.getheaders()
d = defaultdict(list)
for k, v in headerstr:
    if "set-cookie" in k:
        d[k].append(v)
print(d.items())

  上面只是为了做一个 列表 元组转字典的练习,下面才是开始

#!/usr/bin/env python  
# encoding: utf-8  
import urllib.request
from collections import defaultdict
response=urllib.request.urlopen("https://twitter.com/login")
headerstr=response.getheader("set-cookie")
print(headerstr)

  

以上是关于python3使用urllib获取set-cookies的主要内容,如果未能解决你的问题,请参考以下文章

python3 urllib.parse 常用函数

Python3中urllib详细使用方法(header,代理,超时,认证,异常处理)

Python3中urllib详细使用方法(header,代理,超时,认证,异常处理) 转载

Python3爬虫获取

Python3之urllib模块

Python3之urllib模块