I want to send an unencoded query string, with curly braces.
Internally httpx is wrapping the passed url in a httpx.URL object and percent encodes the curly braces and I need to send them unencoded. I tried passing the query string as the params field which still ended up encoded. I also tried setting the query attribute of the URL (url._uri_reference.query) but that leads to an error because the attribute is not accessible. Is there any way to get the httpx library to either not encode the URL or to use custom encoding?