Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re.search solution in Clear category for Cookies by flpo
from re import search
def get_cookie(cookie, name):
return search(f'{name}=([^;]+)', cookie).group(1)
May 17, 2018