vote up 1 vote down star

I have a html text like this:

<xml ... >

and I want to convert it to something readable:

<xml ...>

Any easy (and fast) way to do it in Python?

flag

I think the question is a duplicate of this: stackoverflow.com/questions/57708/… – Fred Larson Apr 8 at 14:37

2 Answers

vote up 3 vote down check

http://docs.python.org/library/htmlparser.html

>>> import HTMLParser
>>> pars = HTMLParser.HTMLParser()
>>> pars.unescape('&copy; &euro;')
u'\xa9 \u20ac'
>>> print _
© €
link|flag
-1 because: "Deprecated since version 2.6" – webjunkie Apr 8 at 15:07
webjunkie: corrected the link. – vartec Apr 8 at 15:11
unescape is just an internal function of HTMLParser (and it's not documented in your link). however I could use the implementation. 10x a lot – Alexandru Apr 8 at 15:54
@brtzsnr: true, that it's undocumented. Don't think that it's internal though, after all name is unescape not _unescape or __unescape. – vartec Apr 8 at 16:01
vote up 1 vote down

There is a function here that does it, as linked from the post Fred pointed out. Copied here to make things easier.

Credit to Fred Larson for linking to the other question on SO. Credit to dF for posting the link.

link|flag

Your Answer

Get an OpenID
or

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