scrobbler-ng 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (156) hide show
  1. data/.gitignore +11 -0
  2. data/MIT-LICENSE +19 -0
  3. data/README.rdoc +104 -0
  4. data/Rakefile +11 -0
  5. data/VERSION.yml +4 -0
  6. data/examples/album.rb +19 -0
  7. data/examples/artist.rb +13 -0
  8. data/examples/scrobble.rb +31 -0
  9. data/examples/tag.rb +11 -0
  10. data/examples/track.rb +6 -0
  11. data/examples/user.rb +14 -0
  12. data/lib/scrobbler/album.rb +165 -0
  13. data/lib/scrobbler/artist.rb +169 -0
  14. data/lib/scrobbler/auth.rb +47 -0
  15. data/lib/scrobbler/base.rb +124 -0
  16. data/lib/scrobbler/event.rb +105 -0
  17. data/lib/scrobbler/geo.rb +27 -0
  18. data/lib/scrobbler/helper/image.rb +52 -0
  19. data/lib/scrobbler/helper/streamable.rb +40 -0
  20. data/lib/scrobbler/library.rb +123 -0
  21. data/lib/scrobbler/playing.rb +49 -0
  22. data/lib/scrobbler/playlist.rb +45 -0
  23. data/lib/scrobbler/radio.rb +12 -0
  24. data/lib/scrobbler/rest.rb +47 -0
  25. data/lib/scrobbler/scrobble.rb +116 -0
  26. data/lib/scrobbler/session.rb +9 -0
  27. data/lib/scrobbler/shout.rb +21 -0
  28. data/lib/scrobbler/simpleauth.rb +60 -0
  29. data/lib/scrobbler/tag.rb +113 -0
  30. data/lib/scrobbler/track.rb +138 -0
  31. data/lib/scrobbler/user.rb +222 -0
  32. data/lib/scrobbler/venue.rb +67 -0
  33. data/lib/scrobbler.rb +34 -0
  34. data/tasks/jeweler.rake +18 -0
  35. data/tasks/rdoc.rake +7 -0
  36. data/tasks/tests.rake +13 -0
  37. data/tasks/yardoc.rake +8 -0
  38. data/test/fixtures/xml/album/info.xml +43 -0
  39. data/test/fixtures/xml/artist/fans.xml +52 -0
  40. data/test/fixtures/xml/artist/info.xml +58 -0
  41. data/test/fixtures/xml/artist/similar.xml +1004 -0
  42. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  43. data/test/fixtures/xml/artist/toptags.xml +19 -0
  44. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  45. data/test/fixtures/xml/auth/session.xml +7 -0
  46. data/test/fixtures/xml/auth/token.xml +3 -0
  47. data/test/fixtures/xml/event/attend.xml +3 -0
  48. data/test/fixtures/xml/event/attendees.xml +53 -0
  49. data/test/fixtures/xml/event/event.xml +35 -0
  50. data/test/fixtures/xml/event/shouts.xml +35 -0
  51. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  52. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  53. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  54. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  55. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  56. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  57. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  58. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  59. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  60. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  61. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  62. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  63. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  64. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  66. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  67. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  68. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  69. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  70. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  71. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  72. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  73. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  75. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  76. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  77. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  78. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  79. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  80. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  81. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  82. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  83. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  84. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  85. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  86. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  87. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  88. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  89. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  90. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  91. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  92. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  93. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  96. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  97. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  98. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  99. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  100. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  101. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  103. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  104. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  105. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  106. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  107. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  108. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  109. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  110. data/test/fixtures/xml/tag/similar.xml +254 -0
  111. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  112. data/test/fixtures/xml/tag/topartists.xml +605 -0
  113. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  114. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  115. data/test/fixtures/xml/track/fans.xml +34 -0
  116. data/test/fixtures/xml/track/info.xml +53 -0
  117. data/test/fixtures/xml/track/toptags.xml +504 -0
  118. data/test/fixtures/xml/user/events.xml +401 -0
  119. data/test/fixtures/xml/user/friends.xml +30 -0
  120. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  121. data/test/fixtures/xml/user/neighbours.xml +23 -0
  122. data/test/fixtures/xml/user/playlists.xml +61 -0
  123. data/test/fixtures/xml/user/profile.xml +12 -0
  124. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  125. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  126. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  127. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  128. data/test/fixtures/xml/user/topalbums.xml +61 -0
  129. data/test/fixtures/xml/user/topartists.xml +41 -0
  130. data/test/fixtures/xml/user/toptags.xml +44 -0
  131. data/test/fixtures/xml/user/toptracks.xml +65 -0
  132. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  133. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  134. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  135. data/test/fixtures/xml/venue/events.xml +151 -0
  136. data/test/fixtures/xml/venue/venue.xml +16 -0
  137. data/test/mocks/rest.rb +212 -0
  138. data/test/spec_helper.rb +7 -0
  139. data/test/test_helper.rb +20 -0
  140. data/test/unit/album_spec.rb +51 -0
  141. data/test/unit/artist_spec.rb +130 -0
  142. data/test/unit/auth_spec.rb +36 -0
  143. data/test/unit/event_spec.rb +109 -0
  144. data/test/unit/geo_spec.rb +148 -0
  145. data/test/unit/library_spec.rb +133 -0
  146. data/test/unit/playing_test.rb +53 -0
  147. data/test/unit/playlist_spec.rb +25 -0
  148. data/test/unit/radio_spec.rb +22 -0
  149. data/test/unit/scrobble_spec.rb +55 -0
  150. data/test/unit/scrobble_test.rb +69 -0
  151. data/test/unit/simpleauth_test.rb +45 -0
  152. data/test/unit/tag_spec.rb +101 -0
  153. data/test/unit/track_spec.rb +95 -0
  154. data/test/unit/user_spec.rb +264 -0
  155. data/test/unit/venue_spec.rb +104 -0
  156. metadata +253 -0
@@ -0,0 +1,444 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <artists user="xhochy" page="7" perPage="50" totalPages="7">
4
+ <artist>
5
+ <name>Tony Yayo</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid>45d21b70-e139-4ff9-b487-3c003fa7af0b</mbid>
9
+ <url>http://www.last.fm/music/Tony+Yayo</url>
10
+ <streamable>1</streamable>
11
+ <image size="small">http://userserve-ak.last.fm/serve/34/386487.jpg</image>
12
+ <image size="medium">http://userserve-ak.last.fm/serve/64/386487.jpg</image>
13
+ <image size="large">http://userserve-ak.last.fm/serve/126/386487.jpg</image>
14
+ </artist>
15
+ <artist>
16
+ <name>Dillinger Four</name>
17
+ <playcount>1</playcount>
18
+ <tagcount></tagcount>
19
+ <mbid>fc6a16d9-5dfd-43b1-be98-ba49366d9f27</mbid>
20
+ <url>http://www.last.fm/music/Dillinger+Four</url>
21
+ <streamable>1</streamable>
22
+ <image size="small">http://userserve-ak.last.fm/serve/34/13496.jpg</image>
23
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13496.jpg</image>
24
+ <image size="large">http://userserve-ak.last.fm/serve/126/13496.jpg</image>
25
+ </artist>
26
+ <artist>
27
+ <name>Rancid</name>
28
+ <playcount>1</playcount>
29
+ <tagcount></tagcount>
30
+ <mbid>24f8d8a5-269b-475c-a1cb-792990b0b2ee</mbid>
31
+ <url>http://www.last.fm/music/Rancid</url>
32
+ <streamable>1</streamable>
33
+ <image size="small">http://userserve-ak.last.fm/serve/34/22023.jpg</image>
34
+ <image size="medium">http://userserve-ak.last.fm/serve/64/22023.jpg</image>
35
+ <image size="large">http://userserve-ak.last.fm/serve/126/22023.jpg</image>
36
+ </artist>
37
+ <artist>
38
+ <name>Bad Religion</name>
39
+ <playcount>1</playcount>
40
+ <tagcount></tagcount>
41
+ <mbid>149e6720-4e4a-41a4-afca-6d29083fc091</mbid>
42
+ <url>http://www.last.fm/music/Bad+Religion</url>
43
+ <streamable>1</streamable>
44
+ <image size="small">http://userserve-ak.last.fm/serve/34/199487.jpg</image>
45
+ <image size="medium">http://userserve-ak.last.fm/serve/64/199487.jpg</image>
46
+ <image size="large">http://userserve-ak.last.fm/serve/126/199487.jpg</image>
47
+ </artist>
48
+ <artist>
49
+ <name>Nelly Furtado</name>
50
+ <playcount>1</playcount>
51
+ <tagcount></tagcount>
52
+ <mbid>13655113-cd16-4b43-9dca-cadbbf26ee05</mbid>
53
+ <url>http://www.last.fm/music/Nelly+Furtado</url>
54
+ <streamable>1</streamable>
55
+ <image size="small">http://userserve-ak.last.fm/serve/34/226503.jpg</image>
56
+ <image size="medium">http://userserve-ak.last.fm/serve/64/226503.jpg</image>
57
+ <image size="large">http://userserve-ak.last.fm/serve/126/226503.jpg</image>
58
+ </artist>
59
+ <artist>
60
+ <name>Just Jack</name>
61
+ <playcount>1</playcount>
62
+ <tagcount></tagcount>
63
+ <mbid>ac70f34d-95fd-40ed-b436-f5402fb5ffb8</mbid>
64
+ <url>http://www.last.fm/music/Just+Jack</url>
65
+ <streamable>1</streamable>
66
+ <image size="small">http://userserve-ak.last.fm/serve/34/382192.jpg</image>
67
+ <image size="medium">http://userserve-ak.last.fm/serve/64/382192.jpg</image>
68
+ <image size="large">http://userserve-ak.last.fm/serve/126/382192.jpg</image>
69
+ </artist>
70
+ <artist>
71
+ <name>Tokyo Police Club</name>
72
+ <playcount>1</playcount>
73
+ <tagcount></tagcount>
74
+ <mbid>35a6a353-b186-4c13-a264-d18d5e2ce853</mbid>
75
+ <url>http://www.last.fm/music/Tokyo+Police+Club</url>
76
+ <streamable>1</streamable>
77
+ <image size="small">http://userserve-ak.last.fm/serve/34/5822330.jpg</image>
78
+ <image size="medium">http://userserve-ak.last.fm/serve/64/5822330.jpg</image>
79
+ <image size="large">http://userserve-ak.last.fm/serve/126/5822330.jpg</image>
80
+ </artist>
81
+ <artist>
82
+ <name>The All-American Rejects</name>
83
+ <playcount>1</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid>09885b8e-f235-4b80-a02a-055539493173</mbid>
86
+ <url>http://www.last.fm/music/The+All-American+Rejects</url>
87
+ <streamable>1</streamable>
88
+ <image size="small">http://userserve-ak.last.fm/serve/34/22150769.jpg</image>
89
+ <image size="medium">http://userserve-ak.last.fm/serve/64/22150769.jpg</image>
90
+ <image size="large">http://userserve-ak.last.fm/serve/126/22150769.jpg</image>
91
+ </artist>
92
+ <artist>
93
+ <name>Limp Bizkit</name>
94
+ <playcount>1</playcount>
95
+ <tagcount></tagcount>
96
+ <mbid>8f9d6bb2-dba4-4cca-9967-cc02b9f4820c</mbid>
97
+ <url>http://www.last.fm/music/Limp+Bizkit</url>
98
+ <streamable>1</streamable>
99
+ <image size="small">http://userserve-ak.last.fm/serve/34/3044858.jpg</image>
100
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3044858.jpg</image>
101
+ <image size="large">http://userserve-ak.last.fm/serve/126/3044858.jpg</image>
102
+ </artist>
103
+ <artist>
104
+ <name>Kings of Leon</name>
105
+ <playcount>1</playcount>
106
+ <tagcount></tagcount>
107
+ <mbid>6ffb8ea9-2370-44d8-b678-e9237bbd347b</mbid>
108
+ <url>http://www.last.fm/music/Kings+of+Leon</url>
109
+ <streamable>1</streamable>
110
+ <image size="small">http://userserve-ak.last.fm/serve/34/11440969.jpg</image>
111
+ <image size="medium">http://userserve-ak.last.fm/serve/64/11440969.jpg</image>
112
+ <image size="large">http://userserve-ak.last.fm/serve/126/11440969.jpg</image>
113
+ </artist>
114
+ <artist>
115
+ <name>Elke Korn</name>
116
+ <playcount>1</playcount>
117
+ <tagcount></tagcount>
118
+ <mbid></mbid>
119
+ <url>http://www.last.fm/music/Elke+Korn</url>
120
+ <streamable>0</streamable>
121
+ <image size="small"></image>
122
+ <image size="medium"></image>
123
+ <image size="large"></image>
124
+ </artist>
125
+ <artist>
126
+ <name>Elle Milano</name>
127
+ <playcount>1</playcount>
128
+ <tagcount></tagcount>
129
+ <mbid>fdbbe6d2-540d-48df-9dfa-3bfebf8688e1</mbid>
130
+ <url>http://www.last.fm/music/Elle+Milano</url>
131
+ <streamable>1</streamable>
132
+ <image size="small">http://userserve-ak.last.fm/serve/34/4490168.jpg</image>
133
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4490168.jpg</image>
134
+ <image size="large">http://userserve-ak.last.fm/serve/126/4490168.jpg</image>
135
+ </artist>
136
+ <artist>
137
+ <name>Dizzee Rascal</name>
138
+ <playcount>1</playcount>
139
+ <tagcount></tagcount>
140
+ <mbid>1a99cc88-aea3-4fe3-96b9-20791667f65f</mbid>
141
+ <url>http://www.last.fm/music/Dizzee+Rascal</url>
142
+ <streamable>1</streamable>
143
+ <image size="small">http://userserve-ak.last.fm/serve/34/262891.jpg</image>
144
+ <image size="medium">http://userserve-ak.last.fm/serve/64/262891.jpg</image>
145
+ <image size="large">http://userserve-ak.last.fm/serve/126/262891.jpg</image>
146
+ </artist>
147
+ <artist>
148
+ <name>NULL</name>
149
+ <playcount>1</playcount>
150
+ <tagcount></tagcount>
151
+ <mbid>3f0bdf7f-3f40-4795-8b91-1fde13192b09</mbid>
152
+ <url>http://www.last.fm/music/NULL</url>
153
+ <streamable>1</streamable>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34/2756447.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2756447.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/2756447.jpg</image>
157
+ </artist>
158
+ <artist>
159
+ <name>Spillsbury</name>
160
+ <playcount>1</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid>9daa003e-6390-4d2b-9cde-899589826cf3</mbid>
163
+ <url>http://www.last.fm/music/Spillsbury</url>
164
+ <streamable>1</streamable>
165
+ <image size="small">http://userserve-ak.last.fm/serve/34/46275.jpg</image>
166
+ <image size="medium">http://userserve-ak.last.fm/serve/64/46275.jpg</image>
167
+ <image size="large">http://userserve-ak.last.fm/serve/126/46275.jpg</image>
168
+ </artist>
169
+ <artist>
170
+ <name>N*E*R*D</name>
171
+ <playcount>1</playcount>
172
+ <tagcount></tagcount>
173
+ <mbid></mbid>
174
+ <url>http://www.last.fm/music/N%2AE%2AR%2AD</url>
175
+ <streamable>1</streamable>
176
+ <image size="small">http://userserve-ak.last.fm/serve/34/6596405.jpg</image>
177
+ <image size="medium">http://userserve-ak.last.fm/serve/64/6596405.jpg</image>
178
+ <image size="large">http://userserve-ak.last.fm/serve/126/6596405.jpg</image>
179
+ </artist>
180
+ <artist>
181
+ <name>Mystery Jets</name>
182
+ <playcount>1</playcount>
183
+ <tagcount></tagcount>
184
+ <mbid>0f8bd5a7-c915-4e00-a035-fe3969e9a9b1</mbid>
185
+ <url>http://www.last.fm/music/Mystery+Jets</url>
186
+ <streamable>1</streamable>
187
+ <image size="small">http://userserve-ak.last.fm/serve/34/4371692.jpg</image>
188
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4371692.jpg</image>
189
+ <image size="large">http://userserve-ak.last.fm/serve/126/4371692.jpg</image>
190
+ </artist>
191
+ <artist>
192
+ <name>The Pussycat Dolls</name>
193
+ <playcount>1</playcount>
194
+ <tagcount></tagcount>
195
+ <mbid>1fda852b-92e9-4562-82fa-c52820a77b23</mbid>
196
+ <url>http://www.last.fm/music/The+Pussycat+Dolls</url>
197
+ <streamable>1</streamable>
198
+ <image size="small">http://userserve-ak.last.fm/serve/34/20037917.jpg</image>
199
+ <image size="medium">http://userserve-ak.last.fm/serve/64/20037917.jpg</image>
200
+ <image size="large">http://userserve-ak.last.fm/serve/126/20037917.jpg</image>
201
+ </artist>
202
+ <artist>
203
+ <name>OK Go</name>
204
+ <playcount>1</playcount>
205
+ <tagcount></tagcount>
206
+ <mbid>e132d370-2a59-4437-8610-756df28a5a02</mbid>
207
+ <url>http://www.last.fm/music/OK+Go</url>
208
+ <streamable>1</streamable>
209
+ <image size="small">http://userserve-ak.last.fm/serve/34/52752.jpg</image>
210
+ <image size="medium">http://userserve-ak.last.fm/serve/64/52752.jpg</image>
211
+ <image size="large">http://userserve-ak.last.fm/serve/126/52752.jpg</image>
212
+ </artist>
213
+ <artist>
214
+ <name>P.O.D.</name>
215
+ <playcount>1</playcount>
216
+ <tagcount></tagcount>
217
+ <mbid>57e79d57-b795-475e-9fa2-5dd9d5513b8c</mbid>
218
+ <url>http://www.last.fm/music/P.O.D.</url>
219
+ <streamable>1</streamable>
220
+ <image size="small">http://userserve-ak.last.fm/serve/34/846808.jpg</image>
221
+ <image size="medium">http://userserve-ak.last.fm/serve/64/846808.jpg</image>
222
+ <image size="large">http://userserve-ak.last.fm/serve/126/846808.jpg</image>
223
+ </artist>
224
+ <artist>
225
+ <name>Jay-Z</name>
226
+ <playcount>1</playcount>
227
+ <tagcount></tagcount>
228
+ <mbid>f82bcf78-5b69-4622-a5ef-73800768d9ac</mbid>
229
+ <url>http://www.last.fm/music/Jay-Z</url>
230
+ <streamable>1</streamable>
231
+ <image size="small">http://userserve-ak.last.fm/serve/34/391231.jpg</image>
232
+ <image size="medium">http://userserve-ak.last.fm/serve/64/391231.jpg</image>
233
+ <image size="large">http://userserve-ak.last.fm/serve/126/391231.jpg</image>
234
+ </artist>
235
+ <artist>
236
+ <name>The Bouncing Souls</name>
237
+ <playcount>1</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid>429d5f26-329c-41cc-bdff-17c29dbf1fb8</mbid>
240
+ <url>http://www.last.fm/music/The+Bouncing+Souls</url>
241
+ <streamable>1</streamable>
242
+ <image size="small">http://userserve-ak.last.fm/serve/34/134750.jpg</image>
243
+ <image size="medium">http://userserve-ak.last.fm/serve/64/134750.jpg</image>
244
+ <image size="large">http://userserve-ak.last.fm/serve/126/134750.jpg</image>
245
+ </artist>
246
+ <artist>
247
+ <name>Madonna</name>
248
+ <playcount>1</playcount>
249
+ <tagcount></tagcount>
250
+ <mbid>79239441-bfd5-4981-a70c-55c3f15c1287</mbid>
251
+ <url>http://www.last.fm/music/Madonna</url>
252
+ <streamable>1</streamable>
253
+ <image size="small">http://userserve-ak.last.fm/serve/34/8447995.jpg</image>
254
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8447995.jpg</image>
255
+ <image size="large">http://userserve-ak.last.fm/serve/126/8447995.jpg</image>
256
+ </artist>
257
+ <artist>
258
+ <name>Deftones</name>
259
+ <playcount>1</playcount>
260
+ <tagcount></tagcount>
261
+ <mbid>7527f6c2-d762-4b88-b5e2-9244f1e34c46</mbid>
262
+ <url>http://www.last.fm/music/Deftones</url>
263
+ <streamable>1</streamable>
264
+ <image size="small">http://userserve-ak.last.fm/serve/34/161123.jpg</image>
265
+ <image size="medium">http://userserve-ak.last.fm/serve/64/161123.jpg</image>
266
+ <image size="large">http://userserve-ak.last.fm/serve/126/161123.jpg</image>
267
+ </artist>
268
+ <artist>
269
+ <name>The King Blues</name>
270
+ <playcount>1</playcount>
271
+ <tagcount></tagcount>
272
+ <mbid>5d6f241c-b43c-4ff7-ae9f-6b7711bc6d00</mbid>
273
+ <url>http://www.last.fm/music/The+King+Blues</url>
274
+ <streamable>1</streamable>
275
+ <image size="small">http://userserve-ak.last.fm/serve/34/10326843.jpg</image>
276
+ <image size="medium">http://userserve-ak.last.fm/serve/64/10326843.jpg</image>
277
+ <image size="large">http://userserve-ak.last.fm/serve/126/10326843.jpg</image>
278
+ </artist>
279
+ <artist>
280
+ <name>Alien Ant Farm</name>
281
+ <playcount>1</playcount>
282
+ <tagcount></tagcount>
283
+ <mbid>8ac6cc32-8ddf-43b1-9ac4-4b04f9053176</mbid>
284
+ <url>http://www.last.fm/music/Alien+Ant+Farm</url>
285
+ <streamable>1</streamable>
286
+ <image size="small">http://userserve-ak.last.fm/serve/34/352772.jpg</image>
287
+ <image size="medium">http://userserve-ak.last.fm/serve/64/352772.jpg</image>
288
+ <image size="large">http://userserve-ak.last.fm/serve/126/352772.jpg</image>
289
+ </artist>
290
+ <artist>
291
+ <name>Juanes</name>
292
+ <playcount>1</playcount>
293
+ <tagcount></tagcount>
294
+ <mbid>8b0f05ce-354e-4121-9e0b-8b4732ea844f</mbid>
295
+ <url>http://www.last.fm/music/Juanes</url>
296
+ <streamable>1</streamable>
297
+ <image size="small">http://userserve-ak.last.fm/serve/34/2896117.jpg</image>
298
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2896117.jpg</image>
299
+ <image size="large">http://userserve-ak.last.fm/serve/126/2896117.jpg</image>
300
+ </artist>
301
+ <artist>
302
+ <name>The Rolling Stones</name>
303
+ <playcount>1</playcount>
304
+ <tagcount></tagcount>
305
+ <mbid>b071f9fa-14b0-4217-8e97-eb41da73f598</mbid>
306
+ <url>http://www.last.fm/music/The+Rolling+Stones</url>
307
+ <streamable>1</streamable>
308
+ <image size="small">http://userserve-ak.last.fm/serve/34/11008.jpg</image>
309
+ <image size="medium">http://userserve-ak.last.fm/serve/64/11008.jpg</image>
310
+ <image size="large">http://userserve-ak.last.fm/serve/126/11008.jpg</image>
311
+ </artist>
312
+ <artist>
313
+ <name>Kosheen</name>
314
+ <playcount>1</playcount>
315
+ <tagcount></tagcount>
316
+ <mbid>4f4bda3c-d636-4135-b65a-6cc26bc75788</mbid>
317
+ <url>http://www.last.fm/music/Kosheen</url>
318
+ <streamable>1</streamable>
319
+ <image size="small">http://userserve-ak.last.fm/serve/34/3309551.jpg</image>
320
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3309551.jpg</image>
321
+ <image size="large">http://userserve-ak.last.fm/serve/126/3309551.jpg</image>
322
+ </artist>
323
+ <artist>
324
+ <name>Don Omar Feat. Tego Calderon</name>
325
+ <playcount>1</playcount>
326
+ <tagcount></tagcount>
327
+ <mbid></mbid>
328
+ <url>http://www.last.fm/music/Don+Omar+Feat.+Tego+Calderon</url>
329
+ <streamable>0</streamable>
330
+ <image size="small">http://userserve-ak.last.fm/serve/34/2356196.jpg</image>
331
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2356196.jpg</image>
332
+ <image size="large">http://userserve-ak.last.fm/serve/126/2356196.jpg</image>
333
+ </artist>
334
+ <artist>
335
+ <name>The Hoosiers</name>
336
+ <playcount>1</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid></mbid>
339
+ <url>http://www.last.fm/music/The+Hoosiers</url>
340
+ <streamable>1</streamable>
341
+ <image size="small">http://userserve-ak.last.fm/serve/34/8944737.jpg</image>
342
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8944737.jpg</image>
343
+ <image size="large">http://userserve-ak.last.fm/serve/126/8944737.jpg</image>
344
+ </artist>
345
+ <artist>
346
+ <name>Eve</name>
347
+ <playcount>1</playcount>
348
+ <tagcount></tagcount>
349
+ <mbid>1ac10f5e-2079-4435-b78f-dda6ecdeba15</mbid>
350
+ <url>http://www.last.fm/music/Eve</url>
351
+ <streamable>1</streamable>
352
+ <image size="small">http://userserve-ak.last.fm/serve/34/2130385.jpg</image>
353
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2130385.jpg</image>
354
+ <image size="large">http://userserve-ak.last.fm/serve/126/2130385.jpg</image>
355
+ </artist>
356
+ <artist>
357
+ <name>Pet Shop Boys</name>
358
+ <playcount>1</playcount>
359
+ <tagcount></tagcount>
360
+ <mbid>be540c02-7898-4b79-9acc-c8122c7d9e83</mbid>
361
+ <url>http://www.last.fm/music/Pet+Shop+Boys</url>
362
+ <streamable>1</streamable>
363
+ <image size="small">http://userserve-ak.last.fm/serve/34/25726275.jpg</image>
364
+ <image size="medium">http://userserve-ak.last.fm/serve/64/25726275.jpg</image>
365
+ <image size="large">http://userserve-ak.last.fm/serve/126/25726275.jpg</image>
366
+ </artist>
367
+ <artist>
368
+ <name>Deep Blue Something</name>
369
+ <playcount>1</playcount>
370
+ <tagcount></tagcount>
371
+ <mbid>ae3f6a8a-c465-4707-8667-8ce0172bc417</mbid>
372
+ <url>http://www.last.fm/music/Deep+Blue+Something</url>
373
+ <streamable>1</streamable>
374
+ <image size="small">http://userserve-ak.last.fm/serve/34/218463.jpg</image>
375
+ <image size="medium">http://userserve-ak.last.fm/serve/64/218463.jpg</image>
376
+ <image size="large">http://userserve-ak.last.fm/serve/126/218463.jpg</image>
377
+ </artist>
378
+ <artist>
379
+ <name>BoA</name>
380
+ <playcount></playcount>
381
+ <tagcount>1</tagcount>
382
+ <mbid>a16d1433-ba89-4f72-a47b-a370add0bb55</mbid>
383
+ <url>http://www.last.fm/music/BoA</url>
384
+ <streamable>1</streamable>
385
+ <image size="small">http://userserve-ak.last.fm/serve/34/27533129.png</image>
386
+ <image size="medium">http://userserve-ak.last.fm/serve/64/27533129.png</image>
387
+ <image size="large">http://userserve-ak.last.fm/serve/126/27533129.png</image>
388
+ </artist>
389
+ <artist>
390
+ <name>5'nizza</name>
391
+ <playcount></playcount>
392
+ <tagcount>2</tagcount>
393
+ <mbid>18eefb0f-7f1c-4ca4-a9b1-d0f2f11bd6b1</mbid>
394
+ <url>http://www.last.fm/music/5%27nizza</url>
395
+ <streamable>1</streamable>
396
+ <image size="small">http://userserve-ak.last.fm/serve/34/80113.jpg</image>
397
+ <image size="medium">http://userserve-ak.last.fm/serve/64/80113.jpg</image>
398
+ <image size="large">http://userserve-ak.last.fm/serve/126/80113.jpg</image>
399
+ </artist>
400
+ <artist>
401
+ <name>Tenacious D</name>
402
+ <playcount></playcount>
403
+ <tagcount></tagcount>
404
+ <mbid>148ddea2-6839-4354-8e2c-5dfadf136b7f</mbid>
405
+ <url>http://www.last.fm/music/Tenacious+D</url>
406
+ <streamable>1</streamable>
407
+ <image size="small">http://userserve-ak.last.fm/serve/34/336180.jpg</image>
408
+ <image size="medium">http://userserve-ak.last.fm/serve/64/336180.jpg</image>
409
+ <image size="large">http://userserve-ak.last.fm/serve/126/336180.jpg</image>
410
+ </artist>
411
+ <artist>
412
+ <name>The Vapors</name>
413
+ <playcount></playcount>
414
+ <tagcount>2</tagcount>
415
+ <mbid>e389160d-6d98-4657-9a75-9229b41621bc</mbid>
416
+ <url>http://www.last.fm/music/The+Vapors</url>
417
+ <streamable>1</streamable>
418
+ <image size="small">http://userserve-ak.last.fm/serve/34/137600.jpg</image>
419
+ <image size="medium">http://userserve-ak.last.fm/serve/64/137600.jpg</image>
420
+ <image size="large">http://userserve-ak.last.fm/serve/126/137600.jpg</image>
421
+ </artist>
422
+ <artist>
423
+ <name>Piotr Machalica</name>
424
+ <playcount></playcount>
425
+ <tagcount>2</tagcount>
426
+ <mbid></mbid>
427
+ <url>http://www.last.fm/music/Piotr+Machalica</url>
428
+ <streamable>0</streamable>
429
+ <image size="small">http://userserve-ak.last.fm/serve/34/2936362.jpg</image>
430
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2936362.jpg</image>
431
+ <image size="large">http://userserve-ak.last.fm/serve/126/2936362.jpg</image>
432
+ </artist>
433
+ <artist>
434
+ <name>La Babosa Azul</name>
435
+ <playcount></playcount>
436
+ <tagcount>2</tagcount>
437
+ <mbid></mbid>
438
+ <url>http://www.last.fm/music/La+Babosa+Azul</url>
439
+ <streamable>0</streamable>
440
+ <image size="small">http://userserve-ak.last.fm/serve/34/9106917.jpg</image>
441
+ <image size="medium">http://userserve-ak.last.fm/serve/64/9106917.jpg</image>
442
+ <image size="large">http://userserve-ak.last.fm/serve/126/9106917.jpg</image>
443
+ </artist>
444
+ </artists></lfm>