Label label = discogs.getLabel("Warp Records");
System.out.println(label.getProfile());
// this fails on extended characters.
artist = discogs.getArtist("Stéphane Pompougnac");
System.out.println(artist.getProfile());
Search s = discogs.search(SEARCH_TYPE_ARTIST, "Stéphane Pompougnac");
System.out.println(s);
Release r = discogs.getRelease("507569");
System.out.println("Track name with UTF-8 char: " + r.getTracks().get(1).getTitle());
// System.out.println(r);