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