Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re solution in Speedy category for Cookies by _Chico_
import re
def get_cookie(cookie, name):
pattern = r"([\w+\s\.,-:=]*)"
return re.findall(rf"{name}={pattern}", cookie)[0]
May 13, 2021
Comments: