Is there a way to use the python Requests module to urlencode a string without sending an actual request?
This can be done with urllib as seen here:
>>> urllib.quote_plus('string_of_characters_like_these:$#@=?%^Q^$')
'string_of_characters_like_these%3A%24%23%40%3D%3F%25%5EQ%5E%24'
I couldn't find any Requests documentation that shows how to achieve a comparable result.
Thanks in advance,
Wilhelm