URI percent encode/decode written in C with Python bindings.
Lots of inspiration from libevent, libcurl, and a very nice german named Jochen.
python setup.py install
>>>import cparseuri
>>>cparseuri.encode("Hello World")
Hello%20World
>>>cparseuri.decode("Hello%20World")
Hello World
nosetests