Найти - Пользователи
Полная версия: парсер xml
Начало » Python для новичков » парсер xml
1
bebeka
from xml.dom.minidom import *

f = parseString('''<item>
<title>Моя первая</title>
<pubDate>16.06.2010</pubDate>
<guid>test</guid>
<link>http://test.ru</link>
<description>Здесь запись якась</description>
</item>
''')

print f.childNodes[0].childNodes[1].nodeValue
Постоянно выводит: None

Не подскажете почему ?
bebeka
f = parseString('''<item>
<title>test</title>
<pubDate>16.06.2010</pubDate>
<guid>test</guid>
<link>http://test.ru</link>
<description>Здесь запись якась</description>
</item>
''')

print f.childNodes[0].childNodes[1].childNodes[0].nodeValue
Все, спасибо.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB