If I do
url = "http://example.com?p=" + urllib.quote(query)
- It doesn’t encode
/
to%2F
(breaks OAuth normalization) - It doesn’t handle Unicode (it throws an exception)
Is there a better library?
If I do
url = "http://example.com?p=" + urllib.quote(query)
/
to %2F
(breaks OAuth normalization)Is there a better library?