firstfm 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +4 -4
  3. data/Gemfile.lock +49 -18
  4. data/VERSION.yml +1 -1
  5. data/firstfm.gemspec +27 -32
  6. data/lib/firstfm.rb +2 -3
  7. data/lib/firstfm/artist.rb +25 -44
  8. data/lib/firstfm/geo.rb +32 -33
  9. data/lib/firstfm/location.rb +8 -8
  10. data/lib/firstfm/track.rb +15 -15
  11. data/lib/firstfm/user.rb +9 -9
  12. data/lib/firstfm/venue.rb +16 -16
  13. data/test/fixtures/artist.json +229 -0
  14. data/test/fixtures/artists.json +890 -0
  15. data/test/fixtures/events.json +173 -0
  16. data/test/fixtures/geo_event.json +98 -0
  17. data/test/fixtures/geo_events.json +845 -0
  18. data/test/fixtures/geo_get_metro_artist_chart.json +77 -0
  19. data/test/fixtures/get_correction.json +14 -0
  20. data/test/fixtures/get_correction_blank.json +1 -0
  21. data/test/fixtures/top_tracks.json +1711 -0
  22. data/test/fixtures/tracks.json +679 -0
  23. data/test/fixtures/user_artists.json +78 -0
  24. data/test/fixtures/venues.json +98 -0
  25. data/test/test_artist.rb +23 -32
  26. data/test/test_geo.rb +75 -75
  27. data/test/test_track.rb +10 -11
  28. data/test/test_user.rb +6 -7
  29. data/test/test_venue.rb +23 -44
  30. metadata +40 -78
  31. data/test/fixtures/artist.xml +0 -112
  32. data/test/fixtures/artists.xml +0 -371
  33. data/test/fixtures/event.xml +0 -54
  34. data/test/fixtures/events.xml +0 -128
  35. data/test/fixtures/geo_event.xml +0 -54
  36. data/test/fixtures/geo_events.xml +0 -109
  37. data/test/fixtures/geo_get_metro_artist_chart.xml +0 -29
  38. data/test/fixtures/get_correction.xml +0 -11
  39. data/test/fixtures/get_correction_blank.xml +0 -5
  40. data/test/fixtures/get_images.xml +0 -913
  41. data/test/fixtures/top_tracks.xml +0 -844
  42. data/test/fixtures/tracks.xml +0 -362
  43. data/test/fixtures/user_artists.xml +0 -29
  44. data/test/fixtures/venue.xml +0 -32
  45. data/test/fixtures/venues.xml +0 -54
@@ -1,22 +1,22 @@
1
1
  module Firstfm
2
-
2
+
3
3
  class Location
4
-
4
+
5
5
  attr_accessor :city, :country, :postalcode, :lat, :long, :street
6
-
6
+
7
7
  def self.init_location_from_hash(hash)
8
8
  return nil unless hash.is_a?(Hash)
9
-
9
+
10
10
  location = Location.new
11
11
  location.city = hash["city"]
12
12
  location.country = hash["country"]
13
13
  location.postalcode = hash["postalcode"]
14
14
  location.street = hash["street"]
15
- location.lat = hash["point"]["lat"] if hash["point"]
16
- location.long = hash["point"]["long"] if hash["point"]
15
+ location.lat = hash["geo:point"]["geo:lat"] if hash["geo:point"]
16
+ location.long = hash["geo:point"]["geo:long"] if hash["geo:point"]
17
17
  location
18
18
  end
19
-
19
+
20
20
  end
21
-
21
+
22
22
  end
data/lib/firstfm/track.rb CHANGED
@@ -1,23 +1,23 @@
1
1
  module Firstfm
2
-
2
+
3
3
  class Track
4
-
4
+
5
5
  attr_accessor :name, :artist, :url, :streamable, :listeners, :images, :mbid, :rank
6
-
6
+
7
7
  include HTTParty
8
8
  base_uri 'ws.audioscrobbler.com'
9
- format :xml
10
-
9
+ format :json
10
+
11
11
  def self.search(track, page = 1, limit = 30)
12
- response = get("/2.0/", {:query => {:method => 'track.search', :track => track, :page => page, :limit => limit, :api_key => Firstfm.config.api_key}})
13
- tracks_array = (response and response["lfm"] and response["lfm"]["results"] and response["lfm"]["results"]["trackmatches"] and response["lfm"]["results"]["trackmatches"]["track"]) || []
12
+ response = get("/2.0/", {:query => {:method => 'track.search', :track => track, :page => page, :limit => limit, :api_key => Firstfm.config.api_key, :format => :json}})
13
+ tracks_array = (response and response["results"] and response["results"]["trackmatches"] and response["results"]["trackmatches"]["track"]) || []
14
14
  tracks = Track.init_from_array(tracks_array)
15
15
  WillPaginate::Collection.create(page, limit) do |pager|
16
16
  pager.replace tracks
17
- pager.total_entries = response['lfm']['results']['totalResults'].to_i
17
+ pager.total_entries = response['results']['opensearch:totalResults'].to_i
18
18
  end
19
19
  end
20
-
20
+
21
21
  def self.init_from_array(array)
22
22
  return [] unless array.is_a?(Array)
23
23
  array.inject([]) do |arr, track|
@@ -25,21 +25,21 @@ module Firstfm
25
25
  arr
26
26
  end
27
27
  end
28
-
28
+
29
29
  def self.init_from_hash(hash)
30
30
  return nil unless hash.is_a?(Hash)
31
31
  Track.new.tap do |track|
32
- track.rank = hash["rank"].to_i
32
+ track.rank = hash["@attr"]["rank"].to_i if hash["@attr"]
33
33
  track.name = hash["name"]
34
- track.mbid = hash["mbid"]
34
+ track.mbid = hash["mbid"].to_s.size > 0 ? hash["mbid"] : nil
35
35
  track.url = hash["url"]
36
36
  track.listeners = hash["listeners"].to_i
37
- track.streamable = (hash["streamable"]["__content__"] ? hash["streamable"]["__content__"] == "1" : hash["streamable"] == "1")
37
+ track.streamable = false
38
38
  track.images = hash["image"]
39
39
  track.artist = hash["artist"].is_a?(Hash) ? Artist.init_from_hash(hash["artist"]) : Artist.new(:name => hash["artist"])
40
40
  end
41
41
  end
42
-
42
+
43
43
  end
44
-
44
+
45
45
  end
data/lib/firstfm/user.rb CHANGED
@@ -1,21 +1,21 @@
1
1
  module Firstfm
2
-
2
+
3
3
  class User
4
-
4
+
5
5
  include HTTParty
6
6
  base_uri 'ws.audioscrobbler.com'
7
- format :xml
8
-
7
+ format :json
8
+
9
9
  def self.get_top_artists(user, period = "overall", page = 1, limit = 50)
10
- response = get("/2.0/", {query: {method: 'user.getTopArtists', user: user, period: period, page: page, limit: limit, api_key: Firstfm.config.api_key}})
11
- artists_array = (response and response["lfm"] and response["lfm"]["topartists"] and response["lfm"]["topartists"]["artist"]) || []
10
+ response = get("/2.0/", {query: {method: 'user.getTopArtists', user: user, period: period, page: page, limit: limit, api_key: Firstfm.config.api_key, :format => :json}})
11
+ artists_array = (response and response["topartists"] and response["topartists"]["artist"]) || []
12
12
  artists = Artist.init_from_array(artists_array)
13
13
  WillPaginate::Collection.create(page, limit) do |pager|
14
14
  pager.replace artists
15
- pager.total_entries = response['lfm']['topartists']['total'].to_i rescue 0
15
+ pager.total_entries = response['topartists']['@attr']['total'].to_i rescue 0
16
16
  end
17
17
  end
18
-
18
+
19
19
  end
20
-
20
+
21
21
  end
data/lib/firstfm/venue.rb CHANGED
@@ -1,31 +1,31 @@
1
1
  module Firstfm
2
-
2
+
3
3
  class Venue
4
-
4
+
5
5
  attr_accessor :id, :name, :url, :location, :website, :phonenumber, :images
6
-
6
+
7
7
  include HTTParty
8
8
  base_uri 'ws.audioscrobbler.com'
9
- format :xml
10
-
9
+ format :json
10
+
11
11
  def self.search(venue, page = 1, limit = 50, country = nil)
12
- response = get("/2.0/", {:query => {:method => 'venue.search', :venue => venue, :page => page, :limit => limit, :country => country, :api_key => Firstfm.config.api_key}})
13
- venues = response && response['lfm'] ? Venue.init_venues_from_hash(response['lfm']) : []
12
+ response = get("/2.0/", {:query => {:method => 'venue.search', :venue => venue, :page => page, :limit => limit, :country => country, :api_key => Firstfm.config.api_key, :format => :json}})
13
+ venues = response['results'] && response['results']['venuematches'] && response['results']['venuematches']['venue'] ? Venue.init_venues_from_hash(response) : []
14
14
  collection = WillPaginate::Collection.create(page, limit) do |pager|
15
15
  pager.replace venues
16
- pager.total_entries = response['lfm']['results']['totalResults'].to_i
16
+ pager.total_entries = response['results']['opensearch:totalResults'].to_i
17
17
  end
18
18
  end
19
-
19
+
20
20
  def self.get_events(venue_id)
21
- response = get("/2.0/", {:query => {:method => 'venue.getEvents', :venue => venue_id, :api_key => Firstfm.config.api_key}})
22
- events = response && response['lfm'] ? Event.init_events_from_hash(response['lfm']) : []
21
+ response = get("/2.0/", {:query => {:method => 'venue.getEvents', :venue => venue_id, :api_key => Firstfm.config.api_key, :format => :json}})
22
+ events = response['events'] && response['events']['event'] ? Event.init_events_from_hash(response) : []
23
23
  end
24
-
24
+
25
25
  def get_events
26
26
  self.class.get_events(self.id)
27
27
  end
28
-
28
+
29
29
  def self.init_venues_from_hash(hash)
30
30
  return [] unless hash["results"] && hash["results"]["venuematches"] && hash["results"]["venuematches"]["venue"]
31
31
  return [init_venue_from_hash(hash["results"]["venuematches"]["venue"])] if hash["results"]["venuematches"]["venue"].is_a?(Hash)
@@ -34,7 +34,7 @@ module Firstfm
34
34
  arr
35
35
  end
36
36
  end
37
-
37
+
38
38
  def self.init_venue_from_hash(hash)
39
39
  venue = Venue.new
40
40
  venue.id = hash["id"]
@@ -46,7 +46,7 @@ module Firstfm
46
46
  venue.images = hash["image"]
47
47
  venue
48
48
  end
49
-
49
+
50
50
  end
51
-
51
+
52
52
  end
@@ -0,0 +1,229 @@
1
+ {
2
+ "artist": {
3
+ "name": "Cher",
4
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
5
+ "url": "http:\/\/www.last.fm\/music\/Cher",
6
+ "image": [
7
+ {
8
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
9
+ "size": "small"
10
+ },
11
+ {
12
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
13
+ "size": "medium"
14
+ },
15
+ {
16
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
17
+ "size": "large"
18
+ },
19
+ {
20
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
21
+ "size": "extralarge"
22
+ },
23
+ {
24
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/ddac901158814c0a8a168449bfd985cc.png",
25
+ "size": "mega"
26
+ },
27
+ {
28
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/arQ\/ddac901158814c0a8a168449bfd985cc.png",
29
+ "size": ""
30
+ }
31
+ ],
32
+ "streamable": "0",
33
+ "ontour": "0",
34
+ "stats": {
35
+ "listeners": "972159",
36
+ "playcount": "12056242"
37
+ },
38
+ "similar": {
39
+ "artist": [
40
+ {
41
+ "name": "Sonny & Cher",
42
+ "url": "http:\/\/www.last.fm\/music\/Sonny+&+Cher",
43
+ "image": [
44
+ {
45
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/c8c4811ce8d14ea382fc7980aff59b92.png",
46
+ "size": "small"
47
+ },
48
+ {
49
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/c8c4811ce8d14ea382fc7980aff59b92.png",
50
+ "size": "medium"
51
+ },
52
+ {
53
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/c8c4811ce8d14ea382fc7980aff59b92.png",
54
+ "size": "large"
55
+ },
56
+ {
57
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/c8c4811ce8d14ea382fc7980aff59b92.png",
58
+ "size": "extralarge"
59
+ },
60
+ {
61
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/c8c4811ce8d14ea382fc7980aff59b92.png",
62
+ "size": "mega"
63
+ },
64
+ {
65
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/arQ\/c8c4811ce8d14ea382fc7980aff59b92.png",
66
+ "size": ""
67
+ }
68
+ ]
69
+ },
70
+ {
71
+ "name": "Kylie Minogue",
72
+ "url": "http:\/\/www.last.fm\/music\/Kylie+Minogue",
73
+ "image": [
74
+ {
75
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/4ba885aaca084f4fcf36a60e47386964.png",
76
+ "size": "small"
77
+ },
78
+ {
79
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/4ba885aaca084f4fcf36a60e47386964.png",
80
+ "size": "medium"
81
+ },
82
+ {
83
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/4ba885aaca084f4fcf36a60e47386964.png",
84
+ "size": "large"
85
+ },
86
+ {
87
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/4ba885aaca084f4fcf36a60e47386964.png",
88
+ "size": "extralarge"
89
+ },
90
+ {
91
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/4ba885aaca084f4fcf36a60e47386964.png",
92
+ "size": "mega"
93
+ },
94
+ {
95
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/arQ\/4ba885aaca084f4fcf36a60e47386964.png",
96
+ "size": ""
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "name": "Madonna",
102
+ "url": "http:\/\/www.last.fm\/music\/Madonna",
103
+ "image": [
104
+ {
105
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/4f46f475e2e14e97cef1c1a6e7e0f672.png",
106
+ "size": "small"
107
+ },
108
+ {
109
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/4f46f475e2e14e97cef1c1a6e7e0f672.png",
110
+ "size": "medium"
111
+ },
112
+ {
113
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/4f46f475e2e14e97cef1c1a6e7e0f672.png",
114
+ "size": "large"
115
+ },
116
+ {
117
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/4f46f475e2e14e97cef1c1a6e7e0f672.png",
118
+ "size": "extralarge"
119
+ },
120
+ {
121
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/4f46f475e2e14e97cef1c1a6e7e0f672.png",
122
+ "size": "mega"
123
+ },
124
+ {
125
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/arQ\/4f46f475e2e14e97cef1c1a6e7e0f672.png",
126
+ "size": ""
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ "name": "C\u00e9line Dion",
132
+ "url": "http:\/\/www.last.fm\/music\/C%C3%A9line+Dion",
133
+ "image": [
134
+ {
135
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/5560cb0f20c340be9cbf6f0d216198c2.png",
136
+ "size": "small"
137
+ },
138
+ {
139
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/5560cb0f20c340be9cbf6f0d216198c2.png",
140
+ "size": "medium"
141
+ },
142
+ {
143
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/5560cb0f20c340be9cbf6f0d216198c2.png",
144
+ "size": "large"
145
+ },
146
+ {
147
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/5560cb0f20c340be9cbf6f0d216198c2.png",
148
+ "size": "extralarge"
149
+ },
150
+ {
151
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/5560cb0f20c340be9cbf6f0d216198c2.png",
152
+ "size": "mega"
153
+ },
154
+ {
155
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/arQ\/5560cb0f20c340be9cbf6f0d216198c2.png",
156
+ "size": ""
157
+ }
158
+ ]
159
+ },
160
+ {
161
+ "name": "RuPaul",
162
+ "url": "http:\/\/www.last.fm\/music\/RuPaul",
163
+ "image": [
164
+ {
165
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/752580e7fd3f46bfac3b2180e00d7833.png",
166
+ "size": "small"
167
+ },
168
+ {
169
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/752580e7fd3f46bfac3b2180e00d7833.png",
170
+ "size": "medium"
171
+ },
172
+ {
173
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/752580e7fd3f46bfac3b2180e00d7833.png",
174
+ "size": "large"
175
+ },
176
+ {
177
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/752580e7fd3f46bfac3b2180e00d7833.png",
178
+ "size": "extralarge"
179
+ },
180
+ {
181
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/752580e7fd3f46bfac3b2180e00d7833.png",
182
+ "size": "mega"
183
+ },
184
+ {
185
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/arQ\/752580e7fd3f46bfac3b2180e00d7833.png",
186
+ "size": ""
187
+ }
188
+ ]
189
+ }
190
+ ]
191
+ },
192
+ "tags": {
193
+ "tag": [
194
+ {
195
+ "name": "pop",
196
+ "url": "http:\/\/www.last.fm\/tag\/pop"
197
+ },
198
+ {
199
+ "name": "female vocalists",
200
+ "url": "http:\/\/www.last.fm\/tag\/female+vocalists"
201
+ },
202
+ {
203
+ "name": "80s",
204
+ "url": "http:\/\/www.last.fm\/tag\/80s"
205
+ },
206
+ {
207
+ "name": "dance",
208
+ "url": "http:\/\/www.last.fm\/tag\/dance"
209
+ },
210
+ {
211
+ "name": "rock",
212
+ "url": "http:\/\/www.last.fm\/tag\/rock"
213
+ }
214
+ ]
215
+ },
216
+ "bio": {
217
+ "links": {
218
+ "link": {
219
+ "#text": "",
220
+ "rel": "original",
221
+ "href": "http:\/\/last.fm\/music\/Cher\/+wiki"
222
+ }
223
+ },
224
+ "published": "17 Feb 2006, 22:09",
225
+ "summary": "Cher (born Cherilyn Sarkisian; May 20, 1946) is an Oscar - and Grammy- winning American singer and actress. A major figure for over five decades in the world of popular culture, she is often referred to as the Goddess of Pop for having first brought the sense of female autonomy and self-actualization into the entertainment industry.\n\nShe is known for her distinctive contralto and for having worked extensively across media, as well as for continuously reinventing both her music and image, the latter of which has been known to induce controversy. <a href=\"http:\/\/www.last.fm\/music\/Cher\">Read more on Last.fm<\/a>.",
226
+ "content": "Cher (born Cherilyn Sarkisian; May 20, 1946) is an Oscar - and Grammy- winning American singer and actress. A major figure for over five decades in the world of popular culture, she is often referred to as the Goddess of Pop for having first brought the sense of female autonomy and self-actualization into the entertainment industry.\n\nShe is known for her distinctive contralto and for having worked extensively across media, as well as for continuously reinventing both her music and image, the latter of which has been known to induce controversy.\n\nCher first caught the eye and ear of the public in 1965 as one-half of the pop rock duo Sonny & Cher, which popularized a peculiar smooth sound that competed successfully with the predominant British Invasion and Motown Sound of the era.\n\nAfter a period in which the duo became obsolete thanks to the rise of the drug culture, she re-emerged in the 1970s as a television personality with her shows The Sonny & Cher Comedy Hour and Cher, which attained immense popularity.\n\nAt the same time, she established herself as a solo artist with million-selling hits such as \"Bang Bang (My Baby Shot Me Down)\", \"Gypsys, Tramps & Thieves\", \"Half-Breed\", and \"Dark Lady\", which dealt with unusual subjects in mainstream popular music. Throughout, she cemented her status as a fashion trendsetter with her daring outfits, and was noted as being the first woman to expose her navel on television.\n\nCher's impact at that time, as described by Phill Marder from Goldmine magazine, \"led the way to advance feminine rebellion in the rock world,\" as she was \"the prototype of the female rock star, setting the standard for appearance and ... attitude[.]\"\n\nIn the early 1980s, Cher made a critically acclaimed appearance on Broadway and starred in the film Silkwood, which earned her a nomination for the Academy Award for Best Supporting Actress in 1983.\n\nIn the following years, she became an acclaimed film actress by starring in a string of hit films that includes Mask, The Witches of Eastwick, and Moonstruck, for which she won the Academy Award for Best Actress in 1988.\n\nAt the same time, she established herself as a \"serious rock and roller\" by releasing a series of multi-platinum rock albums and hit singles such as \"I Found Someone\", \"If I Could Turn Back Time\", and \"The Shoop Shoop Song (It's in His Kiss)\".\n\nIn the 1990s, she made her directing debut with the film If These Walls Could Talk (1996) and released the biggest-selling single of her career, \"Believe\", which revolutionized recording industry because of its pioneer use of Auto-Tune (also known as the \"Cher effect\").\n\nThroughout the 2000s, she embarked on a series of concert tours that were among the highest-grossing of all-time.\n\nBiographer Mark Bego says: \"No one in the history of show business has had a career of the magnitude and scope of Cher's\".\n\nShe has won an Academy Award, a Grammy Award, an Emmy Award, three Golden Globe Awards, and the Best Actress Award at the Cannes Film Festival for her work in film, music and television. She is the only person in history to receive all of these awards.\n\nHer other ventures have included: fashion design, endorsing products, writing books, starring in fitness videos, and managing film production company Isis. Recognized as one of the best-selling music artists of all time, she has sold more than 100 million solo albums worldwide and 40 million records as Sonny & Cher.\n\nShe is the only artist to have notched a number-one single on a Billboard chart in each of the past six decades. <a href=\"http:\/\/www.last.fm\/music\/Cher\">Read more on Last.fm<\/a>. User-contributed text is available under the Creative Commons By-SA License; additional terms may apply."
227
+ }
228
+ }
229
+ }
@@ -0,0 +1,890 @@
1
+ {
2
+ "results": {
3
+ "opensearch:Query": {
4
+ "#text": "",
5
+ "role": "request",
6
+ "searchTerms": "cher",
7
+ "startPage": "1"
8
+ },
9
+ "opensearch:totalResults": "424",
10
+ "opensearch:startIndex": "0",
11
+ "opensearch:itemsPerPage": "30",
12
+ "artistmatches": {
13
+ "artist": [
14
+ {
15
+ "name": "Cheryl Cole",
16
+ "listeners": "627821",
17
+ "mbid": "2d499150-1c42-4ffb-a90c-1cc635519d33",
18
+ "url": "http:\/\/www.last.fm\/music\/Cheryl+Cole",
19
+ "streamable": "0",
20
+ "image": [
21
+ {
22
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/f5bf1aa7259e4a85ca3222ad62aaee8f.png",
23
+ "size": "small"
24
+ },
25
+ {
26
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/f5bf1aa7259e4a85ca3222ad62aaee8f.png",
27
+ "size": "medium"
28
+ },
29
+ {
30
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/f5bf1aa7259e4a85ca3222ad62aaee8f.png",
31
+ "size": "large"
32
+ },
33
+ {
34
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/f5bf1aa7259e4a85ca3222ad62aaee8f.png",
35
+ "size": "extralarge"
36
+ },
37
+ {
38
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/f5bf1aa7259e4a85ca3222ad62aaee8f.png",
39
+ "size": "mega"
40
+ }
41
+ ]
42
+ },
43
+ {
44
+ "name": "Cher",
45
+ "listeners": "972159",
46
+ "mbid": "bfcc6d75-a6a5-4bc6-8282-47aec8531818",
47
+ "url": "http:\/\/www.last.fm\/music\/Cher",
48
+ "streamable": "0",
49
+ "image": [
50
+ {
51
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ddac901158814c0a8a168449bfd985cc.png",
52
+ "size": "small"
53
+ },
54
+ {
55
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ddac901158814c0a8a168449bfd985cc.png",
56
+ "size": "medium"
57
+ },
58
+ {
59
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ddac901158814c0a8a168449bfd985cc.png",
60
+ "size": "large"
61
+ },
62
+ {
63
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ddac901158814c0a8a168449bfd985cc.png",
64
+ "size": "extralarge"
65
+ },
66
+ {
67
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/ddac901158814c0a8a168449bfd985cc.png",
68
+ "size": "mega"
69
+ }
70
+ ]
71
+ },
72
+ {
73
+ "name": "Cher Lloyd",
74
+ "listeners": "441427",
75
+ "mbid": "48fbfb0b-92ee-45eb-99c2-0bde4c05962e",
76
+ "url": "http:\/\/www.last.fm\/music\/Cher+Lloyd",
77
+ "streamable": "0",
78
+ "image": [
79
+ {
80
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/e8b65cb3057d426ac288032f1d4893cc.png",
81
+ "size": "small"
82
+ },
83
+ {
84
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/e8b65cb3057d426ac288032f1d4893cc.png",
85
+ "size": "medium"
86
+ },
87
+ {
88
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/e8b65cb3057d426ac288032f1d4893cc.png",
89
+ "size": "large"
90
+ },
91
+ {
92
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/e8b65cb3057d426ac288032f1d4893cc.png",
93
+ "size": "extralarge"
94
+ },
95
+ {
96
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/e8b65cb3057d426ac288032f1d4893cc.png",
97
+ "size": "mega"
98
+ }
99
+ ]
100
+ },
101
+ {
102
+ "name": "Cheryl",
103
+ "listeners": "100039",
104
+ "mbid": "85df56ab-e125-4169-8ac8-e6666128d526",
105
+ "url": "http:\/\/www.last.fm\/music\/Cheryl",
106
+ "streamable": "0",
107
+ "image": [
108
+ {
109
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/113c71250f6d494fc9ef9af18eb87138.png",
110
+ "size": "small"
111
+ },
112
+ {
113
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/113c71250f6d494fc9ef9af18eb87138.png",
114
+ "size": "medium"
115
+ },
116
+ {
117
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/113c71250f6d494fc9ef9af18eb87138.png",
118
+ "size": "large"
119
+ },
120
+ {
121
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/113c71250f6d494fc9ef9af18eb87138.png",
122
+ "size": "extralarge"
123
+ },
124
+ {
125
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/113c71250f6d494fc9ef9af18eb87138.png",
126
+ "size": "mega"
127
+ }
128
+ ]
129
+ },
130
+ {
131
+ "name": "Cherish",
132
+ "listeners": "317994",
133
+ "mbid": "e82500a8-70ce-46ad-a028-b0690420d560",
134
+ "url": "http:\/\/www.last.fm\/music\/Cherish",
135
+ "streamable": "0",
136
+ "image": [
137
+ {
138
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/068149cd60b7455e9ba7da54b576f0b1.png",
139
+ "size": "small"
140
+ },
141
+ {
142
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/068149cd60b7455e9ba7da54b576f0b1.png",
143
+ "size": "medium"
144
+ },
145
+ {
146
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/068149cd60b7455e9ba7da54b576f0b1.png",
147
+ "size": "large"
148
+ },
149
+ {
150
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/068149cd60b7455e9ba7da54b576f0b1.png",
151
+ "size": "extralarge"
152
+ },
153
+ {
154
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/068149cd60b7455e9ba7da54b576f0b1.png",
155
+ "size": "mega"
156
+ }
157
+ ]
158
+ },
159
+ {
160
+ "name": "Cherry Poppin' Daddies",
161
+ "listeners": "129305",
162
+ "mbid": "e23612fb-6dd6-4d5c-b638-2611bfc8c48a",
163
+ "url": "http:\/\/www.last.fm\/music\/Cherry+Poppin%27+Daddies",
164
+ "streamable": "0",
165
+ "image": [
166
+ {
167
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/b5afcaeb096d43aa9a24277958e9f1f2.png",
168
+ "size": "small"
169
+ },
170
+ {
171
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/b5afcaeb096d43aa9a24277958e9f1f2.png",
172
+ "size": "medium"
173
+ },
174
+ {
175
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/b5afcaeb096d43aa9a24277958e9f1f2.png",
176
+ "size": "large"
177
+ },
178
+ {
179
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/b5afcaeb096d43aa9a24277958e9f1f2.png",
180
+ "size": "extralarge"
181
+ },
182
+ {
183
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/b5afcaeb096d43aa9a24277958e9f1f2.png",
184
+ "size": "mega"
185
+ }
186
+ ]
187
+ },
188
+ {
189
+ "name": "Cherub",
190
+ "listeners": "123251",
191
+ "mbid": "abf42fca-8c2e-4d55-9fc8-6b1fc65a80f1",
192
+ "url": "http:\/\/www.last.fm\/music\/Cherub",
193
+ "streamable": "0",
194
+ "image": [
195
+ {
196
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/cf282200a0244b7acb7ee2eba031301d.png",
197
+ "size": "small"
198
+ },
199
+ {
200
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/cf282200a0244b7acb7ee2eba031301d.png",
201
+ "size": "medium"
202
+ },
203
+ {
204
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/cf282200a0244b7acb7ee2eba031301d.png",
205
+ "size": "large"
206
+ },
207
+ {
208
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/cf282200a0244b7acb7ee2eba031301d.png",
209
+ "size": "extralarge"
210
+ },
211
+ {
212
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/cf282200a0244b7acb7ee2eba031301d.png",
213
+ "size": "mega"
214
+ }
215
+ ]
216
+ },
217
+ {
218
+ "name": "Cherry Ghost",
219
+ "listeners": "111758",
220
+ "mbid": "1e76c9f2-2f79-4521-a418-a3c22eda30fa",
221
+ "url": "http:\/\/www.last.fm\/music\/Cherry+Ghost",
222
+ "streamable": "0",
223
+ "image": [
224
+ {
225
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/bdc92b15e2f94270b0a52eef9522b5ee.png",
226
+ "size": "small"
227
+ },
228
+ {
229
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/bdc92b15e2f94270b0a52eef9522b5ee.png",
230
+ "size": "medium"
231
+ },
232
+ {
233
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/bdc92b15e2f94270b0a52eef9522b5ee.png",
234
+ "size": "large"
235
+ },
236
+ {
237
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/bdc92b15e2f94270b0a52eef9522b5ee.png",
238
+ "size": "extralarge"
239
+ },
240
+ {
241
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/bdc92b15e2f94270b0a52eef9522b5ee.png",
242
+ "size": "mega"
243
+ }
244
+ ]
245
+ },
246
+ {
247
+ "name": "Cheryl Lynn",
248
+ "listeners": "163439",
249
+ "mbid": "c2b8f775-455c-44c3-97ca-f377938da19e",
250
+ "url": "http:\/\/www.last.fm\/music\/Cheryl+Lynn",
251
+ "streamable": "0",
252
+ "image": [
253
+ {
254
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/c15ef64717d7470b868f7ed9524d91da.png",
255
+ "size": "small"
256
+ },
257
+ {
258
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/c15ef64717d7470b868f7ed9524d91da.png",
259
+ "size": "medium"
260
+ },
261
+ {
262
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/c15ef64717d7470b868f7ed9524d91da.png",
263
+ "size": "large"
264
+ },
265
+ {
266
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/c15ef64717d7470b868f7ed9524d91da.png",
267
+ "size": "extralarge"
268
+ },
269
+ {
270
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/c15ef64717d7470b868f7ed9524d91da.png",
271
+ "size": "mega"
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "name": "Cherry Glazerr",
277
+ "listeners": "21602",
278
+ "mbid": "64a0c404-58af-4083-8fc6-a6725ef02ecb",
279
+ "url": "http:\/\/www.last.fm\/music\/Cherry+Glazerr",
280
+ "streamable": "0",
281
+ "image": [
282
+ {
283
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/b5c43135fddc4c74ccbe3335abb2cf08.png",
284
+ "size": "small"
285
+ },
286
+ {
287
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/b5c43135fddc4c74ccbe3335abb2cf08.png",
288
+ "size": "medium"
289
+ },
290
+ {
291
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/b5c43135fddc4c74ccbe3335abb2cf08.png",
292
+ "size": "large"
293
+ },
294
+ {
295
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/b5c43135fddc4c74ccbe3335abb2cf08.png",
296
+ "size": "extralarge"
297
+ },
298
+ {
299
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/b5c43135fddc4c74ccbe3335abb2cf08.png",
300
+ "size": "mega"
301
+ }
302
+ ]
303
+ },
304
+ {
305
+ "name": "Cherri Bomb",
306
+ "listeners": "23397",
307
+ "mbid": "41db537e-1150-43b2-9a94-a7b8a08cd23d",
308
+ "url": "http:\/\/www.last.fm\/music\/Cherri+Bomb",
309
+ "streamable": "0",
310
+ "image": [
311
+ {
312
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/57b07ae27bed41b0ad77188a5e7d44a9.png",
313
+ "size": "small"
314
+ },
315
+ {
316
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/57b07ae27bed41b0ad77188a5e7d44a9.png",
317
+ "size": "medium"
318
+ },
319
+ {
320
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/57b07ae27bed41b0ad77188a5e7d44a9.png",
321
+ "size": "large"
322
+ },
323
+ {
324
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/57b07ae27bed41b0ad77188a5e7d44a9.png",
325
+ "size": "extralarge"
326
+ },
327
+ {
328
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/57b07ae27bed41b0ad77188a5e7d44a9.png",
329
+ "size": "mega"
330
+ }
331
+ ]
332
+ },
333
+ {
334
+ "name": "Cherish The Ladies",
335
+ "listeners": "70324",
336
+ "mbid": "c6c538ec-a3ca-43f0-8d73-6e88582de31f",
337
+ "url": "http:\/\/www.last.fm\/music\/Cherish+The+Ladies",
338
+ "streamable": "0",
339
+ "image": [
340
+ {
341
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/056fad408a2c4877ac54566dce6174a1.png",
342
+ "size": "small"
343
+ },
344
+ {
345
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/056fad408a2c4877ac54566dce6174a1.png",
346
+ "size": "medium"
347
+ },
348
+ {
349
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/056fad408a2c4877ac54566dce6174a1.png",
350
+ "size": "large"
351
+ },
352
+ {
353
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/056fad408a2c4877ac54566dce6174a1.png",
354
+ "size": "extralarge"
355
+ },
356
+ {
357
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/056fad408a2c4877ac54566dce6174a1.png",
358
+ "size": "mega"
359
+ }
360
+ ]
361
+ },
362
+ {
363
+ "name": "Cherbourg",
364
+ "listeners": "42212",
365
+ "mbid": "9950f8fc-41ab-4d4b-9289-e1b1ce482baf",
366
+ "url": "http:\/\/www.last.fm\/music\/Cherbourg",
367
+ "streamable": "0",
368
+ "image": [
369
+ {
370
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/e6e42cbaa86540b79f108d289478398e.png",
371
+ "size": "small"
372
+ },
373
+ {
374
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/e6e42cbaa86540b79f108d289478398e.png",
375
+ "size": "medium"
376
+ },
377
+ {
378
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/e6e42cbaa86540b79f108d289478398e.png",
379
+ "size": "large"
380
+ },
381
+ {
382
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/e6e42cbaa86540b79f108d289478398e.png",
383
+ "size": "extralarge"
384
+ },
385
+ {
386
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/e6e42cbaa86540b79f108d289478398e.png",
387
+ "size": "mega"
388
+ }
389
+ ]
390
+ },
391
+ {
392
+ "name": "Cherry Filter",
393
+ "listeners": "5977",
394
+ "mbid": "49b85217-16c5-41bb-9e40-bd83f80eb1e6",
395
+ "url": "http:\/\/www.last.fm\/music\/Cherry+Filter",
396
+ "streamable": "0",
397
+ "image": [
398
+ {
399
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/37e62c93904a41d984385caa5d92f97a.png",
400
+ "size": "small"
401
+ },
402
+ {
403
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/37e62c93904a41d984385caa5d92f97a.png",
404
+ "size": "medium"
405
+ },
406
+ {
407
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/37e62c93904a41d984385caa5d92f97a.png",
408
+ "size": "large"
409
+ },
410
+ {
411
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/37e62c93904a41d984385caa5d92f97a.png",
412
+ "size": "extralarge"
413
+ },
414
+ {
415
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/37e62c93904a41d984385caa5d92f97a.png",
416
+ "size": "mega"
417
+ }
418
+ ]
419
+ },
420
+ {
421
+ "name": "CHERRYBLOSSOM",
422
+ "listeners": "9891",
423
+ "mbid": "38f8a3fa-7379-49d6-88c2-2c16db1ac0db",
424
+ "url": "http:\/\/www.last.fm\/music\/CHERRYBLOSSOM",
425
+ "streamable": "0",
426
+ "image": [
427
+ {
428
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/b4645a2621ac46f480b1ae2afc632851.png",
429
+ "size": "small"
430
+ },
431
+ {
432
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/b4645a2621ac46f480b1ae2afc632851.png",
433
+ "size": "medium"
434
+ },
435
+ {
436
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/b4645a2621ac46f480b1ae2afc632851.png",
437
+ "size": "large"
438
+ },
439
+ {
440
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/b4645a2621ac46f480b1ae2afc632851.png",
441
+ "size": "extralarge"
442
+ },
443
+ {
444
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/b4645a2621ac46f480b1ae2afc632851.png",
445
+ "size": "mega"
446
+ }
447
+ ]
448
+ },
449
+ {
450
+ "name": "Cherrelle",
451
+ "listeners": "54132",
452
+ "mbid": "2a0b3bf9-0d04-4e49-91f5-9530cbebab55",
453
+ "url": "http:\/\/www.last.fm\/music\/Cherrelle",
454
+ "streamable": "0",
455
+ "image": [
456
+ {
457
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/1b956228e6b94be4cb3606dab8d52bb3.png",
458
+ "size": "small"
459
+ },
460
+ {
461
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/1b956228e6b94be4cb3606dab8d52bb3.png",
462
+ "size": "medium"
463
+ },
464
+ {
465
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/1b956228e6b94be4cb3606dab8d52bb3.png",
466
+ "size": "large"
467
+ },
468
+ {
469
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/1b956228e6b94be4cb3606dab8d52bb3.png",
470
+ "size": "extralarge"
471
+ },
472
+ {
473
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/1b956228e6b94be4cb3606dab8d52bb3.png",
474
+ "size": "mega"
475
+ }
476
+ ]
477
+ },
478
+ {
479
+ "name": "Cheri Dennis",
480
+ "listeners": "52885",
481
+ "mbid": "a2ae7ec5-fb48-4a81-9a75-135296664347",
482
+ "url": "http:\/\/www.last.fm\/music\/Cheri+Dennis",
483
+ "streamable": "0",
484
+ "image": [
485
+ {
486
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/ae1e482d78b24ce9a15a278146d83e41.png",
487
+ "size": "small"
488
+ },
489
+ {
490
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/ae1e482d78b24ce9a15a278146d83e41.png",
491
+ "size": "medium"
492
+ },
493
+ {
494
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/ae1e482d78b24ce9a15a278146d83e41.png",
495
+ "size": "large"
496
+ },
497
+ {
498
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/ae1e482d78b24ce9a15a278146d83e41.png",
499
+ "size": "extralarge"
500
+ },
501
+ {
502
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/ae1e482d78b24ce9a15a278146d83e41.png",
503
+ "size": "mega"
504
+ }
505
+ ]
506
+ },
507
+ {
508
+ "name": "Cheryl Wheeler",
509
+ "listeners": "28510",
510
+ "mbid": "a0c94d6d-fa78-4038-9f18-4a8e2a40bd15",
511
+ "url": "http:\/\/www.last.fm\/music\/Cheryl+Wheeler",
512
+ "streamable": "0",
513
+ "image": [
514
+ {
515
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/203c3b8fdf564b66aa0644185d45809f.png",
516
+ "size": "small"
517
+ },
518
+ {
519
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/203c3b8fdf564b66aa0644185d45809f.png",
520
+ "size": "medium"
521
+ },
522
+ {
523
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/203c3b8fdf564b66aa0644185d45809f.png",
524
+ "size": "large"
525
+ },
526
+ {
527
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/203c3b8fdf564b66aa0644185d45809f.png",
528
+ "size": "extralarge"
529
+ },
530
+ {
531
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/203c3b8fdf564b66aa0644185d45809f.png",
532
+ "size": "mega"
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ "name": "Cherokee",
538
+ "listeners": "30712",
539
+ "mbid": "ea71fddc-7e41-470f-8e13-6cd50ae981da",
540
+ "url": "http:\/\/www.last.fm\/music\/Cherokee",
541
+ "streamable": "0",
542
+ "image": [
543
+ {
544
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/fd3440cf04414f0bba5d5ab12adf6bf9.png",
545
+ "size": "small"
546
+ },
547
+ {
548
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/fd3440cf04414f0bba5d5ab12adf6bf9.png",
549
+ "size": "medium"
550
+ },
551
+ {
552
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/fd3440cf04414f0bba5d5ab12adf6bf9.png",
553
+ "size": "large"
554
+ },
555
+ {
556
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/fd3440cf04414f0bba5d5ab12adf6bf9.png",
557
+ "size": "extralarge"
558
+ },
559
+ {
560
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/fd3440cf04414f0bba5d5ab12adf6bf9.png",
561
+ "size": "mega"
562
+ }
563
+ ]
564
+ },
565
+ {
566
+ "name": "CherryVata",
567
+ "listeners": "33505",
568
+ "mbid": "bd7183a3-c7d9-4a8a-9cbd-c4eec97a3f70",
569
+ "url": "http:\/\/www.last.fm\/music\/CherryVata",
570
+ "streamable": "0",
571
+ "image": [
572
+ {
573
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/1f2a0a2170f742d0a551790f2148034f.png",
574
+ "size": "small"
575
+ },
576
+ {
577
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/1f2a0a2170f742d0a551790f2148034f.png",
578
+ "size": "medium"
579
+ },
580
+ {
581
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/1f2a0a2170f742d0a551790f2148034f.png",
582
+ "size": "large"
583
+ },
584
+ {
585
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/1f2a0a2170f742d0a551790f2148034f.png",
586
+ "size": "extralarge"
587
+ },
588
+ {
589
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/1f2a0a2170f742d0a551790f2148034f.png",
590
+ "size": "mega"
591
+ }
592
+ ]
593
+ },
594
+ {
595
+ "name": "Cherubs",
596
+ "listeners": "8897",
597
+ "mbid": "6106ec43-8658-4fc3-b8a6-5379831a6cfa",
598
+ "url": "http:\/\/www.last.fm\/music\/Cherubs",
599
+ "streamable": "0",
600
+ "image": [
601
+ {
602
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/509be49c20ef4385924fb2f59f362341.png",
603
+ "size": "small"
604
+ },
605
+ {
606
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/509be49c20ef4385924fb2f59f362341.png",
607
+ "size": "medium"
608
+ },
609
+ {
610
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/509be49c20ef4385924fb2f59f362341.png",
611
+ "size": "large"
612
+ },
613
+ {
614
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/509be49c20ef4385924fb2f59f362341.png",
615
+ "size": "extralarge"
616
+ },
617
+ {
618
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/509be49c20ef4385924fb2f59f362341.png",
619
+ "size": "mega"
620
+ }
621
+ ]
622
+ },
623
+ {
624
+ "name": "Cherry",
625
+ "listeners": "11843",
626
+ "mbid": "d1db4589-171b-4f65-9edf-2c300e4027d8",
627
+ "url": "http:\/\/www.last.fm\/music\/Cherry",
628
+ "streamable": "0",
629
+ "image": [
630
+ {
631
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/8a692b294e0a4b409870b2042e523836.png",
632
+ "size": "small"
633
+ },
634
+ {
635
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/8a692b294e0a4b409870b2042e523836.png",
636
+ "size": "medium"
637
+ },
638
+ {
639
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/8a692b294e0a4b409870b2042e523836.png",
640
+ "size": "large"
641
+ },
642
+ {
643
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/8a692b294e0a4b409870b2042e523836.png",
644
+ "size": "extralarge"
645
+ },
646
+ {
647
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/8a692b294e0a4b409870b2042e523836.png",
648
+ "size": "mega"
649
+ }
650
+ ]
651
+ },
652
+ {
653
+ "name": "Cheryl Ann Fulton",
654
+ "listeners": "18887",
655
+ "mbid": "b0feb86b-e88d-4195-acaa-275ee9967085",
656
+ "url": "http:\/\/www.last.fm\/music\/Cheryl+Ann+Fulton",
657
+ "streamable": "0",
658
+ "image": [
659
+ {
660
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/fbfe67f2ba19428ebbf7e4013f8bffa2.png",
661
+ "size": "small"
662
+ },
663
+ {
664
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/fbfe67f2ba19428ebbf7e4013f8bffa2.png",
665
+ "size": "medium"
666
+ },
667
+ {
668
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/fbfe67f2ba19428ebbf7e4013f8bffa2.png",
669
+ "size": "large"
670
+ },
671
+ {
672
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/fbfe67f2ba19428ebbf7e4013f8bffa2.png",
673
+ "size": "extralarge"
674
+ },
675
+ {
676
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/fbfe67f2ba19428ebbf7e4013f8bffa2.png",
677
+ "size": "mega"
678
+ }
679
+ ]
680
+ },
681
+ {
682
+ "name": "Cherryholmes",
683
+ "listeners": "10768",
684
+ "mbid": "605a5811-fa52-4ffb-ada2-c5d3dbfe3752",
685
+ "url": "http:\/\/www.last.fm\/music\/Cherryholmes",
686
+ "streamable": "0",
687
+ "image": [
688
+ {
689
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/9e66af1b2ec84fbb997d227fa3a3e054.png",
690
+ "size": "small"
691
+ },
692
+ {
693
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/9e66af1b2ec84fbb997d227fa3a3e054.png",
694
+ "size": "medium"
695
+ },
696
+ {
697
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/9e66af1b2ec84fbb997d227fa3a3e054.png",
698
+ "size": "large"
699
+ },
700
+ {
701
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/9e66af1b2ec84fbb997d227fa3a3e054.png",
702
+ "size": "extralarge"
703
+ },
704
+ {
705
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/9e66af1b2ec84fbb997d227fa3a3e054.png",
706
+ "size": "mega"
707
+ }
708
+ ]
709
+ },
710
+ {
711
+ "name": "Cherlene",
712
+ "listeners": "3668",
713
+ "mbid": "0eb94497-a182-4009-9e54-27d4331112f5",
714
+ "url": "http:\/\/www.last.fm\/music\/Cherlene",
715
+ "streamable": "0",
716
+ "image": [
717
+ {
718
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/0159e77d4e684aeacac2725b03213135.png",
719
+ "size": "small"
720
+ },
721
+ {
722
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/0159e77d4e684aeacac2725b03213135.png",
723
+ "size": "medium"
724
+ },
725
+ {
726
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/0159e77d4e684aeacac2725b03213135.png",
727
+ "size": "large"
728
+ },
729
+ {
730
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/0159e77d4e684aeacac2725b03213135.png",
731
+ "size": "extralarge"
732
+ },
733
+ {
734
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/0159e77d4e684aeacac2725b03213135.png",
735
+ "size": "mega"
736
+ }
737
+ ]
738
+ },
739
+ {
740
+ "name": "Cheryl Freeman",
741
+ "listeners": "12084",
742
+ "mbid": "",
743
+ "url": "http:\/\/www.last.fm\/music\/Cheryl+Freeman",
744
+ "streamable": "0",
745
+ "image": [
746
+ {
747
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/2e5172627ff24cf9b5772b542f02920e.png",
748
+ "size": "small"
749
+ },
750
+ {
751
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/2e5172627ff24cf9b5772b542f02920e.png",
752
+ "size": "medium"
753
+ },
754
+ {
755
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/2e5172627ff24cf9b5772b542f02920e.png",
756
+ "size": "large"
757
+ },
758
+ {
759
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/2e5172627ff24cf9b5772b542f02920e.png",
760
+ "size": "extralarge"
761
+ },
762
+ {
763
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/2e5172627ff24cf9b5772b542f02920e.png",
764
+ "size": "mega"
765
+ }
766
+ ]
767
+ },
768
+ {
769
+ "name": "Cherry Bombshell",
770
+ "listeners": "2635",
771
+ "mbid": "cbd8e73e-febf-40f4-9e07-da0d926464d1",
772
+ "url": "http:\/\/www.last.fm\/music\/Cherry+Bombshell",
773
+ "streamable": "0",
774
+ "image": [
775
+ {
776
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/f55e477dc7864bfd9416d3d647a8c4c0.png",
777
+ "size": "small"
778
+ },
779
+ {
780
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/f55e477dc7864bfd9416d3d647a8c4c0.png",
781
+ "size": "medium"
782
+ },
783
+ {
784
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/f55e477dc7864bfd9416d3d647a8c4c0.png",
785
+ "size": "large"
786
+ },
787
+ {
788
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/f55e477dc7864bfd9416d3d647a8c4c0.png",
789
+ "size": "extralarge"
790
+ },
791
+ {
792
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/f55e477dc7864bfd9416d3d647a8c4c0.png",
793
+ "size": "mega"
794
+ }
795
+ ]
796
+ },
797
+ {
798
+ "name": "CHERNIKOVSKAYA HATA",
799
+ "listeners": "3324",
800
+ "mbid": "",
801
+ "url": "http:\/\/www.last.fm\/music\/CHERNIKOVSKAYA+HATA",
802
+ "streamable": "0",
803
+ "image": [
804
+ {
805
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/0b5f695388ac4402a79a0547da16f126.png",
806
+ "size": "small"
807
+ },
808
+ {
809
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/0b5f695388ac4402a79a0547da16f126.png",
810
+ "size": "medium"
811
+ },
812
+ {
813
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/0b5f695388ac4402a79a0547da16f126.png",
814
+ "size": "large"
815
+ },
816
+ {
817
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/0b5f695388ac4402a79a0547da16f126.png",
818
+ "size": "extralarge"
819
+ },
820
+ {
821
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/0b5f695388ac4402a79a0547da16f126.png",
822
+ "size": "mega"
823
+ }
824
+ ]
825
+ },
826
+ {
827
+ "name": "Cherrybelle",
828
+ "listeners": "2502",
829
+ "mbid": "bb65e571-d531-42e6-8a15-ed4a9add31ff",
830
+ "url": "http:\/\/www.last.fm\/music\/Cherrybelle",
831
+ "streamable": "0",
832
+ "image": [
833
+ {
834
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/199f6485af3d43ee9403fe9d9209db6c.png",
835
+ "size": "small"
836
+ },
837
+ {
838
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/199f6485af3d43ee9403fe9d9209db6c.png",
839
+ "size": "medium"
840
+ },
841
+ {
842
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/199f6485af3d43ee9403fe9d9209db6c.png",
843
+ "size": "large"
844
+ },
845
+ {
846
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/199f6485af3d43ee9403fe9d9209db6c.png",
847
+ "size": "extralarge"
848
+ },
849
+ {
850
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/199f6485af3d43ee9403fe9d9209db6c.png",
851
+ "size": "mega"
852
+ }
853
+ ]
854
+ },
855
+ {
856
+ "name": "Cheryl Bentyne",
857
+ "listeners": "5338",
858
+ "mbid": "aaa4a5cc-77b9-4506-8978-7563a6b28754",
859
+ "url": "http:\/\/www.last.fm\/music\/Cheryl+Bentyne",
860
+ "streamable": "0",
861
+ "image": [
862
+ {
863
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/34s\/b33f30fa22744353a97e0ba611dbeea4.png",
864
+ "size": "small"
865
+ },
866
+ {
867
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/64s\/b33f30fa22744353a97e0ba611dbeea4.png",
868
+ "size": "medium"
869
+ },
870
+ {
871
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/174s\/b33f30fa22744353a97e0ba611dbeea4.png",
872
+ "size": "large"
873
+ },
874
+ {
875
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/300x300\/b33f30fa22744353a97e0ba611dbeea4.png",
876
+ "size": "extralarge"
877
+ },
878
+ {
879
+ "#text": "http:\/\/img2-ak.lst.fm\/i\/u\/b33f30fa22744353a97e0ba611dbeea4.png",
880
+ "size": "mega"
881
+ }
882
+ ]
883
+ }
884
+ ]
885
+ },
886
+ "@attr": {
887
+ "for": "cher"
888
+ }
889
+ }
890
+ }