Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Thank you in advance for paying attention of my question.

When I want to parsing XML document in Python using BeautifulSoup library, I faced some problems.

The xml document that I want to paring is like that.

<item>
<title><![CDATA[Title Sample]]></title>
<link /><![CDATA[http://banhada.kr/?cateCode=09&viewCode=S0941580]]>
<time_start>2011-10-10 09:00:00</time_start>
<time_end>2011-10-17 09:00:00</time_end>
<price_original>35000</price_original>
<price_now>20000</price_now>
</item>

As you can see above, tag is a little strange. In my opinion, that( tag) is not a stand XML form, right? (Well if I am wrong, let me know it.)

Anyway, I have to parse this form since my customer send it like that and they can't change it.

How can I parse this terrible form? Please let me know the best way to solve this problem.

Thank my Guru.

share|improve this question
What have you tried so far? – serk Oct 16 '11 at 17:47

2 Answers

You don't need BeautifulStoneSoup or lxml. Python's included batteries do the job just fine, and there doesn't seem to be anything non-compliant about your XML.

>>> content='''\
... <item>
... <title><![CDATA[Title Sample]]></title>
... <link /><![CDATA[http://banhada.kr/?cateCode=09&viewCode=S0941580]]>
... <time_start>2011-10-10 09:00:00</time_start>
... <time_end>2011-10-17 09:00:00</time_end>
... <price_original>35000</price_original>
... <price_now>20000</price_now>
... </item>'''
>>> import xml.etree.cElementTree as et
>>> foo = et.XML(content)
>>> for e in foo:
...     print e.tag, e.text, repr(e.tail)
...
title Title Sample '\n'
link None 'http://banhada.kr/?cateCode=09&viewCode=S0941580\n'
time_start 2011-10-10 09:00:00 '\n'
time_end 2011-10-17 09:00:00 '\n'
price_original 35000 '\n'
price_now 20000 '\n'
>>>
share|improve this answer
this worked for me on XML that BeautifulSoup couldn't handle! – jsh Feb 19 at 21:48

Use BeautifulStoneSoup to parse XML:

import BeautifulSoup
content='''\
<item>
<title><![CDATA[Title Sample]]></title>
<link /><![CDATA[http://banhada.kr/?cateCode=09&viewCode=S0941580]]>
<time_start>2011-10-10 09:00:00</time_start>
<time_end>2011-10-17 09:00:00</time_end>
<price_original>35000</price_original>
<price_now>20000</price_now>
</item>'''    
soup=BeautifulSoup.BeautifulStoneSoup(content)

title=soup.title
print(title.string)
# Title Sample

link=soup.link.nextSibling
print(link)
# http://banhada.kr/?cateCode=09&viewCode=S0941580

You might also want to consider using lxml for parsing XML. It affords you easy access to XML elements using XPath.

share|improve this answer
Wow. Thank you for your kandness – user513004 Oct 17 '11 at 0:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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