Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
slice solution in Clear category for Cookies by MrPod
def get_cookie(cookie, name):
a = cookie.find(name)
return cookie[a + len(name) + 1:cookie[a:].find(';') if cookie[a:].find(';') != -1 else None]
Aug. 18, 2018