hornairs-scrobbler 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/.gitignore +13 -0
  2. data/.loadpath +5 -0
  3. data/History.txt +5 -0
  4. data/MIT-LICENSE +19 -0
  5. data/Manifest +75 -0
  6. data/README.rdoc +104 -0
  7. data/Rakefile +10 -0
  8. data/VERSION.yml +5 -0
  9. data/examples/album.rb +20 -0
  10. data/examples/artist.rb +13 -0
  11. data/examples/playlist.rb +7 -0
  12. data/examples/scrobble.rb +31 -0
  13. data/examples/tag.rb +11 -0
  14. data/examples/track.rb +12 -0
  15. data/examples/user.rb +15 -0
  16. data/lib/scrobbler.rb +33 -0
  17. data/lib/scrobbler/album.rb +181 -0
  18. data/lib/scrobbler/artist.rb +165 -0
  19. data/lib/scrobbler/auth.rb +47 -0
  20. data/lib/scrobbler/base.rb +105 -0
  21. data/lib/scrobbler/event.rb +105 -0
  22. data/lib/scrobbler/geo.rb +27 -0
  23. data/lib/scrobbler/helper/image.rb +52 -0
  24. data/lib/scrobbler/helper/streamable.rb +40 -0
  25. data/lib/scrobbler/library.rb +112 -0
  26. data/lib/scrobbler/playing.rb +49 -0
  27. data/lib/scrobbler/playlist.rb +87 -0
  28. data/lib/scrobbler/radio.rb +12 -0
  29. data/lib/scrobbler/rest.rb +47 -0
  30. data/lib/scrobbler/scrobble.rb +116 -0
  31. data/lib/scrobbler/session.rb +9 -0
  32. data/lib/scrobbler/shout.rb +21 -0
  33. data/lib/scrobbler/simpleauth.rb +60 -0
  34. data/lib/scrobbler/tag.rb +113 -0
  35. data/lib/scrobbler/track.rb +152 -0
  36. data/lib/scrobbler/user.rb +222 -0
  37. data/lib/scrobbler/venue.rb +67 -0
  38. data/setup.rb +1585 -0
  39. data/tasks/jeweler.rake +15 -0
  40. data/tasks/rdoc.rake +7 -0
  41. data/tasks/tests.rake +13 -0
  42. data/tasks/yardoc.rake +8 -0
  43. data/test/fixtures/xml/album/info.xml +43 -0
  44. data/test/fixtures/xml/artist/fans.xml +52 -0
  45. data/test/fixtures/xml/artist/info.xml +58 -0
  46. data/test/fixtures/xml/artist/similar.xml +1004 -0
  47. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  48. data/test/fixtures/xml/artist/toptags.xml +19 -0
  49. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  50. data/test/fixtures/xml/auth/session.xml +7 -0
  51. data/test/fixtures/xml/auth/token.xml +3 -0
  52. data/test/fixtures/xml/event/attend.xml +3 -0
  53. data/test/fixtures/xml/event/attendees.xml +53 -0
  54. data/test/fixtures/xml/event/event.xml +35 -0
  55. data/test/fixtures/xml/event/shouts.xml +35 -0
  56. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  57. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  58. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  59. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  60. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  61. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  62. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  63. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  64. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  66. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  67. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  68. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  69. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  70. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  71. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  72. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  73. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  75. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  76. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  77. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  78. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  79. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  80. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  81. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  82. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  83. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  84. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  85. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  86. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  87. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  88. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  89. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  90. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  91. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  92. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  93. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  96. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  97. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  98. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  99. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  100. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  101. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  103. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  104. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  105. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  106. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  107. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  108. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  109. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  110. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  111. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  112. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  113. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  114. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  115. data/test/fixtures/xml/tag/similar.xml +254 -0
  116. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  117. data/test/fixtures/xml/tag/topartists.xml +605 -0
  118. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  119. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  120. data/test/fixtures/xml/track/fans.xml +34 -0
  121. data/test/fixtures/xml/track/info.xml +53 -0
  122. data/test/fixtures/xml/track/toptags.xml +504 -0
  123. data/test/fixtures/xml/user/events.xml +401 -0
  124. data/test/fixtures/xml/user/friends.xml +30 -0
  125. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  126. data/test/fixtures/xml/user/neighbours.xml +23 -0
  127. data/test/fixtures/xml/user/playlists.xml +61 -0
  128. data/test/fixtures/xml/user/profile.xml +12 -0
  129. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  130. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  131. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  132. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  133. data/test/fixtures/xml/user/topalbums.xml +61 -0
  134. data/test/fixtures/xml/user/topartists.xml +41 -0
  135. data/test/fixtures/xml/user/toptags.xml +44 -0
  136. data/test/fixtures/xml/user/toptracks.xml +65 -0
  137. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  138. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  139. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  140. data/test/fixtures/xml/venue/events.xml +151 -0
  141. data/test/fixtures/xml/venue/venue.xml +16 -0
  142. data/test/mocks/rest.rb +212 -0
  143. data/test/spec_helper.rb +7 -0
  144. data/test/test_helper.rb +20 -0
  145. data/test/unit/album_spec.rb +52 -0
  146. data/test/unit/artist_spec.rb +130 -0
  147. data/test/unit/auth_spec.rb +36 -0
  148. data/test/unit/event_spec.rb +109 -0
  149. data/test/unit/geo_spec.rb +148 -0
  150. data/test/unit/library_spec.rb +133 -0
  151. data/test/unit/playing_test.rb +53 -0
  152. data/test/unit/playlist_spec.rb +25 -0
  153. data/test/unit/radio_spec.rb +22 -0
  154. data/test/unit/scrobble_spec.rb +55 -0
  155. data/test/unit/scrobble_test.rb +69 -0
  156. data/test/unit/simpleauth_test.rb +45 -0
  157. data/test/unit/tag_spec.rb +101 -0
  158. data/test/unit/track_spec.rb +95 -0
  159. data/test/unit/user_spec.rb +264 -0
  160. data/test/unit/venue_spec.rb +104 -0
  161. metadata +265 -0
@@ -0,0 +1,739 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <albums user="xhochy" page="4" perPage="50" totalPages="8">
4
+ <album>
5
+ <name>Folie à Deux</name>
6
+ <playcount>7</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Fall+Out+Boy/Folie+%C3%A0+Deux</url>
10
+ <artist>
11
+ <name>Fall Out Boy</name>
12
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
13
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
14
+ </artist>
15
+ <image size="small">http://userserve-ak.last.fm/serve/34s/18400087.jpg</image>
16
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/18400087.jpg</image>
17
+ <image size="large">http://userserve-ak.last.fm/serve/126/18400087.jpg</image>
18
+ </album>
19
+ <album>
20
+ <name>This Is Alphabeat</name>
21
+ <playcount>7</playcount>
22
+ <tagcount></tagcount>
23
+ <mbid></mbid>
24
+ <url>http://www.last.fm/music/Alphabeat/This+Is+Alphabeat</url>
25
+ <artist>
26
+ <name>Alphabeat</name>
27
+ <mbid>dba7b6f3-8123-4a07-99d6-306acc41b7cd</mbid>
28
+ <url>http://www.last.fm/music/Alphabeat</url>
29
+ </artist>
30
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14443919.jpg</image>
31
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14443919.jpg</image>
32
+ <image size="large">http://userserve-ak.last.fm/serve/126/14443919.jpg</image>
33
+ </album>
34
+ <album>
35
+ <name>I'm Not Dead</name>
36
+ <playcount>7</playcount>
37
+ <tagcount></tagcount>
38
+ <mbid></mbid>
39
+ <url>http://www.last.fm/music/P%21nk/I%27m+Not+Dead</url>
40
+ <artist>
41
+ <name>P!nk</name>
42
+ <mbid></mbid>
43
+ <url>http://www.last.fm/music/P%21nk</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23757489.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23757489.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/23757489.jpg</image>
48
+ </album>
49
+ <album>
50
+ <name>If I Should Fall From Grace With God</name>
51
+ <playcount>7</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid>4bfd1a30-268b-40ea-a675-1c6bb875e932</mbid>
54
+ <url>http://www.last.fm/music/The+Pogues/If+I+Should+Fall+From+Grace+With+God</url>
55
+ <artist>
56
+ <name>The Pogues</name>
57
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
58
+ <url>http://www.last.fm/music/The+Pogues</url>
59
+ </artist>
60
+ <image size="small">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
61
+ <image size="medium">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
62
+ <image size="large">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
63
+ </album>
64
+ <album>
65
+ <name>Never Seen The Light Of Day</name>
66
+ <playcount>7</playcount>
67
+ <tagcount></tagcount>
68
+ <mbid></mbid>
69
+ <url>http://www.last.fm/music/Mando+Diao/Never+Seen+The+Light+Of+Day</url>
70
+ <artist>
71
+ <name>Mando Diao</name>
72
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
73
+ <url>http://www.last.fm/music/Mando+Diao</url>
74
+ </artist>
75
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15249355.jpg</image>
76
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15249355.jpg</image>
77
+ <image size="large">http://userserve-ak.last.fm/serve/126/15249355.jpg</image>
78
+ </album>
79
+ <album>
80
+ <name>Mercedes-Dance</name>
81
+ <playcount>7</playcount>
82
+ <tagcount></tagcount>
83
+ <mbid></mbid>
84
+ <url>http://www.last.fm/music/Jan+Delay/Mercedes-Dance</url>
85
+ <artist>
86
+ <name>Jan Delay</name>
87
+ <mbid>2692cab2-7563-4315-924f-563a59190fd9</mbid>
88
+ <url>http://www.last.fm/music/Jan+Delay</url>
89
+ </artist>
90
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
91
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
92
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
93
+ </album>
94
+ <album>
95
+ <name>Blur</name>
96
+ <playcount>7</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid>f629e473-1339-4713-8b91-bc1656cf9fba</mbid>
99
+ <url>http://www.last.fm/music/Blur/Blur</url>
100
+ <artist>
101
+ <name>Blur</name>
102
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
103
+ <url>http://www.last.fm/music/Blur</url>
104
+ </artist>
105
+ <image size="small">http://images.amazon.com/images/P/B000000WDA.01.THUMBZZZ.jpg</image>
106
+ <image size="medium">http://images.amazon.com/images/P/B000000WDA.01.MZZZZZZZ.jpg</image>
107
+ <image size="large">http://images.amazon.com/images/P/B000000WDA.01.LZZZZZZZ.jpg</image>
108
+ </album>
109
+ <album>
110
+ <name>Blast Action Heroes</name>
111
+ <playcount>7</playcount>
112
+ <tagcount></tagcount>
113
+ <mbid>4c4193f1-a753-4867-a55a-62901f3cc60c</mbid>
114
+ <url>http://www.last.fm/music/Beginner/Blast+Action+Heroes</url>
115
+ <artist>
116
+ <name>Beginner</name>
117
+ <mbid>709b55e5-0286-4fda-bf7e-3aff1894554d</mbid>
118
+ <url>http://www.last.fm/music/Beginner</url>
119
+ </artist>
120
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12639629.jpg</image>
121
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12639629.jpg</image>
122
+ <image size="large">http://userserve-ak.last.fm/serve/126/12639629.jpg</image>
123
+ </album>
124
+ <album>
125
+ <name>Fall Out Boy's Evening Out With Your Girlfriend</name>
126
+ <playcount>6</playcount>
127
+ <tagcount></tagcount>
128
+ <mbid>ac5bfcf1-9617-4a16-a140-df014b0df431</mbid>
129
+ <url>http://www.last.fm/music/Fall+Out+Boy/Fall+Out+Boy%27s+Evening+Out+With+Your+Girlfriend</url>
130
+ <artist>
131
+ <name>Fall Out Boy</name>
132
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
133
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
134
+ </artist>
135
+ <image size="small">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
136
+ <image size="medium">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
137
+ <image size="large">http://images.amazon.com/images/P/B00007KS91.01.MZZZZZZZ.jpg</image>
138
+ </album>
139
+ <album>
140
+ <name>La Bum</name>
141
+ <playcount>6</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid></mbid>
144
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/La+Bum</url>
145
+ <artist>
146
+ <name>Sportfreunde Stiller</name>
147
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
148
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
149
+ </artist>
150
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10054959.jpg</image>
151
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10054959.jpg</image>
152
+ <image size="large">http://userserve-ak.last.fm/serve/126/10054959.jpg</image>
153
+ </album>
154
+ <album>
155
+ <name>Gorillaz</name>
156
+ <playcount>6</playcount>
157
+ <tagcount></tagcount>
158
+ <mbid>d6b71621-f939-4abd-b99c-6b57d86e7f95</mbid>
159
+ <url>http://www.last.fm/music/Gorillaz/Gorillaz</url>
160
+ <artist>
161
+ <name>Gorillaz</name>
162
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
163
+ <url>http://www.last.fm/music/Gorillaz</url>
164
+ </artist>
165
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24507751.png</image>
166
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24507751.png</image>
167
+ <image size="large">http://userserve-ak.last.fm/serve/126/24507751.png</image>
168
+ </album>
169
+ <album>
170
+ <name>null</name>
171
+ <playcount>6</playcount>
172
+ <tagcount></tagcount>
173
+ <mbid></mbid>
174
+ <url>http://www.last.fm/music/Dizzee%2BRascal%2B%2526%2BArmand%2BVan%2BHelden/null</url>
175
+ <artist>
176
+ <name>Dizzee Rascal &amp; Armand Van Helden</name>
177
+ <mbid></mbid>
178
+ <url>http://www.last.fm/music/Dizzee%2BRascal%2B%2526%2BArmand%2BVan%2BHelden</url>
179
+ </artist>
180
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
181
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
182
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
183
+ </album>
184
+ <album>
185
+ <name>In the End</name>
186
+ <playcount>6</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid>1623f433-a297-4633-868a-633b5393a755</mbid>
189
+ <url>http://www.last.fm/music/Linkin+Park/In+the+End</url>
190
+ <artist>
191
+ <name>Linkin Park</name>
192
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
193
+ <url>http://www.last.fm/music/Linkin+Park</url>
194
+ </artist>
195
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11917207.jpg</image>
196
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11917207.jpg</image>
197
+ <image size="large">http://userserve-ak.last.fm/serve/126/11917207.jpg</image>
198
+ </album>
199
+ <album>
200
+ <name>Underground Network</name>
201
+ <playcount>6</playcount>
202
+ <tagcount></tagcount>
203
+ <mbid>e27cb16e-e8aa-474f-a2cf-deb73d9c0c8b</mbid>
204
+ <url>http://www.last.fm/music/Anti-Flag/Underground+Network</url>
205
+ <artist>
206
+ <name>Anti-Flag</name>
207
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
208
+ <url>http://www.last.fm/music/Anti-Flag</url>
209
+ </artist>
210
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19837175.jpg</image>
211
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19837175.jpg</image>
212
+ <image size="large">http://userserve-ak.last.fm/serve/126/19837175.jpg</image>
213
+ </album>
214
+ <album>
215
+ <name>Inside in Inside Out</name>
216
+ <playcount>6</playcount>
217
+ <tagcount></tagcount>
218
+ <mbid>ae37bf70-e7f9-439b-a8d3-17609f0fcc47</mbid>
219
+ <url>http://www.last.fm/music/The+Kooks/Inside+in+Inside+Out</url>
220
+ <artist>
221
+ <name>The Kooks</name>
222
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
223
+ <url>http://www.last.fm/music/The+Kooks</url>
224
+ </artist>
225
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27156255.png</image>
226
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27156255.png</image>
227
+ <image size="large">http://userserve-ak.last.fm/serve/126/27156255.png</image>
228
+ </album>
229
+ <album>
230
+ <name>The Best... Album In the World... Ever! Volume 4 (disc 1)</name>
231
+ <playcount>6</playcount>
232
+ <tagcount></tagcount>
233
+ <mbid></mbid>
234
+ <url>http://www.last.fm/music/The+Prodigy/The+Best...+Album+In+the+World...+Ever%21+Volume+4+%28disc+1%29</url>
235
+ <artist>
236
+ <name>The Prodigy</name>
237
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
238
+ <url>http://www.last.fm/music/The+Prodigy</url>
239
+ </artist>
240
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
241
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
242
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
243
+ </album>
244
+ <album>
245
+ <name>The Arockalypse</name>
246
+ <playcount>6</playcount>
247
+ <tagcount></tagcount>
248
+ <mbid></mbid>
249
+ <url>http://www.last.fm/music/Lordi/The+Arockalypse</url>
250
+ <artist>
251
+ <name>Lordi</name>
252
+ <mbid>b5b4ba6e-6e34-4669-a33b-0d813b4c3d83</mbid>
253
+ <url>http://www.last.fm/music/Lordi</url>
254
+ </artist>
255
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22998149.jpg</image>
256
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22998149.jpg</image>
257
+ <image size="large">http://userserve-ak.last.fm/serve/126/22998149.jpg</image>
258
+ </album>
259
+ <album>
260
+ <name>Tonight Franz Ferdinand</name>
261
+ <playcount>6</playcount>
262
+ <tagcount></tagcount>
263
+ <mbid></mbid>
264
+ <url>http://www.last.fm/music/Franz+Ferdinand/Tonight+Franz+Ferdinand</url>
265
+ <artist>
266
+ <name>Franz Ferdinand</name>
267
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
268
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
269
+ </artist>
270
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23400337.jpg</image>
271
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23400337.jpg</image>
272
+ <image size="large">http://userserve-ak.last.fm/serve/126/23400337.jpg</image>
273
+ </album>
274
+ <album>
275
+ <name>Zarte Metzger</name>
276
+ <playcount>6</playcount>
277
+ <tagcount></tagcount>
278
+ <mbid>40a04cb6-15ea-434b-bd5e-5c3b1008d964</mbid>
279
+ <url>http://www.last.fm/music/Badesalz/Zarte+Metzger</url>
280
+ <artist>
281
+ <name>Badesalz</name>
282
+ <mbid>533d4015-a55b-4f2a-b968-b5a43f08b381</mbid>
283
+ <url>http://www.last.fm/music/Badesalz</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19583447.jpg</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19583447.jpg</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/19583447.jpg</image>
288
+ </album>
289
+ <album>
290
+ <name>Razorlight</name>
291
+ <playcount>5</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid></mbid>
294
+ <url>http://www.last.fm/music/Razorlight/Razorlight</url>
295
+ <artist>
296
+ <name>Razorlight</name>
297
+ <mbid>f2cb0435-d643-4fab-9587-fdb0279330a7</mbid>
298
+ <url>http://www.last.fm/music/Razorlight</url>
299
+ </artist>
300
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8846369.jpg</image>
301
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8846369.jpg</image>
302
+ <image size="large">http://userserve-ak.last.fm/serve/126/8846369.jpg</image>
303
+ </album>
304
+ <album>
305
+ <name>Ein Kompliment</name>
306
+ <playcount>5</playcount>
307
+ <tagcount></tagcount>
308
+ <mbid>c9faa732-1434-49d4-8faf-5c6284521b63</mbid>
309
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/Ein+Kompliment</url>
310
+ <artist>
311
+ <name>Sportfreunde Stiller</name>
312
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
313
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
314
+ </artist>
315
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8767353.jpg</image>
316
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8767353.jpg</image>
317
+ <image size="large">http://userserve-ak.last.fm/serve/126/8767353.jpg</image>
318
+ </album>
319
+ <album>
320
+ <name>Aufstand im Schlaraffenland</name>
321
+ <playcount>5</playcount>
322
+ <tagcount></tagcount>
323
+ <mbid></mbid>
324
+ <url>http://www.last.fm/music/Deichkind/Aufstand+im+Schlaraffenland</url>
325
+ <artist>
326
+ <name>Deichkind</name>
327
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
328
+ <url>http://www.last.fm/music/Deichkind</url>
329
+ </artist>
330
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8879477.jpg</image>
331
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8879477.jpg</image>
332
+ <image size="large">http://userserve-ak.last.fm/serve/126/8879477.jpg</image>
333
+ </album>
334
+ <album>
335
+ <name>So This Is Great Britain</name>
336
+ <playcount>5</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid></mbid>
339
+ <url>http://www.last.fm/music/The+Holloways/So+This+Is+Great+Britain</url>
340
+ <artist>
341
+ <name>The Holloways</name>
342
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
343
+ <url>http://www.last.fm/music/The+Holloways</url>
344
+ </artist>
345
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
346
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
347
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
348
+ </album>
349
+ <album>
350
+ <name>Pure Vernunft darf niemals siegen</name>
351
+ <playcount>5</playcount>
352
+ <tagcount></tagcount>
353
+ <mbid>26bf3e36-a8ac-45fa-891f-80a378901a6b</mbid>
354
+ <url>http://www.last.fm/music/Tocotronic/Pure+Vernunft+darf+niemals+siegen</url>
355
+ <artist>
356
+ <name>Tocotronic</name>
357
+ <mbid>7717539b-33aa-45d5-b88d-9e627172db19</mbid>
358
+ <url>http://www.last.fm/music/Tocotronic</url>
359
+ </artist>
360
+ <image size="small">http://userserve-ak.last.fm/serve/34s/20326651.jpg</image>
361
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/20326651.jpg</image>
362
+ <image size="large">http://userserve-ak.last.fm/serve/126/20326651.jpg</image>
363
+ </album>
364
+ <album>
365
+ <name>Invaders Must Die</name>
366
+ <playcount>5</playcount>
367
+ <tagcount></tagcount>
368
+ <mbid></mbid>
369
+ <url>http://www.last.fm/music/The+Prodigy/Invaders+Must+Die</url>
370
+ <artist>
371
+ <name>The Prodigy</name>
372
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
373
+ <url>http://www.last.fm/music/The+Prodigy</url>
374
+ </artist>
375
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22922579.jpg</image>
376
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22922579.jpg</image>
377
+ <image size="large">http://userserve-ak.last.fm/serve/126/22922579.jpg</image>
378
+ </album>
379
+ <album>
380
+ <name>The Cologne Session 2003 (disc 1)</name>
381
+ <playcount>5</playcount>
382
+ <tagcount></tagcount>
383
+ <mbid>446b3e86-3e80-43e1-93b5-7090a72126ef</mbid>
384
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band/The+Cologne+Session+2003+%28disc+1%29</url>
385
+ <artist>
386
+ <name>Gentleman and the Far East Band</name>
387
+ <mbid>0bd01dff-a351-4405-bdf0-7ee4ad7bc02e</mbid>
388
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band</url>
389
+ </artist>
390
+ <image size="small">http://userserve-ak.last.fm/serve/34s/7847571.jpg</image>
391
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/7847571.jpg</image>
392
+ <image size="large">http://userserve-ak.last.fm/serve/126/7847571.jpg</image>
393
+ </album>
394
+ <album>
395
+ <name>The Lord of the Rings: The Two Towers</name>
396
+ <playcount>5</playcount>
397
+ <tagcount></tagcount>
398
+ <mbid>e696c18a-de92-4a2d-9133-c27b66befc9c</mbid>
399
+ <url>http://www.last.fm/music/Howard+Shore/The+Lord+of+the+Rings%3A+The+Two+Towers</url>
400
+ <artist>
401
+ <name>Howard Shore</name>
402
+ <mbid>9b58672a-e68e-4972-956e-a8985a165a1f</mbid>
403
+ <url>http://www.last.fm/music/Howard+Shore</url>
404
+ </artist>
405
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13142565.jpg</image>
406
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13142565.jpg</image>
407
+ <image size="large">http://userserve-ak.last.fm/serve/126/13142565.jpg</image>
408
+ </album>
409
+ <album>
410
+ <name>Incontrolable</name>
411
+ <playcount>5</playcount>
412
+ <tagcount></tagcount>
413
+ <mbid></mbid>
414
+ <url>http://www.last.fm/music/Ska-P/Incontrolable</url>
415
+ <artist>
416
+ <name>Ska-P</name>
417
+ <mbid>2de794c8-8826-48d0-90e0-6900183ba9e0</mbid>
418
+ <url>http://www.last.fm/music/Ska-P</url>
419
+ </artist>
420
+ <image size="small">http://images.amazon.com/images/P/B0000E1C73.01._SCMZZZZZZZ_.jpg</image>
421
+ <image size="medium">http://images.amazon.com/images/P/B0000E1C73.01._SCMZZZZZZZ_.jpg</image>
422
+ <image size="large">http://images.amazon.com/images/P/B0000E1C73.01._SCMZZZZZZZ_.jpg</image>
423
+ </album>
424
+ <album>
425
+ <name>Kasabian</name>
426
+ <playcount>5</playcount>
427
+ <tagcount></tagcount>
428
+ <mbid>95bc8942-e8b5-4f74-a58c-5ba086798c23</mbid>
429
+ <url>http://www.last.fm/music/Kasabian/Kasabian</url>
430
+ <artist>
431
+ <name>Kasabian</name>
432
+ <mbid>69b39eab-6577-46a4-a9f5-817839092033</mbid>
433
+ <url>http://www.last.fm/music/Kasabian</url>
434
+ </artist>
435
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19746191.jpg</image>
436
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19746191.jpg</image>
437
+ <image size="large">http://userserve-ak.last.fm/serve/126/19746191.jpg</image>
438
+ </album>
439
+ <album>
440
+ <name>Konk</name>
441
+ <playcount>5</playcount>
442
+ <tagcount></tagcount>
443
+ <mbid></mbid>
444
+ <url>http://www.last.fm/music/The+Kooks/Konk</url>
445
+ <artist>
446
+ <name>The Kooks</name>
447
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
448
+ <url>http://www.last.fm/music/The+Kooks</url>
449
+ </artist>
450
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15158593.jpg</image>
451
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15158593.jpg</image>
452
+ <image size="large">http://userserve-ak.last.fm/serve/126/15158593.jpg</image>
453
+ </album>
454
+ <album>
455
+ <name>Nick &amp; Norah's Infinite Playlist</name>
456
+ <playcount>5</playcount>
457
+ <tagcount></tagcount>
458
+ <mbid></mbid>
459
+ <url>http://www.last.fm/music/Bishop+Allen/Nick%2B%2526%2BNorah%2527s%2BInfinite%2BPlaylist</url>
460
+ <artist>
461
+ <name>Bishop Allen</name>
462
+ <mbid>1043a3a9-6722-4cdb-a28a-6acbad217b38</mbid>
463
+ <url>http://www.last.fm/music/Bishop+Allen</url>
464
+ </artist>
465
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25822855.jpg</image>
466
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25822855.jpg</image>
467
+ <image size="large">http://userserve-ak.last.fm/serve/126/25822855.jpg</image>
468
+ </album>
469
+ <album>
470
+ <name>Sweet Tracks 2003</name>
471
+ <playcount>5</playcount>
472
+ <tagcount></tagcount>
473
+ <mbid>37cb25d6-f6cd-4736-a1ca-6e4b856ee016</mbid>
474
+ <url>http://www.last.fm/music/Various+Artists/Sweet+Tracks+2003</url>
475
+ <artist>
476
+ <name>Various Artists</name>
477
+ <mbid>89ad4ac3-39f7-470e-963a-56509c546377</mbid>
478
+ <url>http://www.last.fm/music/Various+Artists</url>
479
+ </artist>
480
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
481
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
482
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
483
+ </album>
484
+ <album>
485
+ <name>Weezer (Red Album)</name>
486
+ <playcount>5</playcount>
487
+ <tagcount></tagcount>
488
+ <mbid></mbid>
489
+ <url>http://www.last.fm/music/Weezer/Weezer+%28Red+Album%29</url>
490
+ <artist>
491
+ <name>Weezer</name>
492
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
493
+ <url>http://www.last.fm/music/Weezer</url>
494
+ </artist>
495
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12796121.jpg</image>
496
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12796121.jpg</image>
497
+ <image size="large">http://userserve-ak.last.fm/serve/126/12796121.jpg</image>
498
+ </album>
499
+ <album>
500
+ <name>We'll Live and Die In These Towns</name>
501
+ <playcount>5</playcount>
502
+ <tagcount></tagcount>
503
+ <mbid></mbid>
504
+ <url>http://www.last.fm/music/The+Enemy/We%27ll+Live+and+Die+In+These+Towns</url>
505
+ <artist>
506
+ <name>The Enemy</name>
507
+ <mbid></mbid>
508
+ <url>http://www.last.fm/music/The+Enemy</url>
509
+ </artist>
510
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9687255.jpg</image>
511
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9687255.jpg</image>
512
+ <image size="large">http://userserve-ak.last.fm/serve/126/9687255.jpg</image>
513
+ </album>
514
+ <album>
515
+ <name>.Limbo Messiah</name>
516
+ <playcount>5</playcount>
517
+ <tagcount></tagcount>
518
+ <mbid></mbid>
519
+ <url>http://www.last.fm/music/Beatsteaks/.Limbo+Messiah</url>
520
+ <artist>
521
+ <name>Beatsteaks</name>
522
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
523
+ <url>http://www.last.fm/music/Beatsteaks</url>
524
+ </artist>
525
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25351339.jpg</image>
526
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25351339.jpg</image>
527
+ <image size="large">http://userserve-ak.last.fm/serve/126/25351339.jpg</image>
528
+ </album>
529
+ <album>
530
+ <name>Think Before You Speak</name>
531
+ <playcount>5</playcount>
532
+ <tagcount></tagcount>
533
+ <mbid></mbid>
534
+ <url>http://www.last.fm/music/Good+Shoes/Think+Before+You+Speak</url>
535
+ <artist>
536
+ <name>Good Shoes</name>
537
+ <mbid>789e5db3-502b-4f13-8039-88c70e053fa5</mbid>
538
+ <url>http://www.last.fm/music/Good+Shoes</url>
539
+ </artist>
540
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13946885.jpg</image>
541
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13946885.jpg</image>
542
+ <image size="large">http://userserve-ak.last.fm/serve/126/13946885.jpg</image>
543
+ </album>
544
+ <album>
545
+ <name>Santogold</name>
546
+ <playcount>4</playcount>
547
+ <tagcount></tagcount>
548
+ <mbid></mbid>
549
+ <url>http://www.last.fm/music/Santogold/Santogold</url>
550
+ <artist>
551
+ <name>Santogold</name>
552
+ <mbid>d7311646-287b-4d3a-9a4f-7d46f93075e5</mbid>
553
+ <url>http://www.last.fm/music/Santogold</url>
554
+ </artist>
555
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25646267.png</image>
556
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25646267.png</image>
557
+ <image size="large">http://userserve-ak.last.fm/serve/126/25646267.png</image>
558
+ </album>
559
+ <album>
560
+ <name>A New Kind of Army</name>
561
+ <playcount>4</playcount>
562
+ <tagcount></tagcount>
563
+ <mbid>391193df-ebfe-4fc4-9cdc-3c8dbf2febdb</mbid>
564
+ <url>http://www.last.fm/music/Anti-Flag/A+New+Kind+of+Army</url>
565
+ <artist>
566
+ <name>Anti-Flag</name>
567
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
568
+ <url>http://www.last.fm/music/Anti-Flag</url>
569
+ </artist>
570
+ <image size="small">http://images.amazon.com/images/P/B00000IFUO.01.MZZZZZZZ.jpg</image>
571
+ <image size="medium">http://images.amazon.com/images/P/B00000IFUO.01.MZZZZZZZ.jpg</image>
572
+ <image size="large">http://images.amazon.com/images/P/B00000IFUO.01.MZZZZZZZ.jpg</image>
573
+ </album>
574
+ <album>
575
+ <name>The Denyos</name>
576
+ <playcount>4</playcount>
577
+ <tagcount></tagcount>
578
+ <mbid>fec83701-6a1d-49ac-8f91-1848d56e1b4f</mbid>
579
+ <url>http://www.last.fm/music/Denyo/The+Denyos</url>
580
+ <artist>
581
+ <name>Denyo</name>
582
+ <mbid>8bb50f73-dd8b-4b43-b667-bc5c0ec4057a</mbid>
583
+ <url>http://www.last.fm/music/Denyo</url>
584
+ </artist>
585
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8723187.jpg</image>
586
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8723187.jpg</image>
587
+ <image size="large">http://userserve-ak.last.fm/serve/126/8723187.jpg</image>
588
+ </album>
589
+ <album>
590
+ <name>The Back Room</name>
591
+ <playcount>4</playcount>
592
+ <tagcount></tagcount>
593
+ <mbid>0d0f03e6-3d7b-42df-abd6-3ae22cc6b38d</mbid>
594
+ <url>http://www.last.fm/music/Editors/The+Back+Room</url>
595
+ <artist>
596
+ <name>Editors</name>
597
+ <mbid>0efe858c-89e5-4e47-906a-356fa953fd6e</mbid>
598
+ <url>http://www.last.fm/music/Editors</url>
599
+ </artist>
600
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19865989.jpg</image>
601
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19865989.jpg</image>
602
+ <image size="large">http://userserve-ak.last.fm/serve/126/19865989.jpg</image>
603
+ </album>
604
+ <album>
605
+ <name>Yours Truly, Angry Mob</name>
606
+ <playcount>4</playcount>
607
+ <tagcount></tagcount>
608
+ <mbid></mbid>
609
+ <url>http://www.last.fm/music/Kaiser+Chiefs/Yours+Truly%2C+Angry+Mob</url>
610
+ <artist>
611
+ <name>Kaiser Chiefs</name>
612
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
613
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
614
+ </artist>
615
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9218885.gif</image>
616
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9218885.gif</image>
617
+ <image size="large">http://userserve-ak.last.fm/serve/126/9218885.gif</image>
618
+ </album>
619
+ <album>
620
+ <name>Die For Your Government</name>
621
+ <playcount>4</playcount>
622
+ <tagcount></tagcount>
623
+ <mbid></mbid>
624
+ <url>http://www.last.fm/music/Anti-Flag/Die+For+Your+Government</url>
625
+ <artist>
626
+ <name>Anti-Flag</name>
627
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
628
+ <url>http://www.last.fm/music/Anti-Flag</url>
629
+ </artist>
630
+ <image size="small">http://images.amazon.com/images/P/B0000005XM.01.THUMBZZZ.jpg</image>
631
+ <image size="medium">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
632
+ <image size="large">http://images.amazon.com/images/P/B0000005XM.01.LZZZZZZZ.jpg</image>
633
+ </album>
634
+ <album>
635
+ <name>About What You Know</name>
636
+ <playcount>4</playcount>
637
+ <tagcount></tagcount>
638
+ <mbid></mbid>
639
+ <url>http://www.last.fm/music/Little+Man+Tate/About+What+You+Know</url>
640
+ <artist>
641
+ <name>Little Man Tate</name>
642
+ <mbid>e7cf7ff9-ed2f-4315-aca8-bcbd3b2bfa71</mbid>
643
+ <url>http://www.last.fm/music/Little+Man+Tate</url>
644
+ </artist>
645
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11290697.jpg</image>
646
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11290697.jpg</image>
647
+ <image size="large">http://userserve-ak.last.fm/serve/126/11290697.jpg</image>
648
+ </album>
649
+ <album>
650
+ <name>Be Here Now</name>
651
+ <playcount>4</playcount>
652
+ <tagcount></tagcount>
653
+ <mbid>933c1abd-bde9-4e01-9dbe-3cd404f22095</mbid>
654
+ <url>http://www.last.fm/music/Oasis/Be+Here+Now</url>
655
+ <artist>
656
+ <name>Oasis</name>
657
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
658
+ <url>http://www.last.fm/music/Oasis</url>
659
+ </artist>
660
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23745807.jpg</image>
661
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23745807.jpg</image>
662
+ <image size="large">http://userserve-ak.last.fm/serve/126/23745807.jpg</image>
663
+ </album>
664
+ <album>
665
+ <name>In Your Honor</name>
666
+ <playcount>4</playcount>
667
+ <tagcount></tagcount>
668
+ <mbid></mbid>
669
+ <url>http://www.last.fm/music/Foo+Fighters/In+Your+Honor</url>
670
+ <artist>
671
+ <name>Foo Fighters</name>
672
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
673
+ <url>http://www.last.fm/music/Foo+Fighters</url>
674
+ </artist>
675
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
676
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
677
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
678
+ </album>
679
+ <album>
680
+ <name>Ein Neuer Tag</name>
681
+ <playcount>4</playcount>
682
+ <tagcount></tagcount>
683
+ <mbid></mbid>
684
+ <url>http://www.last.fm/music/Juli/Ein+Neuer+Tag</url>
685
+ <artist>
686
+ <name>Juli</name>
687
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
688
+ <url>http://www.last.fm/music/Juli</url>
689
+ </artist>
690
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10298971.jpg</image>
691
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10298971.jpg</image>
692
+ <image size="large">http://userserve-ak.last.fm/serve/126/10298971.jpg</image>
693
+ </album>
694
+ <album>
695
+ <name>3</name>
696
+ <playcount>4</playcount>
697
+ <tagcount></tagcount>
698
+ <mbid>4761409c-ba9a-4555-b144-53abc0db6b06</mbid>
699
+ <url>http://www.last.fm/music/Soulfly/3</url>
700
+ <artist>
701
+ <name>Soulfly</name>
702
+ <mbid>832a43c7-aa7d-439b-a6b4-4f1afa671c24</mbid>
703
+ <url>http://www.last.fm/music/Soulfly</url>
704
+ </artist>
705
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8772829.jpg</image>
706
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8772829.jpg</image>
707
+ <image size="large">http://userserve-ak.last.fm/serve/126/8772829.jpg</image>
708
+ </album>
709
+ <album>
710
+ <name>Life for Rent</name>
711
+ <playcount>4</playcount>
712
+ <tagcount></tagcount>
713
+ <mbid>dd4298a2-07f6-411a-8725-bfe78593064a</mbid>
714
+ <url>http://www.last.fm/music/Dido/Life+for+Rent</url>
715
+ <artist>
716
+ <name>Dido</name>
717
+ <mbid>d1353a0c-26fb-4318-a116-defde9c7c9ad</mbid>
718
+ <url>http://www.last.fm/music/Dido</url>
719
+ </artist>
720
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23744719.jpg</image>
721
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23744719.jpg</image>
722
+ <image size="large">http://userserve-ak.last.fm/serve/126/23744719.jpg</image>
723
+ </album>
724
+ <album>
725
+ <name>Sixes &amp; Sevens</name>
726
+ <playcount>4</playcount>
727
+ <tagcount></tagcount>
728
+ <mbid></mbid>
729
+ <url>http://www.last.fm/music/Adam+Green/Sixes%2B%2526%2BSevens</url>
730
+ <artist>
731
+ <name>Adam Green</name>
732
+ <mbid>150e799b-3244-45d9-a6cb-5a3e8c33d430</mbid>
733
+ <url>http://www.last.fm/music/Adam+Green</url>
734
+ </artist>
735
+ <image size="small">http://userserve-ak.last.fm/serve/34s/26007413.png</image>
736
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/26007413.png</image>
737
+ <image size="large">http://userserve-ak.last.fm/serve/126/26007413.png</image>
738
+ </album>
739
+ </albums></lfm>