rockstar 0.6.4 → 0.7.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.
- data/README.md +1 -3
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/lib/rockstar.rb +1 -0
- data/lib/rockstar/library.rb +13 -0
- data/lib/rockstar/track.rb +3 -1
- data/lib/rockstar/user.rb +22 -1
- data/rockstar.gemspec +16 -10
- data/test/fixtures/xml/library/getalbums_user_jnunemaker.xml +704 -0
- data/test/fixtures/xml/library/getartists_user_jnunemaker.xml +554 -0
- data/test/fixtures/xml/track/getinfo_artist_Carrie_Underwood_track_Before_He_Cheats.xml +1 -1
- data/test/fixtures/xml/track/getinfo_artist_Karrie_Underwood_track_Before_He_Cheats.xml +55 -0
- data/test/unit/test_library.rb +65 -0
- data/test/unit/test_track.rb +4 -0
- metadata +113 -77
data/README.md
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
# Rockstar
|
2
|
-
|
3
|
-
[](http://travis-ci.org/bitboxer/rockstar)
|
1
|
+
# Rockstar [](https://next.travis-ci.org/putpat/rockstar)
|
4
2
|
|
5
3
|
Rockstar is a wrapper for the last.fm audioscrobbler web services (http://www.last.fm/api/). This gem is based on the scrobbler
|
6
4
|
gem by John Nunemaker and was updated to use the 2.0 version of the last.fm api
|
data/Rakefile
CHANGED
@@ -9,8 +9,8 @@ begin
|
|
9
9
|
gem.name = "rockstar"
|
10
10
|
gem.summary = %Q{wrapper for audioscrobbler (last.fm) web services}
|
11
11
|
gem.description = %Q{This gem is an updated version of jnunemakers scrobbler gem. Rockstar uses v2.0 of the last.fm api.}
|
12
|
-
gem.email = "bodo@
|
13
|
-
gem.homepage = "http://github.com/
|
12
|
+
gem.email = "bodo@putpat.tv"
|
13
|
+
gem.homepage = "http://github.com/putpat/rockstar"
|
14
14
|
gem.authors = ["Bodo Tasche"]
|
15
15
|
gem.add_dependency("hpricot", ">=0.4.86")
|
16
16
|
gem.add_dependency("activesupport", ">=1.4.2")
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.7.0
|
data/lib/rockstar.rb
CHANGED
@@ -0,0 +1,13 @@
|
|
1
|
+
module Rockstar
|
2
|
+
class Library < Base
|
3
|
+
|
4
|
+
def artists(force=false, options = {})
|
5
|
+
get_instance("library.getArtists", :artists, :artist, options, force)
|
6
|
+
end
|
7
|
+
|
8
|
+
def albums(force=false, options = {})
|
9
|
+
get_instance("library.getAlbums", :albums, :album, options, force)
|
10
|
+
end
|
11
|
+
|
12
|
+
end
|
13
|
+
end
|
data/lib/rockstar/track.rb
CHANGED
@@ -41,8 +41,9 @@ class RequestFailedError < StandardError; end
|
|
41
41
|
|
42
42
|
module Rockstar
|
43
43
|
class Track < Base
|
44
|
-
attr_accessor :artist, :artist_mbid, :name, :mbid, :playcount, :rank, :url
|
44
|
+
attr_accessor :artist, :artist_mbid, :name, :mbid, :playcount, :rank, :url, :now_playing
|
45
45
|
attr_accessor :summary, :content, :streamable, :album, :album_mbid, :date, :date_uts, :duration
|
46
|
+
alias_method :now_playing?, :now_playing
|
46
47
|
|
47
48
|
# only seems to be used on top tracks for tag
|
48
49
|
attr_accessor :count, :thumbnail, :image, :images
|
@@ -179,6 +180,7 @@ module Rockstar
|
|
179
180
|
|
180
181
|
return self if xml.nil?
|
181
182
|
|
183
|
+
self.now_playing = xml['nowplaying'] == 'true' ? true : false
|
182
184
|
self.artist_mbid = (xml).at(:artist)['mbid'] if (xml).at(:artist) && (xml).at(:artist)['mbid']
|
183
185
|
self.artist_mbid = (xml).at(:artist).at(:mbid).inner_html if artist_mbid.nil? && (xml).at(:artist) && (xml).at(:artist).at(:mbid)
|
184
186
|
self.mbid = (xml).at(:mbid).inner_html if (xml).at(:mbid)
|
data/lib/rockstar/user.rb
CHANGED
@@ -113,7 +113,7 @@ module Rockstar
|
|
113
113
|
@avatar = @images["small"]
|
114
114
|
end
|
115
115
|
|
116
|
-
def top_artists(force=false, options = {}
|
116
|
+
def top_artists(force=false, options = {})
|
117
117
|
default_options = {
|
118
118
|
:period => self.period
|
119
119
|
}
|
@@ -175,6 +175,27 @@ module Rockstar
|
|
175
175
|
(doc/:track).inject([]) { |elements, el| elements << Track.new_from_xml(el); elements }
|
176
176
|
end
|
177
177
|
|
178
|
+
# Wrappers for Rockstar::Library
|
179
|
+
def artists(force=false, options = {})
|
180
|
+
default_options = {
|
181
|
+
:user => @username
|
182
|
+
}
|
183
|
+
options = default_options.merge(options)
|
184
|
+
|
185
|
+
library = Rockstar::Library.new
|
186
|
+
library.artists(false, options)
|
187
|
+
end
|
188
|
+
|
189
|
+
def albums(force=false, options = {})
|
190
|
+
default_options = {
|
191
|
+
:user => @username
|
192
|
+
}
|
193
|
+
options = default_options.merge(options)
|
194
|
+
|
195
|
+
library = Rockstar::Library.new
|
196
|
+
library.albums(false, options)
|
197
|
+
end
|
198
|
+
|
178
199
|
# Get the recommendated events for the user, auth.session.key needed.
|
179
200
|
def events(session_key, force = false)
|
180
201
|
get_instance("user.getEvents", :events, :event, {:user => @username, :sk => session_key}, force)
|
data/rockstar.gemspec
CHANGED
@@ -4,14 +4,14 @@
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name =
|
8
|
-
s.version = "0.
|
7
|
+
s.name = "rockstar"
|
8
|
+
s.version = "0.7.0"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
-
s.authors = [
|
12
|
-
s.date =
|
13
|
-
s.description =
|
14
|
-
s.email =
|
11
|
+
s.authors = ["Bodo Tasche"]
|
12
|
+
s.date = "2012-11-15"
|
13
|
+
s.description = "This gem is an updated version of jnunemakers scrobbler gem. Rockstar uses v2.0 of the last.fm api."
|
14
|
+
s.email = "bodo@putpat.tv"
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"README.md"
|
17
17
|
]
|
@@ -42,6 +42,7 @@ Gem::Specification.new do |s|
|
|
42
42
|
"lib/rockstar/chart.rb",
|
43
43
|
"lib/rockstar/event.rb",
|
44
44
|
"lib/rockstar/geo.rb",
|
45
|
+
"lib/rockstar/library.rb",
|
45
46
|
"lib/rockstar/metro.rb",
|
46
47
|
"lib/rockstar/rest.rb",
|
47
48
|
"lib/rockstar/session.rb",
|
@@ -64,11 +65,14 @@ Gem::Specification.new do |s|
|
|
64
65
|
"test/fixtures/xml/artist/gettoptracks_artist_Metallica.xml",
|
65
66
|
"test/fixtures/xml/geo/getevents_location_london.xml",
|
66
67
|
"test/fixtures/xml/geo/getmetros_country_germany.xml",
|
68
|
+
"test/fixtures/xml/library/getalbums_user_jnunemaker.xml",
|
69
|
+
"test/fixtures/xml/library/getartists_user_jnunemaker.xml",
|
67
70
|
"test/fixtures/xml/tag/gettopalbums_tag_rock.xml",
|
68
71
|
"test/fixtures/xml/tag/gettopartists_tag_rock.xml",
|
69
72
|
"test/fixtures/xml/tag/gettoptags.xml",
|
70
73
|
"test/fixtures/xml/tag/gettoptracks_tag_rock.xml",
|
71
74
|
"test/fixtures/xml/track/getinfo_artist_Carrie_Underwood_track_Before_He_Cheats.xml",
|
75
|
+
"test/fixtures/xml/track/getinfo_artist_Karrie_Underwood_track_Before_He_Cheats.xml",
|
72
76
|
"test/fixtures/xml/track/getsimilar_artist_Carrie_Underwood_limit_10_track_Before_He_Cheats.xml",
|
73
77
|
"test/fixtures/xml/track/gettopfans_artist_Carrie_Underwood_track_Before_He_Cheats.xml",
|
74
78
|
"test/fixtures/xml/track/gettoptags_artist_Carrie_Underwood_track_Before_He_Cheats.xml",
|
@@ -104,16 +108,17 @@ Gem::Specification.new do |s|
|
|
104
108
|
"test/unit/test_artist.rb",
|
105
109
|
"test/unit/test_chart.rb",
|
106
110
|
"test/unit/test_geo.rb",
|
111
|
+
"test/unit/test_library.rb",
|
107
112
|
"test/unit/test_rockstar.rb",
|
108
113
|
"test/unit/test_tag.rb",
|
109
114
|
"test/unit/test_track.rb",
|
110
115
|
"test/unit/test_user.rb",
|
111
116
|
"test/unit/test_venue.rb"
|
112
117
|
]
|
113
|
-
s.homepage =
|
114
|
-
s.require_paths = [
|
115
|
-
s.rubygems_version =
|
116
|
-
s.summary =
|
118
|
+
s.homepage = "http://github.com/putpat/rockstar"
|
119
|
+
s.require_paths = ["lib"]
|
120
|
+
s.rubygems_version = "1.8.23"
|
121
|
+
s.summary = "wrapper for audioscrobbler (last.fm) web services"
|
117
122
|
s.test_files = [
|
118
123
|
"examples/album.rb",
|
119
124
|
"examples/artist.rb",
|
@@ -128,6 +133,7 @@ Gem::Specification.new do |s|
|
|
128
133
|
"test/unit/test_artist.rb",
|
129
134
|
"test/unit/test_chart.rb",
|
130
135
|
"test/unit/test_geo.rb",
|
136
|
+
"test/unit/test_library.rb",
|
131
137
|
"test/unit/test_rockstar.rb",
|
132
138
|
"test/unit/test_tag.rb",
|
133
139
|
"test/unit/test_track.rb",
|
@@ -0,0 +1,704 @@
|
|
1
|
+
<lfm status="ok">
|
2
|
+
<topalbums user="jnunemaker" type="overall">
|
3
|
+
|
4
|
+
<album rank="1">
|
5
|
+
<name>The Very Best of Dwight Yoakam</name>
|
6
|
+
<playcount>560</playcount>
|
7
|
+
<mbid>b6a051b4-1a1e-4c33-a1e5-0ea6e920a13f</mbid>
|
8
|
+
<url>http://www.last.fm/music/Dwight+Yoakam/The+Very+Best+of+Dwight+Yoakam</url>
|
9
|
+
<artist>
|
10
|
+
<name>Dwight Yoakam</name>
|
11
|
+
<mbid>0fb711af-c7ba-4bdc-b0b6-b8495fc0a590</mbid>
|
12
|
+
<url>http://www.last.fm/music/Dwight+Yoakam</url>
|
13
|
+
</artist>
|
14
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/8725405.jpg</image>
|
15
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/8725405.jpg</image>
|
16
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/8725405.jpg</image>
|
17
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8725405.jpg</image>
|
18
|
+
</album> <album rank="2">
|
19
|
+
<name>This Woman</name>
|
20
|
+
<playcount>527</playcount>
|
21
|
+
<mbid>080a4038-5156-460a-8dd5-daaa7d16b6a6</mbid>
|
22
|
+
<url>http://www.last.fm/music/LeAnn+Rimes/This+Woman</url>
|
23
|
+
<artist>
|
24
|
+
<name>LeAnn Rimes</name>
|
25
|
+
<mbid>9092d8e1-9b38-4372-a96d-000b8561a8bc</mbid>
|
26
|
+
<url>http://www.last.fm/music/LeAnn+Rimes</url>
|
27
|
+
</artist>
|
28
|
+
<image size="small">http://images.amazon.com/images/P/B00067BD8K.01._SCMZZZZZZZ_.jpg</image>
|
29
|
+
<image size="medium">http://images.amazon.com/images/P/B00067BD8K.01._SCMZZZZZZZ_.jpg</image>
|
30
|
+
<image size="large">http://images.amazon.com/images/P/B00067BD8K.01._SCMZZZZZZZ_.jpg</image>
|
31
|
+
<image size="extralarge">http://images.amazon.com/images/P/B00067BD8K.01._SCMZZZZZZZ_.jpg</image>
|
32
|
+
</album> <album rank="3">
|
33
|
+
<name>U218 Singles (Deluxe Version)</name>
|
34
|
+
<playcount>516</playcount>
|
35
|
+
<mbid></mbid>
|
36
|
+
<url>http://www.last.fm/music/U2/U218+Singles+%28Deluxe+Version%29</url>
|
37
|
+
<artist>
|
38
|
+
<name>U2</name>
|
39
|
+
<mbid>a3cb23fc-acd3-4ce0-8f36-1e5aa6a18432</mbid>
|
40
|
+
<url>http://www.last.fm/music/U2</url>
|
41
|
+
</artist>
|
42
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/22439601.jpg</image>
|
43
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/22439601.jpg</image>
|
44
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/22439601.jpg</image>
|
45
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/22439601.jpg</image>
|
46
|
+
</album> <album rank="4">
|
47
|
+
<name>Fearless</name>
|
48
|
+
<playcount>510</playcount>
|
49
|
+
<mbid>ea871e3e-1111-4b67-b835-4eba0e508a6d</mbid>
|
50
|
+
<url>http://www.last.fm/music/Taylor+Swift/Fearless</url>
|
51
|
+
<artist>
|
52
|
+
<name>Taylor Swift</name>
|
53
|
+
<mbid>20244d07-534f-4eff-b4d4-930878889970</mbid>
|
54
|
+
<url>http://www.last.fm/music/Taylor+Swift</url>
|
55
|
+
</artist>
|
56
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/23516111.jpg</image>
|
57
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/23516111.jpg</image>
|
58
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/23516111.jpg</image>
|
59
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/23516111.jpg</image>
|
60
|
+
</album> <album rank="5">
|
61
|
+
<name>Gossip in the Grain</name>
|
62
|
+
<playcount>459</playcount>
|
63
|
+
<mbid>c3122df2-e67a-4125-9c1a-0845095986cd</mbid>
|
64
|
+
<url>http://www.last.fm/music/Ray+LaMontagne/Gossip+in+the+Grain</url>
|
65
|
+
<artist>
|
66
|
+
<name>Ray LaMontagne</name>
|
67
|
+
<mbid>b5c4ffa2-82e1-4b72-b7f3-c60afb74b860</mbid>
|
68
|
+
<url>http://www.last.fm/music/Ray+LaMontagne</url>
|
69
|
+
</artist>
|
70
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/31945051.jpg</image>
|
71
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/31945051.jpg</image>
|
72
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/31945051.jpg</image>
|
73
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/31945051.jpg</image>
|
74
|
+
</album> <album rank="6">
|
75
|
+
<name>Over and Underneath (Bonus Video Version)</name>
|
76
|
+
<playcount>419</playcount>
|
77
|
+
<mbid></mbid>
|
78
|
+
<url>http://www.last.fm/music/Tenth+Avenue+North/Over+and+Underneath+%28Bonus+Video+Version%29</url>
|
79
|
+
<artist>
|
80
|
+
<name>Tenth Avenue North</name>
|
81
|
+
<mbid>12455562-6e62-4c14-b21c-6f9664af2aa0</mbid>
|
82
|
+
<url>http://www.last.fm/music/Tenth+Avenue+North</url>
|
83
|
+
</artist>
|
84
|
+
<image size="small">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
85
|
+
<image size="medium">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
86
|
+
<image size="large">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
87
|
+
<image size="extralarge">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
88
|
+
</album> <album rank="7">
|
89
|
+
<name>All the Stars and Boulevards</name>
|
90
|
+
<playcount>366</playcount>
|
91
|
+
<mbid>78e0a82c-f6e3-45fe-8f5c-190ae91bf357</mbid>
|
92
|
+
<url>http://www.last.fm/music/Augustana/All+the+Stars+and+Boulevards</url>
|
93
|
+
<artist>
|
94
|
+
<name>Augustana</name>
|
95
|
+
<mbid>919ccb96-12da-48f5-bd91-ec410d956048</mbid>
|
96
|
+
<url>http://www.last.fm/music/Augustana</url>
|
97
|
+
</artist>
|
98
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/32587485.jpg</image>
|
99
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/32587485.jpg</image>
|
100
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/32587485.jpg</image>
|
101
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/32587485.jpg</image>
|
102
|
+
</album> <album rank="8">
|
103
|
+
<name>So Far ... The Acoustic Sessions</name>
|
104
|
+
<playcount>366</playcount>
|
105
|
+
<mbid></mbid>
|
106
|
+
<url>http://www.last.fm/music/Bethany+Dillon/So+Far+...+The+Acoustic+Sessions</url>
|
107
|
+
<artist>
|
108
|
+
<name>Bethany Dillon</name>
|
109
|
+
<mbid>553ae8b9-22e5-48a2-bd5b-67d3472a0a2b</mbid>
|
110
|
+
<url>http://www.last.fm/music/Bethany+Dillon</url>
|
111
|
+
</artist>
|
112
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/14728677.jpg</image>
|
113
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/14728677.jpg</image>
|
114
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/14728677.jpg</image>
|
115
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/14728677.jpg</image>
|
116
|
+
</album> <album rank="9">
|
117
|
+
<name>Twice The Speed Of Life</name>
|
118
|
+
<playcount>360</playcount>
|
119
|
+
<mbid>1d7122dc-7566-405e-8204-e692473ebce3</mbid>
|
120
|
+
<url>http://www.last.fm/music/Sugarland/Twice+The+Speed+Of+Life</url>
|
121
|
+
<artist>
|
122
|
+
<name>Sugarland</name>
|
123
|
+
<mbid>f87b740a-c22b-4fae-9987-1f3e16f840c4</mbid>
|
124
|
+
<url>http://www.last.fm/music/Sugarland</url>
|
125
|
+
</artist>
|
126
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/8674501.jpg</image>
|
127
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/8674501.jpg</image>
|
128
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/8674501.jpg</image>
|
129
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8674501.jpg</image>
|
130
|
+
</album> <album rank="10">
|
131
|
+
<name>Only By the Night (Deluxe Version)</name>
|
132
|
+
<playcount>345</playcount>
|
133
|
+
<mbid></mbid>
|
134
|
+
<url>http://www.last.fm/music/Kings+of+Leon/Only+By+the+Night+%28Deluxe+Version%29</url>
|
135
|
+
<artist>
|
136
|
+
<name>Kings of Leon</name>
|
137
|
+
<mbid>6ffb8ea9-2370-44d8-b678-e9237bbd347b</mbid>
|
138
|
+
<url>http://www.last.fm/music/Kings+of+Leon</url>
|
139
|
+
</artist>
|
140
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/26975161.jpg</image>
|
141
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/26975161.jpg</image>
|
142
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/26975161.jpg</image>
|
143
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/26975161.jpg</image>
|
144
|
+
</album> <album rank="11">
|
145
|
+
<name>Some Hearts</name>
|
146
|
+
<playcount>335</playcount>
|
147
|
+
<mbid>a33b9822-9f09-4e19-9d6e-e05af85c727b</mbid>
|
148
|
+
<url>http://www.last.fm/music/Carrie+Underwood/Some+Hearts</url>
|
149
|
+
<artist>
|
150
|
+
<name>Carrie Underwood</name>
|
151
|
+
<mbid>70f0e309-5418-49b6-a130-666e2f76eecd</mbid>
|
152
|
+
<url>http://www.last.fm/music/Carrie+Underwood</url>
|
153
|
+
</artist>
|
154
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/34894445.png</image>
|
155
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/34894445.png</image>
|
156
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/34894445.png</image>
|
157
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/34894445.png</image>
|
158
|
+
</album> <album rank="12">
|
159
|
+
<name>Feels Like Today</name>
|
160
|
+
<playcount>334</playcount>
|
161
|
+
<mbid>47826aa0-951c-4266-ab59-412139a088e3</mbid>
|
162
|
+
<url>http://www.last.fm/music/Rascal+Flatts/Feels+Like+Today</url>
|
163
|
+
<artist>
|
164
|
+
<name>Rascal Flatts</name>
|
165
|
+
<mbid>6e0ae159-8449-4262-bba5-18ec87fa529f</mbid>
|
166
|
+
<url>http://www.last.fm/music/Rascal+Flatts</url>
|
167
|
+
</artist>
|
168
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/45279213.jpg</image>
|
169
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/45279213.jpg</image>
|
170
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/45279213.jpg</image>
|
171
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/45279213.jpg</image>
|
172
|
+
</album> <album rank="13">
|
173
|
+
<name>Move Along</name>
|
174
|
+
<playcount>326</playcount>
|
175
|
+
<mbid>3a89338d-ce10-41df-87e4-e2288e88f216</mbid>
|
176
|
+
<url>http://www.last.fm/music/The+All-American+Rejects/Move+Along</url>
|
177
|
+
<artist>
|
178
|
+
<name>The All-American Rejects</name>
|
179
|
+
<mbid>09885b8e-f235-4b80-a02a-055539493173</mbid>
|
180
|
+
<url>http://www.last.fm/music/The+All-American+Rejects</url>
|
181
|
+
</artist>
|
182
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/13961105.jpg</image>
|
183
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/13961105.jpg</image>
|
184
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/13961105.jpg</image>
|
185
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/13961105.jpg</image>
|
186
|
+
</album> <album rank="14">
|
187
|
+
<name>Taking The Long Way</name>
|
188
|
+
<playcount>317</playcount>
|
189
|
+
<mbid>fac790ef-7b75-4855-86ad-a90d01a69f3a</mbid>
|
190
|
+
<url>http://www.last.fm/music/Dixie+Chicks/Taking+The+Long+Way</url>
|
191
|
+
<artist>
|
192
|
+
<name>Dixie Chicks</name>
|
193
|
+
<mbid>3248ed2d-bada-41b5-a7b6-ac88faa1f1ac</mbid>
|
194
|
+
<url>http://www.last.fm/music/Dixie+Chicks</url>
|
195
|
+
</artist>
|
196
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/32197321.jpg</image>
|
197
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/32197321.jpg</image>
|
198
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/32197321.jpg</image>
|
199
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/32197321.jpg</image>
|
200
|
+
</album> <album rank="15">
|
201
|
+
<name>The Outsiders (Deluxe Version)</name>
|
202
|
+
<playcount>288</playcount>
|
203
|
+
<mbid></mbid>
|
204
|
+
<url>http://www.last.fm/music/NEEDTOBREATHE/The+Outsiders+%28Deluxe+Version%29</url>
|
205
|
+
<artist>
|
206
|
+
<name>NEEDTOBREATHE</name>
|
207
|
+
<mbid>c5c2f1bb-09db-429f-8f77-ed9dfe39a36b</mbid>
|
208
|
+
<url>http://www.last.fm/music/NEEDTOBREATHE</url>
|
209
|
+
</artist>
|
210
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/35205587.jpg</image>
|
211
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/35205587.jpg</image>
|
212
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/35205587.jpg</image>
|
213
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/35205587.jpg</image>
|
214
|
+
</album> <album rank="16">
|
215
|
+
<name>Eye To The Telescope</name>
|
216
|
+
<playcount>286</playcount>
|
217
|
+
<mbid>1364d86a-3a3e-4bba-93ab-66ef78b3dcd1</mbid>
|
218
|
+
<url>http://www.last.fm/music/KT+Tunstall/Eye+To+The+Telescope</url>
|
219
|
+
<artist>
|
220
|
+
<name>KT Tunstall</name>
|
221
|
+
<mbid>951d2103-9c7d-4849-ae60-88bf6aa4790b</mbid>
|
222
|
+
<url>http://www.last.fm/music/KT+Tunstall</url>
|
223
|
+
</artist>
|
224
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/36705027.png</image>
|
225
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/36705027.png</image>
|
226
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/36705027.png</image>
|
227
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/36705027.png</image>
|
228
|
+
</album> <album rank="17">
|
229
|
+
<name>Glee - The Music, Vol. 1</name>
|
230
|
+
<playcount>277</playcount>
|
231
|
+
<mbid></mbid>
|
232
|
+
<url>http://www.last.fm/music/Glee+Cast/Glee+-+The+Music%2C+Vol.+1</url>
|
233
|
+
<artist>
|
234
|
+
<name>Glee Cast</name>
|
235
|
+
<mbid></mbid>
|
236
|
+
<url>http://www.last.fm/music/Glee+Cast</url>
|
237
|
+
</artist>
|
238
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/37283651.jpg</image>
|
239
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/37283651.jpg</image>
|
240
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/37283651.jpg</image>
|
241
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37283651.jpg</image>
|
242
|
+
</album> <album rank="18">
|
243
|
+
<name>Keep It Together</name>
|
244
|
+
<playcount>265</playcount>
|
245
|
+
<mbid>202e6534-74b8-4547-8695-8e939cfae508</mbid>
|
246
|
+
<url>http://www.last.fm/music/Guster/Keep+It+Together</url>
|
247
|
+
<artist>
|
248
|
+
<name>Guster</name>
|
249
|
+
<mbid>6cbe1e63-5895-4168-ac7e-f0d2836ba0c1</mbid>
|
250
|
+
<url>http://www.last.fm/music/Guster</url>
|
251
|
+
</artist>
|
252
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/8634277.jpg</image>
|
253
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/8634277.jpg</image>
|
254
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/8634277.jpg</image>
|
255
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8634277.jpg</image>
|
256
|
+
</album> <album rank="19">
|
257
|
+
<name>One Of The Boys</name>
|
258
|
+
<playcount>265</playcount>
|
259
|
+
<mbid>6bba6c37-7089-46fd-91a1-845d1911317b</mbid>
|
260
|
+
<url>http://www.last.fm/music/Gretchen+Wilson/One+Of+The+Boys</url>
|
261
|
+
<artist>
|
262
|
+
<name>Gretchen Wilson</name>
|
263
|
+
<mbid>11d9fc14-e6ac-4c50-81e7-062dd82566ce</mbid>
|
264
|
+
<url>http://www.last.fm/music/Gretchen+Wilson</url>
|
265
|
+
</artist>
|
266
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/31833711.jpg</image>
|
267
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/31833711.jpg</image>
|
268
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/31833711.jpg</image>
|
269
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/31833711.jpg</image>
|
270
|
+
</album> <album rank="20">
|
271
|
+
<name>Rabbit Fur Coat</name>
|
272
|
+
<playcount>260</playcount>
|
273
|
+
<mbid>97d5185a-0762-41b4-b7d4-59d72fcf0afe</mbid>
|
274
|
+
<url>http://www.last.fm/music/Jenny+Lewis+with+The+Watson+Twins/Rabbit+Fur+Coat</url>
|
275
|
+
<artist>
|
276
|
+
<name>Jenny Lewis with The Watson Twins</name>
|
277
|
+
<mbid>4b179fe2-dfa5-40b1-b6db-b56dbc3b5f09</mbid>
|
278
|
+
<url>http://www.last.fm/music/Jenny+Lewis+with+The+Watson+Twins</url>
|
279
|
+
</artist>
|
280
|
+
<image size="small">http://images.amazon.com/images/P/B000CQQHPY.01.MZZZZZZZ.jpg</image>
|
281
|
+
<image size="medium">http://images.amazon.com/images/P/B000CQQHPY.01.MZZZZZZZ.jpg</image>
|
282
|
+
<image size="large">http://images.amazon.com/images/P/B000CQQHPY.01.MZZZZZZZ.jpg</image>
|
283
|
+
<image size="extralarge">http://images.amazon.com/images/P/B000CQQHPY.01.MZZZZZZZ.jpg</image>
|
284
|
+
</album> <album rank="21">
|
285
|
+
<name>Timeless</name>
|
286
|
+
<playcount>251</playcount>
|
287
|
+
<mbid>9fa2a645-25ff-47e4-8ed3-aa51794d7db6</mbid>
|
288
|
+
<url>http://www.last.fm/music/Martina+McBride/Timeless</url>
|
289
|
+
<artist>
|
290
|
+
<name>Martina McBride</name>
|
291
|
+
<mbid>b0a55bd8-60c7-45c1-b78e-f20e4c8adba1</mbid>
|
292
|
+
<url>http://www.last.fm/music/Martina+McBride</url>
|
293
|
+
</artist>
|
294
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/32173137.jpg</image>
|
295
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/32173137.jpg</image>
|
296
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/32173137.jpg</image>
|
297
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/32173137.jpg</image>
|
298
|
+
</album> <album rank="22">
|
299
|
+
<name>Fireflies</name>
|
300
|
+
<playcount>250</playcount>
|
301
|
+
<mbid>6174cef4-1447-4936-8454-e90a7f1cb1a6</mbid>
|
302
|
+
<url>http://www.last.fm/music/Faith+Hill/Fireflies</url>
|
303
|
+
<artist>
|
304
|
+
<name>Faith Hill</name>
|
305
|
+
<mbid>406552d4-5ba1-4226-b7c0-367bc50fc767</mbid>
|
306
|
+
<url>http://www.last.fm/music/Faith+Hill</url>
|
307
|
+
</artist>
|
308
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/8749673.jpg</image>
|
309
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/8749673.jpg</image>
|
310
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/8749673.jpg</image>
|
311
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8749673.jpg</image>
|
312
|
+
</album> <album rank="23">
|
313
|
+
<name>Be Here</name>
|
314
|
+
<playcount>246</playcount>
|
315
|
+
<mbid>99bfcd40-b086-41f7-83d7-786fbbb3c99b</mbid>
|
316
|
+
<url>http://www.last.fm/music/Keith+Urban/Be+Here</url>
|
317
|
+
<artist>
|
318
|
+
<name>Keith Urban</name>
|
319
|
+
<mbid>f45da029-7b00-4bf3-962c-0eeb20309cc4</mbid>
|
320
|
+
<url>http://www.last.fm/music/Keith+Urban</url>
|
321
|
+
</artist>
|
322
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/11497779.jpg</image>
|
323
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/11497779.jpg</image>
|
324
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/11497779.jpg</image>
|
325
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/11497779.jpg</image>
|
326
|
+
</album> <album rank="24">
|
327
|
+
<name>Ocean Eyes</name>
|
328
|
+
<playcount>242</playcount>
|
329
|
+
<mbid>5f89c929-127e-4f5e-929b-4293e18eff6e</mbid>
|
330
|
+
<url>http://www.last.fm/music/Owl+City/Ocean+Eyes</url>
|
331
|
+
<artist>
|
332
|
+
<name>Owl City</name>
|
333
|
+
<mbid></mbid>
|
334
|
+
<url>http://www.last.fm/music/Owl+City</url>
|
335
|
+
</artist>
|
336
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/38908681.png</image>
|
337
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/38908681.png</image>
|
338
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/38908681.png</image>
|
339
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/38908681.png</image>
|
340
|
+
</album> <album rank="25">
|
341
|
+
<name>Spirit</name>
|
342
|
+
<playcount>237</playcount>
|
343
|
+
<mbid>de42042d-dc04-4878-9309-66f65a9af23e</mbid>
|
344
|
+
<url>http://www.last.fm/music/Leona+Lewis/Spirit</url>
|
345
|
+
<artist>
|
346
|
+
<name>Leona Lewis</name>
|
347
|
+
<mbid>8d552dfc-648f-401f-90de-e925013ca537</mbid>
|
348
|
+
<url>http://www.last.fm/music/Leona+Lewis</url>
|
349
|
+
</artist>
|
350
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/37550579.png</image>
|
351
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/37550579.png</image>
|
352
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/37550579.png</image>
|
353
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/37550579.png</image>
|
354
|
+
</album> <album rank="26">
|
355
|
+
<name>Restless</name>
|
356
|
+
<playcount>235</playcount>
|
357
|
+
<mbid>53ddabee-7ada-45e6-af00-27e6c30af9fd</mbid>
|
358
|
+
<url>http://www.last.fm/music/Sara+Evans/Restless</url>
|
359
|
+
<artist>
|
360
|
+
<name>Sara Evans</name>
|
361
|
+
<mbid>773af101-792f-48b8-a588-09a07cff5e53</mbid>
|
362
|
+
<url>http://www.last.fm/music/Sara+Evans</url>
|
363
|
+
</artist>
|
364
|
+
<image size="small">http://images.amazon.com/images/P/B0000AC8PE.01.MZZZZZZZ.jpg</image>
|
365
|
+
<image size="medium">http://images.amazon.com/images/P/B0000AC8PE.01.MZZZZZZZ.jpg</image>
|
366
|
+
<image size="large">http://images.amazon.com/images/P/B0000AC8PE.01.MZZZZZZZ.jpg</image>
|
367
|
+
<image size="extralarge">http://images.amazon.com/images/P/B0000AC8PE.01.MZZZZZZZ.jpg</image>
|
368
|
+
</album> <album rank="27">
|
369
|
+
<name>Taylor Swift</name>
|
370
|
+
<playcount>231</playcount>
|
371
|
+
<mbid>89e56bd4-e2ed-4927-8e9c-df4b0d318748</mbid>
|
372
|
+
<url>http://www.last.fm/music/Taylor+Swift/Taylor+Swift</url>
|
373
|
+
<artist>
|
374
|
+
<name>Taylor Swift</name>
|
375
|
+
<mbid>20244d07-534f-4eff-b4d4-930878889970</mbid>
|
376
|
+
<url>http://www.last.fm/music/Taylor+Swift</url>
|
377
|
+
</artist>
|
378
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/10304119.jpg</image>
|
379
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/10304119.jpg</image>
|
380
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/10304119.jpg</image>
|
381
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/10304119.jpg</image>
|
382
|
+
</album> <album rank="28">
|
383
|
+
<name>Big Ones</name>
|
384
|
+
<playcount>220</playcount>
|
385
|
+
<mbid>082bc530-580c-4628-8aa9-9003118ffa8b</mbid>
|
386
|
+
<url>http://www.last.fm/music/Aerosmith/Big+Ones</url>
|
387
|
+
<artist>
|
388
|
+
<name>Aerosmith</name>
|
389
|
+
<mbid>3d2b98e5-556f-4451-a3ff-c50ea18d57cb</mbid>
|
390
|
+
<url>http://www.last.fm/music/Aerosmith</url>
|
391
|
+
</artist>
|
392
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/42406951.png</image>
|
393
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/42406951.png</image>
|
394
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/42406951.png</image>
|
395
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/42406951.png</image>
|
396
|
+
</album> <album rank="29">
|
397
|
+
<name>The Tigers Have Spoken</name>
|
398
|
+
<playcount>213</playcount>
|
399
|
+
<mbid>f4a2e7e7-e745-4cc3-bb96-e1a3cf3818ac</mbid>
|
400
|
+
<url>http://www.last.fm/music/Neko+Case/The+Tigers+Have+Spoken</url>
|
401
|
+
<artist>
|
402
|
+
<name>Neko Case</name>
|
403
|
+
<mbid>e13d2935-8c42-4c0a-96d7-654062acf106</mbid>
|
404
|
+
<url>http://www.last.fm/music/Neko+Case</url>
|
405
|
+
</artist>
|
406
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/40678963.png</image>
|
407
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/40678963.png</image>
|
408
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/40678963.png</image>
|
409
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/40678963.png</image>
|
410
|
+
</album> <album rank="30">
|
411
|
+
<name>The Purest Place</name>
|
412
|
+
<playcount>213</playcount>
|
413
|
+
<mbid>2e8f0dd0-e099-48f9-87e8-52b5bf9947cf</mbid>
|
414
|
+
<url>http://www.last.fm/music/Watermark/The+Purest+Place</url>
|
415
|
+
<artist>
|
416
|
+
<name>Watermark</name>
|
417
|
+
<mbid>8901dff3-5ceb-47fd-a47c-c7a0dd6fd375</mbid>
|
418
|
+
<url>http://www.last.fm/music/Watermark</url>
|
419
|
+
</artist>
|
420
|
+
<image size="small">http://images.amazon.com/images/P/B0002JUWX4.01.MZZZZZZZ.jpg</image>
|
421
|
+
<image size="medium">http://images.amazon.com/images/P/B0002JUWX4.01.MZZZZZZZ.jpg</image>
|
422
|
+
<image size="large">http://images.amazon.com/images/P/B0002JUWX4.01.MZZZZZZZ.jpg</image>
|
423
|
+
<image size="extralarge">http://images.amazon.com/images/P/B0002JUWX4.01.MZZZZZZZ.jpg</image>
|
424
|
+
</album> <album rank="31">
|
425
|
+
<name>When Somebody Loves You</name>
|
426
|
+
<playcount>212</playcount>
|
427
|
+
<mbid>633c582d-9a7f-43b4-9b3f-0be287301634</mbid>
|
428
|
+
<url>http://www.last.fm/music/Alan+Jackson/When+Somebody+Loves+You</url>
|
429
|
+
<artist>
|
430
|
+
<name>Alan Jackson</name>
|
431
|
+
<mbid>7291957b-c463-4275-a41c-a104c9e2337f</mbid>
|
432
|
+
<url>http://www.last.fm/music/Alan+Jackson</url>
|
433
|
+
</artist>
|
434
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/32082903.jpg</image>
|
435
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/32082903.jpg</image>
|
436
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/32082903.jpg</image>
|
437
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/32082903.jpg</image>
|
438
|
+
</album> <album rank="32">
|
439
|
+
<name>Hopes And Fears</name>
|
440
|
+
<playcount>207</playcount>
|
441
|
+
<mbid>a3dcfb76-ebbe-40ea-9796-5f1c45f2ba73</mbid>
|
442
|
+
<url>http://www.last.fm/music/Keane/Hopes+And+Fears</url>
|
443
|
+
<artist>
|
444
|
+
<name>Keane</name>
|
445
|
+
<mbid>c7020c6d-cae9-4db3-92a7-e5c561cbad50</mbid>
|
446
|
+
<url>http://www.last.fm/music/Keane</url>
|
447
|
+
</artist>
|
448
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/8641121.jpg</image>
|
449
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/8641121.jpg</image>
|
450
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/8641121.jpg</image>
|
451
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8641121.jpg</image>
|
452
|
+
</album> <album rank="33">
|
453
|
+
<name>Fortuneteller's Melody</name>
|
454
|
+
<playcount>198</playcount>
|
455
|
+
<mbid>bb572612-98ed-4cea-8893-2cdc5dee7c81</mbid>
|
456
|
+
<url>http://www.last.fm/music/SHeDaisy/Fortuneteller%27s+Melody</url>
|
457
|
+
<artist>
|
458
|
+
<name>SHeDaisy</name>
|
459
|
+
<mbid>166c939c-a97e-44b9-b405-23d49a72df4e</mbid>
|
460
|
+
<url>http://www.last.fm/music/SHeDaisy</url>
|
461
|
+
</artist>
|
462
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/45316629.jpg</image>
|
463
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/45316629.jpg</image>
|
464
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/45316629.jpg</image>
|
465
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/45316629.jpg</image>
|
466
|
+
</album> <album rank="34">
|
467
|
+
<name>Fly</name>
|
468
|
+
<playcount>194</playcount>
|
469
|
+
<mbid>3e0b924d-ccaa-46f1-a29b-94fab98f4f4c</mbid>
|
470
|
+
<url>http://www.last.fm/music/Dixie+Chicks/Fly</url>
|
471
|
+
<artist>
|
472
|
+
<name>Dixie Chicks</name>
|
473
|
+
<mbid>3248ed2d-bada-41b5-a7b6-ac88faa1f1ac</mbid>
|
474
|
+
<url>http://www.last.fm/music/Dixie+Chicks</url>
|
475
|
+
</artist>
|
476
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/32486175.jpg</image>
|
477
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/32486175.jpg</image>
|
478
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/32486175.jpg</image>
|
479
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/32486175.jpg</image>
|
480
|
+
</album> <album rank="35">
|
481
|
+
<name>On A Clear Night</name>
|
482
|
+
<playcount>189</playcount>
|
483
|
+
<mbid>6b751266-4d87-4f77-b0d1-e24c972da67b</mbid>
|
484
|
+
<url>http://www.last.fm/music/Missy+Higgins/On+A+Clear+Night</url>
|
485
|
+
<artist>
|
486
|
+
<name>Missy Higgins</name>
|
487
|
+
<mbid>3ac2a4a2-52b3-498b-bbc8-31443c68dfe0</mbid>
|
488
|
+
<url>http://www.last.fm/music/Missy+Higgins</url>
|
489
|
+
</artist>
|
490
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/3697956.jpg</image>
|
491
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/3697956.jpg</image>
|
492
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/3697956.jpg</image>
|
493
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/3697956.jpg</image>
|
494
|
+
</album> <album rank="36">
|
495
|
+
<name>Enjoy The Ride</name>
|
496
|
+
<playcount>174</playcount>
|
497
|
+
<mbid>349fd9ea-ff9f-4b0d-8f72-733159ed54ae</mbid>
|
498
|
+
<url>http://www.last.fm/music/Sugarland/Enjoy+The+Ride</url>
|
499
|
+
<artist>
|
500
|
+
<name>Sugarland</name>
|
501
|
+
<mbid>f87b740a-c22b-4fae-9987-1f3e16f840c4</mbid>
|
502
|
+
<url>http://www.last.fm/music/Sugarland</url>
|
503
|
+
</artist>
|
504
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/44626245.jpg</image>
|
505
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/44626245.jpg</image>
|
506
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/44626245.jpg</image>
|
507
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/44626245.jpg</image>
|
508
|
+
</album> <album rank="37">
|
509
|
+
<name>David Cook</name>
|
510
|
+
<playcount>173</playcount>
|
511
|
+
<mbid>d4cccd1c-61fb-4939-aa53-49798314724e</mbid>
|
512
|
+
<url>http://www.last.fm/music/David+Cook/David+Cook</url>
|
513
|
+
<artist>
|
514
|
+
<name>David Cook</name>
|
515
|
+
<mbid></mbid>
|
516
|
+
<url>http://www.last.fm/music/David+Cook</url>
|
517
|
+
</artist>
|
518
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/32457147.jpg</image>
|
519
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/32457147.jpg</image>
|
520
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/32457147.jpg</image>
|
521
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/32457147.jpg</image>
|
522
|
+
</album> <album rank="38">
|
523
|
+
<name>Dog Problems (Bonus Track Version)</name>
|
524
|
+
<playcount>172</playcount>
|
525
|
+
<mbid></mbid>
|
526
|
+
<url>http://www.last.fm/music/The+Format/Dog+Problems+%28Bonus+Track+Version%29</url>
|
527
|
+
<artist>
|
528
|
+
<name>The Format</name>
|
529
|
+
<mbid>81b07a2a-cdf0-4c5e-a68c-8d910e1f0ea6</mbid>
|
530
|
+
<url>http://www.last.fm/music/The+Format</url>
|
531
|
+
</artist>
|
532
|
+
<image size="small">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
533
|
+
<image size="medium">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
534
|
+
<image size="large">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
535
|
+
<image size="extralarge">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
536
|
+
</album> <album rank="39">
|
537
|
+
<name>Mud on the Tires</name>
|
538
|
+
<playcount>169</playcount>
|
539
|
+
<mbid>de1fbef7-d6cb-4e87-bb8d-5fb084b8b58b</mbid>
|
540
|
+
<url>http://www.last.fm/music/Brad+Paisley/Mud+on+the+Tires</url>
|
541
|
+
<artist>
|
542
|
+
<name>Brad Paisley</name>
|
543
|
+
<mbid>6cfd7ffc-824f-4219-8e27-4b9417700f44</mbid>
|
544
|
+
<url>http://www.last.fm/music/Brad+Paisley</url>
|
545
|
+
</artist>
|
546
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/31989105.jpg</image>
|
547
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/31989105.jpg</image>
|
548
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/31989105.jpg</image>
|
549
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/31989105.jpg</image>
|
550
|
+
</album> <album rank="40">
|
551
|
+
<name>Kingdom Come</name>
|
552
|
+
<playcount>166</playcount>
|
553
|
+
<mbid>cb6fc494-cb96-4a8f-b97d-616c4fc551f1</mbid>
|
554
|
+
<url>http://www.last.fm/music/Jay-Z/Kingdom+Come</url>
|
555
|
+
<artist>
|
556
|
+
<name>Jay-Z</name>
|
557
|
+
<mbid>f82bcf78-5b69-4622-a5ef-73800768d9ac</mbid>
|
558
|
+
<url>http://www.last.fm/music/Jay-Z</url>
|
559
|
+
</artist>
|
560
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/9608385.jpg</image>
|
561
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/9608385.jpg</image>
|
562
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/9608385.jpg</image>
|
563
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/9608385.jpg</image>
|
564
|
+
</album> <album rank="41">
|
565
|
+
<name>Hillbilly Deluxe</name>
|
566
|
+
<playcount>165</playcount>
|
567
|
+
<mbid>f38a4956-c546-431d-a14f-fcc1339119e1</mbid>
|
568
|
+
<url>http://www.last.fm/music/Brooks%2B%2526%2BDunn/Hillbilly+Deluxe</url>
|
569
|
+
<artist>
|
570
|
+
<name>Brooks & Dunn</name>
|
571
|
+
<mbid>f30118c5-f783-4969-8427-f3c096378267</mbid>
|
572
|
+
<url>http://www.last.fm/music/Brooks%2B%2526%2BDunn</url>
|
573
|
+
</artist>
|
574
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/32052221.jpg</image>
|
575
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/32052221.jpg</image>
|
576
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/32052221.jpg</image>
|
577
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/32052221.jpg</image>
|
578
|
+
</album> <album rank="42">
|
579
|
+
<name>As Cruel As School Children</name>
|
580
|
+
<playcount>163</playcount>
|
581
|
+
<mbid>0c4335cd-6d97-4479-b727-04da2886391a</mbid>
|
582
|
+
<url>http://www.last.fm/music/Gym+Class+Heroes/As+Cruel+As+School+Children</url>
|
583
|
+
<artist>
|
584
|
+
<name>Gym Class Heroes</name>
|
585
|
+
<mbid>f4d4b515-0b74-423f-a161-db184330c37c</mbid>
|
586
|
+
<url>http://www.last.fm/music/Gym+Class+Heroes</url>
|
587
|
+
</artist>
|
588
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/9014781.jpg</image>
|
589
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/9014781.jpg</image>
|
590
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/9014781.jpg</image>
|
591
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/9014781.jpg</image>
|
592
|
+
</album> <album rank="43">
|
593
|
+
<name>Family</name>
|
594
|
+
<playcount>155</playcount>
|
595
|
+
<mbid>5433150e-c4ec-4483-8533-9dd4a4feebd5</mbid>
|
596
|
+
<url>http://www.last.fm/music/LeAnn+Rimes/Family</url>
|
597
|
+
<artist>
|
598
|
+
<name>LeAnn Rimes</name>
|
599
|
+
<mbid>9092d8e1-9b38-4372-a96d-000b8561a8bc</mbid>
|
600
|
+
<url>http://www.last.fm/music/LeAnn+Rimes</url>
|
601
|
+
</artist>
|
602
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/9995143.jpg</image>
|
603
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/9995143.jpg</image>
|
604
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/9995143.jpg</image>
|
605
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/9995143.jpg</image>
|
606
|
+
</album> <album rank="44">
|
607
|
+
<name>Dwight Sings Buck</name>
|
608
|
+
<playcount>155</playcount>
|
609
|
+
<mbid>feabec66-2da5-40da-8122-2d9a6635113f</mbid>
|
610
|
+
<url>http://www.last.fm/music/Dwight+Yoakam/Dwight+Sings+Buck</url>
|
611
|
+
<artist>
|
612
|
+
<name>Dwight Yoakam</name>
|
613
|
+
<mbid>0fb711af-c7ba-4bdc-b0b6-b8495fc0a590</mbid>
|
614
|
+
<url>http://www.last.fm/music/Dwight+Yoakam</url>
|
615
|
+
</artist>
|
616
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/44007773.jpg</image>
|
617
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/44007773.jpg</image>
|
618
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/44007773.jpg</image>
|
619
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/44007773.jpg</image>
|
620
|
+
</album> <album rank="45">
|
621
|
+
<name>Fearless (Platinum Edition)</name>
|
622
|
+
<playcount>153</playcount>
|
623
|
+
<mbid></mbid>
|
624
|
+
<url>http://www.last.fm/music/Taylor+Swift/Fearless+%28Platinum+Edition%29</url>
|
625
|
+
<artist>
|
626
|
+
<name>Taylor Swift</name>
|
627
|
+
<mbid>20244d07-534f-4eff-b4d4-930878889970</mbid>
|
628
|
+
<url>http://www.last.fm/music/Taylor+Swift</url>
|
629
|
+
</artist>
|
630
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/41028977.png</image>
|
631
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/41028977.png</image>
|
632
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/41028977.png</image>
|
633
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/41028977.png</image>
|
634
|
+
</album> <album rank="46">
|
635
|
+
<name>Live Like You Were Dying</name>
|
636
|
+
<playcount>147</playcount>
|
637
|
+
<mbid>2e23cd22-6d43-4f40-b768-d5d95f8c4789</mbid>
|
638
|
+
<url>http://www.last.fm/music/Tim+McGraw/Live+Like+You+Were+Dying</url>
|
639
|
+
<artist>
|
640
|
+
<name>Tim McGraw</name>
|
641
|
+
<mbid>7e5cfc9a-e9e1-46f1-b81a-861b12049488</mbid>
|
642
|
+
<url>http://www.last.fm/music/Tim+McGraw</url>
|
643
|
+
</artist>
|
644
|
+
<image size="small">http://images.amazon.com/images/P/B0002IQF7M.01.MZZZZZZZ.jpg</image>
|
645
|
+
<image size="medium">http://images.amazon.com/images/P/B0002IQF7M.01.MZZZZZZZ.jpg</image>
|
646
|
+
<image size="large">http://images.amazon.com/images/P/B0002IQF7M.01.MZZZZZZZ.jpg</image>
|
647
|
+
<image size="extralarge">http://images.amazon.com/images/P/B0002IQF7M.01.MZZZZZZZ.jpg</image>
|
648
|
+
</album> <album rank="47">
|
649
|
+
<name>Smoke Rings In The Dark</name>
|
650
|
+
<playcount>138</playcount>
|
651
|
+
<mbid>c06aedd5-91c0-4e7d-bd62-37f387811147</mbid>
|
652
|
+
<url>http://www.last.fm/music/Gary+Allan/Smoke+Rings+In+The+Dark</url>
|
653
|
+
<artist>
|
654
|
+
<name>Gary Allan</name>
|
655
|
+
<mbid>d211333a-22eb-4be7-a2ac-ca12c73646db</mbid>
|
656
|
+
<url>http://www.last.fm/music/Gary+Allan</url>
|
657
|
+
</artist>
|
658
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/8674959.jpg</image>
|
659
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/8674959.jpg</image>
|
660
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/8674959.jpg</image>
|
661
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/8674959.jpg</image>
|
662
|
+
</album> <album rank="48">
|
663
|
+
<name>Me And My Gang</name>
|
664
|
+
<playcount>130</playcount>
|
665
|
+
<mbid>d2123a74-3d19-4ffa-a0f0-7deb9a5677da</mbid>
|
666
|
+
<url>http://www.last.fm/music/Rascal+Flatts/Me+And+My+Gang</url>
|
667
|
+
<artist>
|
668
|
+
<name>Rascal Flatts</name>
|
669
|
+
<mbid>6e0ae159-8449-4262-bba5-18ec87fa529f</mbid>
|
670
|
+
<url>http://www.last.fm/music/Rascal+Flatts</url>
|
671
|
+
</artist>
|
672
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/45278975.jpg</image>
|
673
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/45278975.jpg</image>
|
674
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/45278975.jpg</image>
|
675
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/45278975.jpg</image>
|
676
|
+
</album> <album rank="49">
|
677
|
+
<name>Chronology, Vol. 1 (1996-2000)</name>
|
678
|
+
<playcount>129</playcount>
|
679
|
+
<mbid></mbid>
|
680
|
+
<url>http://www.last.fm/music/Third+Day/Chronology%2C+Vol.+1+%281996-2000%29</url>
|
681
|
+
<artist>
|
682
|
+
<name>Third Day</name>
|
683
|
+
<mbid>93585c1b-ec0f-4d47-9cae-bd8ebcc52e9f</mbid>
|
684
|
+
<url>http://www.last.fm/music/Third+Day</url>
|
685
|
+
</artist>
|
686
|
+
<image size="small">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
687
|
+
<image size="medium">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
688
|
+
<image size="large">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
689
|
+
<image size="extralarge">http://cdn.last.fm/flatness/catalogue/noimage/2/default_album_medium.png</image>
|
690
|
+
</album> <album rank="50">
|
691
|
+
<name>Rabbit Songs</name>
|
692
|
+
<playcount>128</playcount>
|
693
|
+
<mbid>c2872c32-0173-46b9-8925-15fea02508be</mbid>
|
694
|
+
<url>http://www.last.fm/music/Hem/Rabbit+Songs</url>
|
695
|
+
<artist>
|
696
|
+
<name>Hem</name>
|
697
|
+
<mbid>232bb885-d7c6-4463-a694-0830ae3300bc</mbid>
|
698
|
+
<url>http://www.last.fm/music/Hem</url>
|
699
|
+
</artist>
|
700
|
+
<image size="small">http://userserve-ak.last.fm/serve/34s/32983769.jpg</image>
|
701
|
+
<image size="medium">http://userserve-ak.last.fm/serve/64s/32983769.jpg</image>
|
702
|
+
<image size="large">http://userserve-ak.last.fm/serve/126/32983769.jpg</image>
|
703
|
+
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/32983769.jpg</image>
|
704
|
+
</album></topalbums></lfm>
|