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");
p.add("results", results);
p.add("sort", "tempo-desc");
List<Song> songs = en.searchSongs(p);
for (Song song : songs) {
System.out.printf("%.0f %s %s\n", song.getTempo(), song
.getArtistName(), song.getTitle());