エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
urlfetch で rss.xml より img を検出
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
urlfetch で rss.xml より img を検出
http://localhost:8080/_ah/admin/interactive より実行 from google.appengine.api import urlfetch f... http://localhost:8080/_ah/admin/interactive より実行 from google.appengine.api import urlfetch from elementtree.ElementTree import * import re rss1 = 'http://movies.go.com/xml/rss/intheaters.xml' url = rss1 rss = urlfetch.Fetch(url) print rss tree = ElementTree(fromstring(rss.content)) img_re = re.compile('<img src="([a-zA-Z0-9/:._\-]+)" ') for item in tree.findall('.//item'): title = item.find('title