Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Cookies by StanislauL
import re
def get_cookie(cookie, name):
return re.search('(?<=%s=)[^;]*' %name,cookie).group()
Nov. 16, 2017
Comments: