I had tried to fetch data from a website using python-requests using post method. But while am checking the Request payload it's showing as like below:
Content-Type: multipart/form-data; boundary=---------------------------7952717927472
Content-Length: 5372
-----------------------------7952717927472
Content-Disposition: form-data; name="id"
13529
-----------------------------7952717927472
Content-Disposition: form-data; name="num"
-----------------------------7952717927472
Content-Disposition: form-data; name="dowhat"
error
-----------------------------7952717927472
Content-Disposition: form-data; name="coupoun"
$ 2.00
-----------------------------7952717927472
I don't understand the format of the request payload and how this payload has to be passed along with requests.
response=requests.post(url, data = data)