event.getInfo {RLastFM}R Documentation

API call to event.getInfo

Description

API call to event.getInfo

Usage

event.getInfo(event, key = lastkey, parse = TRUE)

Arguments

event Event ID. Can be found using artist.getEvents. See example.
key API key, defaults to global variable lastkey
parse Parse the returned XML into a list?

Value

If parse = TRUE,

event Event name
headliner Event headliner. One artist.
venue Venue name
street Venue street address
city Venue city
postalcode Venue postal code
country Venue country
lat Venue latitude
long Venue longitude
artists If more than one artist is playing at event, a list of all artists.

If parse = FALSE, a object of type "XMLInternalDocument" and "XMLAbstractDocument"

Note

API is sensitive to spelling.

Author(s)

Greg Hirson <ghirson@ucdavis.edu>

References

http://www.last.fm/api/show?service=292

Examples

res = event.getInfo(artist.getEvents("Wilco")$id[1])
#with(res, paste(c(venue, street, city, postalcode), collapse = ", "))

[Package RLastFM version 0.1-4 Index]