[Answered ]-Why Is My Django Post Request Sending Incorrectly Parsed My List of Dictionaries?

1👍

I believe you may need to use dumps rather than loads when sending the request:

x = requests.post(url, json.dumps(parsed))

Alternatively if you’re using the python requests library you can send json as a dict as below:

response = requests.post(url=url, json=parsed)

Leave a comment