| python Programming Glossary: data.encodeWhat's the easiest way to escape HTML in Python? http://stackoverflow.com/questions/1061697/whats-the-easiest-way-to-escape-html-in-python  that uses a different encoding like Craig says just use data.encode 'ascii' 'xmlcharrefreplace' Don't forget to decode data to unicode.. 
 Fastest way to convert a dict's keys & values from `unicode` to `str`? http://stackoverflow.com/questions/1254454/fastest-way-to-convert-a-dicts-keys-values-from-unicode-to-str  You're happy to convert using the default encoding use data.encode 'utf 8' rather than str data if you need an explicit encoding.. 
 Unicode Encoding Errors Python - Parsing XML can't encode a character (Star) http://stackoverflow.com/questions/16026594/unicode-encoding-errors-python-parsing-xml-cant-encode-a-character-star  same issue unicode_data data.decode 'utf 8' data unicode_data.encode 'ascii' 'ignore'  python unicode xml parsing   share improve.. data response.read #closes file response.close #decode data.encode us ascii That is if it is in fact ascii. My point being make.. 
 Returning result of an external script to VBA http://stackoverflow.com/questions/17052005/returning-result-of-an-external-script-to-vba  opener # Set up the data object data urlencode values data data.encode 'utf 8' # Send request to the server and receive response with.. 
 What is the fastest way to parse large XML docs in Python? http://stackoverflow.com/questions/324214/what-is-the-fastest-way-to-parse-large-xml-docs-in-python  def CharacterData self data if data.strip  data data.encode element self.nodeStack 1 element.cdata data def Parse self filename.. 
 How to redirect the url after logging into Facebook? http://stackoverflow.com/questions/5730545/how-to-redirect-the-url-after-logging-into-facebook  function @staticmethod def base64_url_decode data data data.encode u'ascii' data ' ' 4 len data 4 return base64.urlsafe_b64decode.. 
 |