ElementTree findall() 返回空列表
我正在尝试编写一个小脚本来与 last.fm API 进行交互。
我有一点使用 ElementTree
的经验,但我之前使用它的方式似乎不起作用,它反而返回一个空列表。
我删除了 API 密钥,因为我不知道它到底应该有多私密,并给出了我在其位置收到的 XML 的示例。
与 API 交互的类:
from xml.etree import ElementTree
import urllib
import urllib2
class Last_fmWrapper(object):
def __init__(self):
self.last_fm_api_key = '*****************************'
self.api_url = 'http://ws.audioscrobbler.com/2.0/'
def get_now_playing(self, last_fm_user, method):
self.last_fm_user = last_fm_user
self.method = method
parameters = {'user':self.last_fm_user, 'api_key':self.last_fm_api_key, 'method':self.method}
encoded_parameters = urllib.urlencode(parameters)
request = urllib2.Request(self.api_url, encoded_parameters)
response = urllib2.urlopen(request)
api_results = ElementTree.parse(response).findall('track')
# why does api_results == []?
def compare_tasteometer(self):
pass
def register_user(self):
pass
调用 Last_fmWrapper()
的 get_now_playing 方法:
from last_fm_wrapper import Last_fmWrapper
last_fm = Last_fmWrapper()
now_playing = last_fm.get_now_playing('BiriBiriRG', 'user.getRecentTracks')
if now_playing == None:
print 'You not currently playing anything.'
else:
print 'You are now playing {}'.format(now_playing)
我收到的 xml 示例:
<?xml version="1.0" encoding="utf-8"?>
<lfm status="ok">
<recenttracks user="BiriBiriRG" page="1" perPage="10" totalPages="18406" total="184058" >
<track>
<artist mbid="01809552-4f87-45b0-afff-2c6f0730a3be">Elvis Presley</artist>
<name>Thrill Of Your Love</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="c445fa3a-3b24-41d4-b955-b6ca560c6f7a">Love Songs</album>
<url>http://www.last.fm/music/Elvis+Presley/_/Thrill+Of+Your+Love</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/69037914.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/69037914.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/69037914.png</image>
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/69037914.png</image>
<date uts="1328153196">2 Feb 2012, 03:26</date>
</track>
<track>
<artist mbid="efc8a006-d0c6-4a9b-8cb1-91ca770fa2b9">Colbie Caillat</artist>
<name>Oxygen</name>
<streamable>1</streamable>
<mbid></mbid>
<album mbid="2d297b29-a215-42fe-8a8c-dc8b502903b1">Coco</album>
<url>http://www.last.fm/music/Colbie+Caillat/_/Oxygen</url>
<image size="small">http://userserve-ak.last.fm/serve/34s/69229764.png</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/69229764.png</image>
<image size="large">http://userserve-ak.last.fm/serve/126/69229764.png</image>
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/69229764.png</image>
<date uts="1328152962">2 Feb 2012, 03:22</date>
</track>
<track>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是
findall
仅在给定标签名称的情况下搜索元素的直接后代。您需要为其提供一个 XPath 表达式,该表达式将在其下方的树中的任何位置查找track
。因此,以下内容应该有效,例如:The problem is that
findall
only searches the immediate descendants of an element if it is given a tag name. You need to give it an XPath expression that will findtrack
anywhere in the tree beneath it. So the following should work, for example: