Support for Same-Site cookies has landed in Firefox 60,但从Python 3.6开始,标准库cookie模块不支持.gitignore
属性。
答案 0 :(得分:1)
2018年4月7日在Pull Request #6413添加了对SameSite
属性的支持。
可以对旧版本进行修补以支持该属性:
SameSite
或使用six:
try:
from http.cookies import Morsel
except ImportError:
from Cookie import Morsel
Morsel._reserved[str('samesite')] = str('SameSite')