}
public void searchForFastestSongsByArtist(String artist, int results)
throws EchoNestException {
ArtistParams ap = new ArtistParams();
ap.addName(artist);
List<Artist> artists = en.searchArtists(ap);
if (artists.size() > 0) {
Params p = new Params();
p.add("artist_id", artists.get(0).getID());
p.add("bucket", "audio_summary");