[Django]-Posting complex data dictionary with request python

0👍

Convert each dict value to string (from @falsetru comment, edited to match brackets):

request.post(url, data={key: str(value) for key, value in info.items()})

Leave a comment