Python 格式化 Cookie

2022/5/25 5:20:03

本文主要是介绍Python 格式化 Cookie,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

"""
将 各种格式的 cookie 转为 字典格式
"""


def cookie_factory(ck_str=None):
    cookie_dict = {}

    # 从浏览器 抓包 复制过来的 cookie 字符串
    if ck_str:
        for cookie in ck_str.split(';'):
            try:
                k, v = cookie.strip().split('=')
                cookie_dict[k] = v
            except Exception as e:
                print(f'异常格式的cookie:{cookie} \t 异常信息:{e}')

        print(cookie_dict)
        return


if __name__ == '__main__':
    # 从浏览器 抓包 复制过来的 cookie 字符串
    cookie_str = "max-age=31536000; expires=Sun, 26-Feb-23 09:35:18 GMT; domain=.baidu.com; path=/; version=1; comment=bd"
    cookie_factory(ck_str=cookie_str)


这篇关于Python 格式化 Cookie的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程