0

I am sending a get request through the requests module. The value of the parameter goes to "+" instead of "space". What can I do, help

a = requests.get(url, params={'list': 'word word'})

The server receives the following request.

key: list, value: word+word
  • `+` is an encoded space in URL encoding, but it might not be handled correctly on the receiver's site. – Klaus D. Mar 02 '22 at 06:13

0 Answers0