import requests
s = requests.Session()
s.get("/addtocart", data=data, headers=headers) #This is a valid requests and the text it returns says its been added to the cart.
r = s.get('/cart') #But when I print the text here, it says there's no items in my cart
print(r.text)