download
raw
679 Bytes
from http import cookies
# For backwards compatibility in Django 2.1.
SimpleCookie = cookies.SimpleCookie
def parse_cookie(cookie):
"""
Return a dictionary parsed from a `Cookie:` header string.
"""
cookiedict = {}
for chunk in cookie.split(";"):
if "=" in chunk:
key, val = chunk.split("=", 1)
else:
# Assume an empty name per
# https://bugzilla.mozilla.org/show_bug.cgi?id=169091
key, val = "", chunk
key, val = key.strip(), val.strip()
if key or val:
# unquote using Python's algorithm.
cookiedict[key] = cookies._unquote(val)
return cookiedict

Xet Storage Details

Size:
679 Bytes
·
Xet hash:
08e86f3cdec69b7f22337db4884c22e77279069920f9c0cc5c002ba58b0a841d

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.