Tagged Questions
2
votes
1answer
1k views
How do I post non-ASCII characters using httplib when content-type is “application/xml”
I've implemented a Pivotal Tracker API module in Python 2.7. The Pivotal Tracker API expects POST data to be an XML document and "application/xml" to be the content type.
My code uses urlib/httplib ...