File size: 263 Bytes
7c908ce
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8

cookies = {}
with open('cookies.txt') as f:
    cookies = f.read().split("; ")
    # Everything after the first "=" is the value (there may be multiple =)
    cookies = {cookie.split("=")[0]: "=".join(cookie.split("=")[1:]) for cookie in cookies}

print(cookies)