I have been using pylast.py to retrieve various types of information about artists and events from Last.fm.
However, pylast doesn't have any functions to retrieve venue information from the event. In particular, if you look at the XML for event.getInfo, I want to retireve the location of the venue:
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>
Now, pylast has a method called get_venue under the event object, but it doesn't reuturn any of the location data shown above...
Is there any way to get the location data through pylast?