The parameters of a post, put request take two forms
One way is to splice the parameters into the url corresponding to postman
The second is to put the parameters in the body corresponding to postman
In the Python requests library
Generally in the information will be introduced post, put the parameters of the request with data In this case the parameters will be placed in the body
But some interface parameters can't be obtained by passing them in through the body, only the parameters in the URL, so we need to use params to pass in parameters, similar to the params in a get request.
(url=url, params=data, verify=False, timeout=60)
Use fiddler to grab the packet to see that the parameters will be directly in the URL
The above this talk about python requests put, post request parameters is all I have shared with you, I hope to give you a reference, and I hope you support me more.