vote up 1 vote down star

This is a soup from a WordPress post detail page:

content = soup.body.find('div', id=re.compile('post'))
title = content.h2.extract()
item['title'] = unicode(title.string)
item['content'] = u''.join(map(unicode, content.contents))

I want to omit the enclosing div tag when assigning item['content']. Is there any way to render all the child tags of a tag in unicode? Something like:

item['content'] = content.contents.__unicode__()

that will give me a single unicode string instead of a list.

flag

2 Answers

vote up 0 vote down check

Best method I can come up with:

unicode(''.join(content.contents))
link|flag
vote up 3 vote down

Have you tried:

unicode(content)

It converts content's markup to a single Unicode string.

Edit: If you don't want the enclosing tag, try:

content.renderContents()
link|flag
Yes, but I want to omit the enclosing tag. Outer DIV in this case. – muhuk May 9 at 13:09
well, renderContents() return a str and not a unicode. I would like to avoid unnecessary encoding & decoding. – muhuk May 9 at 15:24
1  
I checked the docs and the source code, but I couldn't find a method that returns the contents as a single Unicode object. renderContents() returns a string encoded in UTF-8. So converting the result of renderContents() to a Unicode object is the best approach I can find. – Ayman Hourieh May 9 at 15:49
Yes, unicode/renderContents combo certainly beats my map/unicode combo. – muhuk May 9 at 15:56

Your Answer

Get an OpenID
or

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