Prevent URL Encoding - Python Requests Library15 Jul 2013 Use json.dumps in the data parameter.for example:r = s.post(url, data=json.dumps(payload), allow_redirects=False, cookies=cookieRequest.cookies)