I am trying to convert the following url
http://www.website.com/search/si/1/doctors/Vancouver, BC
to
http://www.website.com/search/si/1/doctors/Vancouver%2C%20BC
I tried
urllib.quote('http://www.website.com/search/si/1/doctors/Vancouver, BC', '')
and it resulted in replacing everything with a percentage sign.
What's the proper way to do this?