| |
comp.lang.python |
Thanks you Matimus. On 6/5/07, Matimus <mccre...@gmail.com> wrote: > > If I'm not mistaken, in python, there's no standard library to convert > > htmlentitydefs provides maps that helps this conversion, > > To me this seemed odd because python is known as > > So my questions are > > Thank you in advance. > I think this is the standard idiom: > >>> import xml.sax.saxutils as saxutils > Notice there is an optional parameter (a dict) that can be used to > Matt
That's exactly what I'm looking for!
Easy, clean and customizable.
I love python :)
> > Hi list.
> > html entities, like & or > into their applicable characters.
> > but it's not a function so you have to write your own function
> > make use of htmlentitydefs, probably using regex or something.
> > 'Batteries Included' language.
> > 1. Why doesn't python have/need entity encoding/decoding?
> > 2. Is there any idiom to do entity encode/decode in python?
> >>> saxutils.escape("&")
> '&'
> >>> saxutils.unescape(">")
> '>'
> >>> saxutils.unescape("A bunch of text with entities: & > <")
> 'A bunch of text with entities: & > <'
> define additional entities as well.