Stop $ being url encoded #2724
Unanswered
SamPetherbridge
asked this question in
Q&A
Replies: 1 comment
-
It won't be escaped if you include it directly in the URL... >>> r = httpx.get("https://github.com/encode/httpx/discussions/2724?q=$")
>>> r.request.url
URL('https://github.com/encode/httpx/discussions/2724?q=$') What's the use-case / requirement? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am currently working with a system that is expecting a $ to be in a url parameter. I have tried a number of approaches however have not had any luck as yet. Is there any way to stop httpx from automatically encoding dollar signs as %24?
Beta Was this translation helpful? Give feedback.
All reactions