从Python中获取XML网页的值

时间:2014-03-29 18:53:01

标签: python xml python-3.4

有没有让Python从网页获取XML值?

所以我有:

from urllib.request import urlopen
import xml.etree.ElementTree as ET

title = str(input("Enter movie name: "))


url = urlopen("http://www.omdbapi.com/?s=%s&r=XML" % title.replace(' ', "%20"))

无论如何从该网页获取值?

就像title="True Grit" year="2010"

中有<movie>一样

如何从标记影片中获取该网页的值标题和年份?

0 个答案:

没有答案