tags:

views:

91

answers:

2

curl_unescape doesnt seem to be in pycurl, what do i use instead?

+4  A: 

Have you tried urllib.quote?

import urllib
print urllib.quote("some url")

some%20url

here's the documentation

kender
+2  A: 

curl_ unescape is an obsolete function. Use curl_ easy_unescape instead.

simplyharsh