Cha*_*aco 5 python cookies http
对 Same-Site cookie 的支持已登陆 Firefox 60,但从 Python 3.6 开始,标准库 cookie 模块不支持该SameSite属性。
SameSite2018 年 4 月 7 日在Pull Request #6413 中添加了对该属性的支持。
可以对旧版本进行猴子补丁以支持该属性:
try:
from http.cookies import Morsel
except ImportError:
from Cookie import Morsel
Morsel._reserved[str('samesite')] = str('SameSite')
Run Code Online (Sandbox Code Playgroud)
或使用六个:
from six.moves.http_cookies import Morsel
Morsel._reserved[str('samesite')] = str('SameSite')
Run Code Online (Sandbox Code Playgroud)