別の日の別の質問、すべての投稿で申し訳ありません。昨日、ユーザーの "JF Sebastian" が、LXML のみを使用するのではなく、LXML.HTML を使用するための素晴らしいヒントを教えてくれました。
今日、別のフィードに使用していhttp://feeds.bbc.co.uk/iplayer/search/tv/?q=news
ますが、コンテンツ要素内のいくつかのタグにアクセスできません。
フィード データのサンプルを次に示します。
<entry>
<title type="text">BBC News at Six: 06/03/2013</title>
<id>tag:feeds.bbc.co.uk,2008:PIPS:b01r27mt</id>
<updated>2013-03-07T00:20:38Z</updated>
<content type="html">
<p>
<a href="http://www.bbc.co.uk/iplayer/episode/b01r27mt/BBC_News_at_Six_06_03_2013/">
<img src="http://ichef.bbci.co.uk/programmeimages/episode/b01r27mt_150_84.jpg" alt="BBC News at Six: 06/03/2013" />
</a>
</p>
<p>
National and international news stories from the BBC News team, followed by weather.
</p>
</content>
<category term="News" />
<category term="TV" />
<link rel="alternate" href="http://www.bbc.co.uk/iplayer/episode/b01r27mt/BBC_News_at_Six_06_03_2013/" type="text/html" title="BBC News at Six: 06/03/2013">
<media:content>
<media:thumbnail url="http://ichef.bbci.co.uk/programmeimages/episode/b01r27mt_150_84.jpg" width="150" height="84" />
</media:content>
</link>
<link rel="self" href="http://feeds.bbc.co.uk/iplayer/episode/b01r27mt" type="application/atom+xml" title="06/03/2013" />
<link rel="related" href="http://www.bbc.co.uk/programmes/b007mpkn/microsite" type="text/html" title="BBC News at Six" />
</entry>
content タグ内のタグがテキストであり、正しく解析されていないようです。これが私のコードです:
tree = html.parse("http://feeds.bbc.co.uk/iplayer/search/tv/?q=news")
for show in tree.xpath('//entry'):
select = lambda expr: show.cssselect(expr)[0]
icon_url=select("thumbnail").get('url')
print "icon_url: ", icon_url
name=select('title').text_content()
print "name: ", name
stream=select('id').text_content()
print "stream: ", stream
date=select('updated').text_content()
print "date: ", date
content=select('content').text_content()
print "content: ", content
#links = (re.compile ('\n <p>\n <a href=".+?">\n <img src="(.+?)" alt=".+?" />\n </a>\n </p>\n <p>\n ').findall(content))
#print "links: ", links
#short=links
#print "short: ", short
上記の短い変数にプログラムの説明を含む2番目のpタグを取得したいのですが、lxmlを使用してこのタグを選択できないようで、必要な行を選択する際に正規表現を機能させることができません..
何か案は?