curl_unescape doesnt seem to be in pycurl, what do i use instead?
Have you tried urllib.quote?
urllib.quote
import urllib print urllib.quote("some url") some%20url
here's the documentation