Hello I want to make a get request and have a URL that contains
url = "http://example.com/tags/feature%252Fexample/site/"
however if I do a get it changes the URL to a slash and yields an error.
requests.get(url)
equests.exceptions.HTTPError: 400 Client Error: Bad Request for url:
http://example.com/tags/feature/example/site/
Is there a way to keep the url how it is without the /
?
I found this question but it is the other way around..
How to prevent python requests from percent encoding my URLs? and was not able to find an option in the documentation.
Thank you.