vote up 0 vote down star

Hello,

is there any python module or code that implements the org.apache.commons.lang.StringEscapeUtils.escapeHtml ?

exactly the same as in http://commons.apache.org/lang/api/org/apache/commons/lang/StringEscapeUtils.html#escapeHtml(java.lang.String)

i googled around but could only find the cgi.escape function that doesn't do the same thing.

thanks in advance, sorry for the english :D

flag
found the solution in peterbe.com/plog/html-entity-fixer – Túlio Caraciolo Nov 6 at 16:06

2 Answers

vote up 0 vote down

This is for XML and not for HTML, but it might fit your needs: Escaping XML

>>> from xml.sax.saxutils import escape
>>>
>>> escape("< & >")
'&lt; &amp; &gt;'
link|flag
unfortunately this does not work... the good thing is that i've found something that work in peterbe.com/plog/html-entity-fixer thanks for the help – Túlio Caraciolo Nov 6 at 15:48
vote up 0 vote down check

i've found something that work in peterbe.com/plog/html-entity-fixer thanks for the help

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.