>>> from lxml.etree import HTML, tostring
>>> tostring(HTML('<fb:like>'))
'<html><body><like/></body></html>'

Note how the tag turns from <fb:like> to simply <like>.

This makes processing pages that incorporate XFBML with lxml much harder. (Same thing happens to <g:plusone></g:plusone>)

Any help is appreciated.

link|improve this question
1  
HTML doesn't have namespaces. Welcome to the consequences of expando-elements. If it is XHTML + FBML (instead of HTML + FBML) then you could use an XML parser. – Quentin Jul 6 '11 at 15:21
I would have, if it was XML. The point of resilient HTML parsers is that they get the job done. While I don't like these magic tag names either, I think it's reasonable to expect from lxml to preserve them. I'll try to talk to the maintainers to see if this can be accommodated. – Sergey Schetinin Jul 6 '11 at 16:09
feedback

1 Answer

Try adding the namespace prefix definitions that are missing. lxml will avoid the namespaces otherwise, supposedly to make it easier for you.

Most likely the sites you try to parse will not contain these namespace definitions, so you should add them.

Something like this: xmlns:adlcp="http://xxx/yy/zzz"

link|improve this answer
Doesn't work unfortunately: pastebin.com/6zX3GSH2 – Sergey Schetinin Jul 6 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

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