import json
 
s = session.cookies.get.dict()
 
json_object = json.dumps(s, indent=4)
 
with open("sample.json", "w") as outfile:
    outfile.write(json_object)