Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
cookie.split.split solution in Clear category for Cookies by flpo
def get_cookie(cookie, name):
return cookie.split(name + '=')[1].split(';')[0]
May 17, 2018
Comments: