Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
3-liner solution in Clear category for Cookies by EdinsonUwU
def get_cookie(cookie, name):
for i in cookie.split('; '):
if i[:i.index('=')] == name: return i[i.index('=')+1:]
Aug. 4, 2021
Comments: