Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Split solution solution in Clear category for Cookies by khudr
def get_cookie(cookie, name):
return '='.join([s for s in cookie.split(';') if name in s][0].split('=')[1:])
March 21, 2024