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.