我一直在使用 pylast.py 从 Last.fm 检索有关艺术家和活动的各种类型的信息。
但是,pylast 不具备从事件中检索场地信息的任何功能。特别是,如果您查看 event.getInfo 的 XML,我想检索场地的位置:
http://www.last.fm/api/show/event.getInfo
<venue>
<id>8783057</id>
<name>Ryman Auditorium</name>
<location>
<city>Nashville</city>
<country>United States</country>
<street>116 Fifth Avenue North</street>
<postalcode>37219</postalcode>
<geo:point>
<geo:lat>36.16148</geo:lat>
<geo:long>-86.777959</geo:long>
</geo:point>
</location>
<url>http://www.last.fm/venue/8783057</url>
</venue>
现在,pylast 在事件对象下有一个名为 get_venue 的方法,但它不会返回上面显示的任何位置数据......
有没有办法通过pylast获取位置数据?