If I do
url = "http://example.com?p=" + urllib.quote(query)
- It doens't encode "/" to "%2F" (breaks OAuth normalization)
- It doens't handle unicode (it throw an exception)
is there a better library?
|
feedback
|
|
From the docs:
That means passing '' for safe will solve your first issue:
About the second issue, there is a bug report about it here. Apparently it was fixed in python 3. You can workaround it by encoding as utf8 like this:
By the way have a look at urlencode | ||||
feedback
|