rockstar 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. data/.gitignore +3 -0
  2. data/History.txt +6 -0
  3. data/MIT-LICENSE +19 -0
  4. data/Manifest +72 -0
  5. data/README.rdoc +140 -0
  6. data/Rakefile +21 -0
  7. data/VERSION +1 -0
  8. data/examples/.gitignore +1 -0
  9. data/examples/album.rb +16 -0
  10. data/examples/artist.rb +17 -0
  11. data/examples/lastfm.yml_example +3 -0
  12. data/examples/scrobble.rb +55 -0
  13. data/examples/tag.rb +20 -0
  14. data/examples/track.rb +14 -0
  15. data/examples/user.rb +18 -0
  16. data/lib/rockstar.rb +39 -0
  17. data/lib/rockstar/album.rb +108 -0
  18. data/lib/rockstar/artist.rb +135 -0
  19. data/lib/rockstar/auth.rb +21 -0
  20. data/lib/rockstar/base.rb +37 -0
  21. data/lib/rockstar/chart.rb +31 -0
  22. data/lib/rockstar/playing.rb +49 -0
  23. data/lib/rockstar/rest.rb +66 -0
  24. data/lib/rockstar/scrobble.rb +67 -0
  25. data/lib/rockstar/session.rb +19 -0
  26. data/lib/rockstar/simpleauth.rb +62 -0
  27. data/lib/rockstar/tag.rb +100 -0
  28. data/lib/rockstar/tokenauth.rb +84 -0
  29. data/lib/rockstar/track.rb +103 -0
  30. data/lib/rockstar/user.rb +194 -0
  31. data/lib/rockstar/version.rb +3 -0
  32. data/rockstar.gemspec +138 -0
  33. data/test/fixtures/xml/album/getinfo_album_Some_Hearts_artist_Carrie_Underwood.xml +63 -0
  34. data/test/fixtures/xml/artist/getsimilar_artist_Metallica.xml +1203 -0
  35. data/test/fixtures/xml/artist/gettopalbums_artist_Metallica.xml +704 -0
  36. data/test/fixtures/xml/artist/gettopfans_artist_Metallica.xml +504 -0
  37. data/test/fixtures/xml/artist/gettoptags_artist_Metallica.xml +403 -0
  38. data/test/fixtures/xml/artist/gettoptracks_artist_Metallica.xml +800 -0
  39. data/test/fixtures/xml/tag/gettopalbums_tag_rock.xml +654 -0
  40. data/test/fixtures/xml/tag/gettopartists_tag_rock.xml +504 -0
  41. data/test/fixtures/xml/tag/gettoptags.xml +1253 -0
  42. data/test/fixtures/xml/tag/gettoptracks_tag_rock.xml +704 -0
  43. data/test/fixtures/xml/track/gettopfans_artist_Carrie_Underwood_track_Before_He_Cheats.xml +504 -0
  44. data/test/fixtures/xml/track/gettoptags_artist_Carrie_Underwood_track_Before_He_Cheats.xml +403 -0
  45. data/test/fixtures/xml/track/love_artist_Carrie_Underwood_sk_tag_track_Before_He_Cheats.xml +2 -0
  46. data/test/fixtures/xml/user/getfriends_user_jnunemaker.xml +173 -0
  47. data/test/fixtures/xml/user/getinfo_user_jnunemaker.xml +22 -0
  48. data/test/fixtures/xml/user/getinfo_user_oaknd1.xml +22 -0
  49. data/test/fixtures/xml/user/getinfo_user_wharle.xml +22 -0
  50. data/test/fixtures/xml/user/getlovedtracks_user_jnunemaker.xml +775 -0
  51. data/test/fixtures/xml/user/getneighbours_user_jnunemaker.xml +503 -0
  52. data/test/fixtures/xml/user/getrecenttracks_user_jnunemaker.xml +133 -0
  53. data/test/fixtures/xml/user/getrecommendedartists_sk_token_user_jnunemaker.xml +553 -0
  54. data/test/fixtures/xml/user/gettopalbums_user_jnunemaker.xml +704 -0
  55. data/test/fixtures/xml/user/gettopartists_user_jnunemaker.xml +554 -0
  56. data/test/fixtures/xml/user/gettoptags_user_jnunemaker.xml +63 -0
  57. data/test/fixtures/xml/user/gettoptracks_user_jnunemaker.xml +750 -0
  58. data/test/fixtures/xml/user/getweeklyalbumchart_from_1138536002_to_1139140802_user_jnunemaker.xml +143 -0
  59. data/test/fixtures/xml/user/getweeklyalbumchart_from__to__user_jnunemaker.xml +31 -0
  60. data/test/fixtures/xml/user/getweeklyartistchart_from_1138536002_to_1139140802_user_jnunemaker.xml +201 -0
  61. data/test/fixtures/xml/user/getweeklyartistchart_from__to__user_jnunemaker.xml +21 -0
  62. data/test/fixtures/xml/user/getweeklychartlist_user_jnunemaker.xml +232 -0
  63. data/test/fixtures/xml/user/getweeklytrackchart_from_1138536002_to_1139140802_user_jnunemaker.xml +883 -0
  64. data/test/fixtures/xml/user/getweeklytrackchart_from__to__user_jnunemaker.xml +423 -0
  65. data/test/mocks/rest.rb +61 -0
  66. data/test/test_helper.rb +17 -0
  67. data/test/unit/test_album.rb +67 -0
  68. data/test/unit/test_artist.rb +69 -0
  69. data/test/unit/test_chart.rb +35 -0
  70. data/test/unit/test_playing.rb +53 -0
  71. data/test/unit/test_scrobble.rb +69 -0
  72. data/test/unit/test_simpleauth.rb +45 -0
  73. data/test/unit/test_tag.rb +57 -0
  74. data/test/unit/test_tokenauth.rb +45 -0
  75. data/test/unit/test_track.rb +44 -0
  76. data/test/unit/test_user.rb +252 -0
  77. metadata +190 -0
@@ -0,0 +1,143 @@
1
+ <lfm status="ok">
2
+ <weeklyalbumchart user="jnunemaker" from="1138536002" to="1139140802">
3
+ <album rank="1">
4
+ <artist mbid="abae8575-ec8a-4736-abc3-1ad5093a68aa">Jewel</artist>
5
+ <name>0304</name>
6
+ <mbid>52b3f067-9d82-488c-9747-6d608d9b9486</mbid>
7
+ <playcount>13</playcount>
8
+ <url>http://www.last.fm/music/Jewel/0304</url>
9
+ </album>
10
+ <album rank="2">
11
+ <artist mbid="4b179fe2-dfa5-40b1-b6db-b56dbc3b5f09">Jenny Lewis with The Watson Twins</artist>
12
+ <name>Rabbit Fur Coat</name>
13
+ <mbid>97d5185a-0762-41b4-b7d4-59d72fcf0afe</mbid>
14
+ <playcount>9</playcount>
15
+ <url>http://www.last.fm/music/Jenny+Lewis+with+The+Watson+Twins/Rabbit+Fur+Coat</url>
16
+ </album>
17
+ <album rank="3">
18
+ <artist mbid="b7ffd2af-418f-4be2-bdd1-22f8b48613da">Nine Inch Nails</artist>
19
+ <name>The Downward Spiral</name>
20
+ <mbid>602af258-e647-48e2-9660-bd0c5c8f92bf</mbid>
21
+ <playcount>8</playcount>
22
+ <url>http://www.last.fm/music/Nine+Inch+Nails/The+Downward+Spiral</url>
23
+ </album>
24
+ <album rank="4">
25
+ <artist mbid="8b477559-946e-4ef2-9fe1-446cff8fdd79">Natasha Bedingfield</artist>
26
+ <name>Unwritten</name>
27
+ <mbid>88801c96-3c23-4a93-8ec5-4c0c3b43252e</mbid>
28
+ <playcount>8</playcount>
29
+ <url>http://www.last.fm/music/Natasha+Bedingfield/Unwritten</url>
30
+ </album>
31
+ <album rank="5">
32
+ <artist mbid="b0a55bd8-60c7-45c1-b78e-f20e4c8adba1">Martina McBride</artist>
33
+ <name>Timeless</name>
34
+ <mbid>9fa2a645-25ff-47e4-8ed3-aa51794d7db6</mbid>
35
+ <playcount>7</playcount>
36
+ <url>http://www.last.fm/music/Martina+McBride/Timeless</url>
37
+ </album>
38
+ <album rank="6">
39
+ <artist mbid="fe37acd4-893c-4b2c-8ad2-7fd394280354">Jessica Simpson</artist>
40
+ <name>In This Skin</name>
41
+ <mbid>1deddf56-4b3e-4127-bf75-d0ef70909483</mbid>
42
+ <playcount>4</playcount>
43
+ <url>http://www.last.fm/music/Jessica+Simpson/In+This+Skin</url>
44
+ </album>
45
+ <album rank="7">
46
+ <artist mbid="164f0d73-1234-4e2c-8743-d77bf2191051">Kanye West</artist>
47
+ <name>Late Registration</name>
48
+ <mbid>428e7920-b3e6-45d2-a61d-aa75101dfe5e</mbid>
49
+ <playcount>4</playcount>
50
+ <url>http://www.last.fm/music/Kanye+West/Late+Registration</url>
51
+ </album>
52
+ <album rank="8">
53
+ <artist mbid="bc710bcf-8815-42cf-bad2-3f1d12246aeb">Nickelback</artist>
54
+ <name>All the Right Reasons</name>
55
+ <mbid>61e6baf1-9c75-4756-a899-a2b63728a6d4</mbid>
56
+ <playcount>4</playcount>
57
+ <url>http://www.last.fm/music/Nickelback/All+the+Right+Reasons</url>
58
+ </album>
59
+ <album rank="9">
60
+ <artist mbid="d339efbb-77b9-4147-ba9e-59f2f24550b2">Kelly Clarkson</artist>
61
+ <name>Breakaway</name>
62
+ <mbid>1a405c84-452a-4c5e-ae46-afe82d0e9531</mbid>
63
+ <playcount>3</playcount>
64
+ <url>http://www.last.fm/music/Kelly+Clarkson/Breakaway</url>
65
+ </album>
66
+ <album rank="10">
67
+ <artist mbid="463c514e-c30d-4a2a-a87b-762535253a80">Ashlee Simpson</artist>
68
+ <name>I Am Me</name>
69
+ <mbid>8b1f9a02-35ac-476b-bac5-fd2ecf6a2c6b</mbid>
70
+ <playcount>3</playcount>
71
+ <url>http://www.last.fm/music/Ashlee+Simpson/I+Am+Me</url>
72
+ </album>
73
+ <album rank="11">
74
+ <artist mbid="d5d97b2b-b83b-4976-814a-056d9076c8c3">Notorious B.I.G.</artist>
75
+ <name>Life After Death</name>
76
+ <mbid>75737725-b75f-4010-8e1d-90b78c0b6328</mbid>
77
+ <playcount>3</playcount>
78
+ <url>http://www.last.fm/music/Notorious+B.I.G./Life+After+Death</url>
79
+ </album>
80
+ <album rank="12">
81
+ <artist mbid="4efa55ba-93cf-497f-baf3-2ca9da7e193e">Jet</artist>
82
+ <name>Get Born</name>
83
+ <mbid>7f9215b1-19c1-4262-b45f-71a537d0ad81</mbid>
84
+ <playcount>2</playcount>
85
+ <url>http://www.last.fm/music/Jet/Get+Born</url>
86
+ </album>
87
+ <album rank="13">
88
+ <artist mbid="164f0d73-1234-4e2c-8743-d77bf2191051">Kanye West</artist>
89
+ <name>The College Dropout</name>
90
+ <mbid>a6949d8e-c1eb-4eee-a670-680d28dd80e6</mbid>
91
+ <playcount>2</playcount>
92
+ <url>http://www.last.fm/music/Kanye+West/The+College+Dropout</url>
93
+ </album>
94
+ <album rank="14">
95
+ <artist mbid="516cef4d-0718-4007-9939-f9b38af3f784">Fall Out Boy</artist>
96
+ <name>From Under The Cork Tree</name>
97
+ <mbid>97a6dd79-4a19-427c-927c-8ab63f99b0f0</mbid>
98
+ <playcount>2</playcount>
99
+ <url>http://www.last.fm/music/Fall+Out+Boy/From+Under+The+Cork+Tree</url>
100
+ </album>
101
+ <album rank="15">
102
+ <artist mbid="f87b740a-c22b-4fae-9987-1f3e16f840c4">Sugarland</artist>
103
+ <name>Twice The Speed Of Life</name>
104
+ <mbid>1d7122dc-7566-405e-8204-e692473ebce3</mbid>
105
+ <playcount>2</playcount>
106
+ <url>http://www.last.fm/music/Sugarland/Twice+The+Speed+Of+Life</url>
107
+ </album>
108
+ <album rank="16">
109
+ <artist mbid="c5eb9407-caeb-4303-b383-6929aa94021c">Papa Roach</artist>
110
+ <name>Getting Away With Murder</name>
111
+ <mbid>3412973f-3a65-46d1-b47c-787a57e491ed</mbid>
112
+ <playcount>2</playcount>
113
+ <url>http://www.last.fm/music/Papa+Roach/Getting+Away+With+Murder</url>
114
+ </album>
115
+ <album rank="17">
116
+ <artist mbid="89ad4ac3-39f7-470e-963a-56509c546377">Various Artists</artist>
117
+ <name>iTunes New Music Sampler (Atlantic/Lava Edition)</name>
118
+ <mbid>afb97785-6792-4b98-830b-dbd36c9ffdf6</mbid>
119
+ <playcount>2</playcount>
120
+ <url>http://www.last.fm/music/Various+Artists/iTunes%2BNew%2BMusic%2BSampler%2B%2528Atlantic%252FLava%2BEdition%2529</url>
121
+ </album>
122
+ <album rank="18">
123
+ <artist mbid="bb0814de-3de2-4f00-811f-7c2d9ada7e51">Jeremy Camp</artist>
124
+ <name>Carried Me - The Worship Project</name>
125
+ <mbid>7a287d6a-5402-4c13-b940-cf4e30b57b49</mbid>
126
+ <playcount>2</playcount>
127
+ <url>http://www.last.fm/music/Jeremy+Camp/Carried+Me+-+The+Worship+Project</url>
128
+ </album>
129
+ <album rank="19">
130
+ <artist mbid="8c32bb01-58a3-453b-8050-8c0620edb0e5">Stone Temple Pilots</artist>
131
+ <name>Core</name>
132
+ <mbid>01ad1808-59c1-46c7-90ce-eda16ec4b121</mbid>
133
+ <playcount>1</playcount>
134
+ <url>http://www.last.fm/music/Stone+Temple+Pilots/Core</url>
135
+ </album>
136
+ <album rank="20">
137
+ <artist mbid="1fda852b-92e9-4562-82fa-c52820a77b23">The Pussycat Dolls</artist>
138
+ <name>PCD</name>
139
+ <mbid>2da3ff0a-456c-401e-b5f3-d8188634d535</mbid>
140
+ <playcount>1</playcount>
141
+ <url>http://www.last.fm/music/The+Pussycat+Dolls/PCD</url>
142
+ </album>
143
+ </weeklyalbumchart></lfm>
@@ -0,0 +1,31 @@
1
+ <lfm status="ok">
2
+ <weeklyalbumchart user="jnunemaker" from="1274011200" to="1274616000">
3
+ <album rank="1">
4
+ <artist mbid="b7723b3f-9a35-438d-bc42-8ad8b5e027ae">Brad Mehldau</artist>
5
+ <name>Highway Rider</name>
6
+ <mbid></mbid>
7
+ <playcount>15</playcount>
8
+ <url>http://www.last.fm/music/Brad+Mehldau/Highway+Rider</url>
9
+ </album>
10
+ <album rank="2">
11
+ <artist mbid="">Benedict Arnold</artist>
12
+ <name>the night cafe</name>
13
+ <mbid></mbid>
14
+ <playcount>9</playcount>
15
+ <url>http://www.last.fm/music/Benedict+Arnold/the+night+cafe</url>
16
+ </album>
17
+ <album rank="3">
18
+ <artist mbid="">The City of Prague Philharmonic Orchestra</artist>
19
+ <name>Film Music By Bernard Herrmann</name>
20
+ <mbid></mbid>
21
+ <playcount>2</playcount>
22
+ <url>http://www.last.fm/music/The+City+of+Prague+Philharmonic+Orchestra/Film+Music+By+Bernard+Herrmann</url>
23
+ </album>
24
+ <album rank="4">
25
+ <artist mbid="bc641be9-ca36-4c61-9394-5230433f6646">Liquid Tension Experiment</artist>
26
+ <name>Liquid Tension Experiment 2</name>
27
+ <mbid>6c20d297-121e-47d0-aa3a-8f27c7a06553</mbid>
28
+ <playcount>2</playcount>
29
+ <url>http://www.last.fm/music/Liquid+Tension+Experiment/Liquid+Tension+Experiment+2</url>
30
+ </album>
31
+ </weeklyalbumchart></lfm>
@@ -0,0 +1,201 @@
1
+ <lfm status="ok">
2
+ <weeklyartistchart user="jnunemaker" from="1138536002" to="1139140802">
3
+ <artist rank="1">
4
+ <name>Jenny Lewis with The Watson Twins</name>
5
+ <mbid>4b179fe2-dfa5-40b1-b6db-b56dbc3b5f09</mbid>
6
+ <playcount>48</playcount>
7
+ <url>http://www.last.fm/music/Jenny+Lewis+with+The+Watson+Twins</url>
8
+ </artist>
9
+ <artist rank="2">
10
+ <name>Johnny Cash</name>
11
+ <mbid>d43d12a1-2dc9-4257-a2fd-0a3bb1081b86</mbid>
12
+ <playcount>25</playcount>
13
+ <url>http://www.last.fm/music/Johnny+Cash</url>
14
+ </artist>
15
+ <artist rank="3">
16
+ <name>Jewel</name>
17
+ <mbid>abae8575-ec8a-4736-abc3-1ad5093a68aa</mbid>
18
+ <playcount>14</playcount>
19
+ <url>http://www.last.fm/music/Jewel</url>
20
+ </artist>
21
+ <artist rank="4">
22
+ <name>Nine Inch Nails</name>
23
+ <mbid>b7ffd2af-418f-4be2-bdd1-22f8b48613da</mbid>
24
+ <playcount>8</playcount>
25
+ <url>http://www.last.fm/music/Nine+Inch+Nails</url>
26
+ </artist>
27
+ <artist rank="5">
28
+ <name>Natasha Bedingfield</name>
29
+ <mbid>8b477559-946e-4ef2-9fe1-446cff8fdd79</mbid>
30
+ <playcount>8</playcount>
31
+ <url>http://www.last.fm/music/Natasha+Bedingfield</url>
32
+ </artist>
33
+ <artist rank="6">
34
+ <name>Martina McBride</name>
35
+ <mbid>b0a55bd8-60c7-45c1-b78e-f20e4c8adba1</mbid>
36
+ <playcount>7</playcount>
37
+ <url>http://www.last.fm/music/Martina+McBride</url>
38
+ </artist>
39
+ <artist rank="7">
40
+ <name>Kanye West</name>
41
+ <mbid>164f0d73-1234-4e2c-8743-d77bf2191051</mbid>
42
+ <playcount>6</playcount>
43
+ <url>http://www.last.fm/music/Kanye+West</url>
44
+ </artist>
45
+ <artist rank="8">
46
+ <name>The Pussycat Dolls</name>
47
+ <mbid>1fda852b-92e9-4562-82fa-c52820a77b23</mbid>
48
+ <playcount>5</playcount>
49
+ <url>http://www.last.fm/music/The+Pussycat+Dolls</url>
50
+ </artist>
51
+ <artist rank="9">
52
+ <name>Blur</name>
53
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
54
+ <playcount>4</playcount>
55
+ <url>http://www.last.fm/music/Blur</url>
56
+ </artist>
57
+ <artist rank="10">
58
+ <name>Nickelback</name>
59
+ <mbid>bc710bcf-8815-42cf-bad2-3f1d12246aeb</mbid>
60
+ <playcount>4</playcount>
61
+ <url>http://www.last.fm/music/Nickelback</url>
62
+ </artist>
63
+ <artist rank="11">
64
+ <name>Notorious B.I.G.</name>
65
+ <mbid>d5d97b2b-b83b-4976-814a-056d9076c8c3</mbid>
66
+ <playcount>4</playcount>
67
+ <url>http://www.last.fm/music/Notorious+B.I.G.</url>
68
+ </artist>
69
+ <artist rank="12">
70
+ <name>Jessica Simpson</name>
71
+ <mbid>fe37acd4-893c-4b2c-8ad2-7fd394280354</mbid>
72
+ <playcount>4</playcount>
73
+ <url>http://www.last.fm/music/Jessica+Simpson</url>
74
+ </artist>
75
+ <artist rank="13">
76
+ <name>Stone Temple Pilots</name>
77
+ <mbid>8c32bb01-58a3-453b-8050-8c0620edb0e5</mbid>
78
+ <playcount>3</playcount>
79
+ <url>http://www.last.fm/music/Stone+Temple+Pilots</url>
80
+ </artist>
81
+ <artist rank="14">
82
+ <name>Mariah Carey</name>
83
+ <mbid>494e8d09-f85b-4543-892f-a5096aed1cd4</mbid>
84
+ <playcount>3</playcount>
85
+ <url>http://www.last.fm/music/Mariah+Carey</url>
86
+ </artist>
87
+ <artist rank="15">
88
+ <name>Kelly Clarkson</name>
89
+ <mbid>d339efbb-77b9-4147-ba9e-59f2f24550b2</mbid>
90
+ <playcount>3</playcount>
91
+ <url>http://www.last.fm/music/Kelly+Clarkson</url>
92
+ </artist>
93
+ <artist rank="16">
94
+ <name>Reba McEntire</name>
95
+ <mbid>3ec17e85-9284-4f4c-8831-4e56c2354cdb</mbid>
96
+ <playcount>3</playcount>
97
+ <url>http://www.last.fm/music/Reba+McEntire</url>
98
+ </artist>
99
+ <artist rank="17">
100
+ <name>Ashlee Simpson</name>
101
+ <mbid>463c514e-c30d-4a2a-a87b-762535253a80</mbid>
102
+ <playcount>3</playcount>
103
+ <url>http://www.last.fm/music/Ashlee+Simpson</url>
104
+ </artist>
105
+ <artist rank="18">
106
+ <name>Mariah Carey featuring Juelz Santana &amp; Bone Thugs-n-Harmony</name>
107
+ <mbid></mbid>
108
+ <playcount>3</playcount>
109
+ <url>http://www.last.fm/music/Mariah%2BCarey%2Bfeaturing%2BJuelz%2BSantana%2B%2526%2BBone%2BThugs-n-Harmony</url>
110
+ </artist>
111
+ <artist rank="19">
112
+ <name>Death Cab for Cutie</name>
113
+ <mbid>0039c7ae-e1a7-4a7d-9b49-0cbc716821a6</mbid>
114
+ <playcount>2</playcount>
115
+ <url>http://www.last.fm/music/Death+Cab+for+Cutie</url>
116
+ </artist>
117
+ <artist rank="20">
118
+ <name>Papa Roach</name>
119
+ <mbid>c5eb9407-caeb-4303-b383-6929aa94021c</mbid>
120
+ <playcount>2</playcount>
121
+ <url>http://www.last.fm/music/Papa+Roach</url>
122
+ </artist>
123
+ <artist rank="21">
124
+ <name>SHeDaisy</name>
125
+ <mbid>166c939c-a97e-44b9-b405-23d49a72df4e</mbid>
126
+ <playcount>2</playcount>
127
+ <url>http://www.last.fm/music/SHeDaisy</url>
128
+ </artist>
129
+ <artist rank="22">
130
+ <name>Imogen Heap</name>
131
+ <mbid>328d146c-79f1-4eb6-9e40-8ee5710c14e5</mbid>
132
+ <playcount>2</playcount>
133
+ <url>http://www.last.fm/music/Imogen+Heap</url>
134
+ </artist>
135
+ <artist rank="23">
136
+ <name>Fall Out Boy</name>
137
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
138
+ <playcount>2</playcount>
139
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
140
+ </artist>
141
+ <artist rank="24">
142
+ <name>Jonathan Larson</name>
143
+ <mbid>2ab30461-12e3-4c97-b716-c39f13015d29</mbid>
144
+ <playcount>2</playcount>
145
+ <url>http://www.last.fm/music/Jonathan+Larson</url>
146
+ </artist>
147
+ <artist rank="25">
148
+ <name>Jeremy Camp</name>
149
+ <mbid>bb0814de-3de2-4f00-811f-7c2d9ada7e51</mbid>
150
+ <playcount>2</playcount>
151
+ <url>http://www.last.fm/music/Jeremy+Camp</url>
152
+ </artist>
153
+ <artist rank="26">
154
+ <name>Jet</name>
155
+ <mbid>4efa55ba-93cf-497f-baf3-2ca9da7e193e</mbid>
156
+ <playcount>2</playcount>
157
+ <url>http://www.last.fm/music/Jet</url>
158
+ </artist>
159
+ <artist rank="27">
160
+ <name>Franz Ferdinand</name>
161
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
162
+ <playcount>2</playcount>
163
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
164
+ </artist>
165
+ <artist rank="28">
166
+ <name>Sugarland</name>
167
+ <mbid>f87b740a-c22b-4fae-9987-1f3e16f840c4</mbid>
168
+ <playcount>2</playcount>
169
+ <url>http://www.last.fm/music/Sugarland</url>
170
+ </artist>
171
+ <artist rank="29">
172
+ <name>Carrie Underwood</name>
173
+ <mbid>70f0e309-5418-49b6-a130-666e2f76eecd</mbid>
174
+ <playcount>2</playcount>
175
+ <url>http://www.last.fm/music/Carrie+Underwood</url>
176
+ </artist>
177
+ <artist rank="30">
178
+ <name>Sophie B. Hawkins</name>
179
+ <mbid>fd7a8bc1-1b25-4b4c-b899-8f7b3343a229</mbid>
180
+ <playcount>1</playcount>
181
+ <url>http://www.last.fm/music/Sophie+B.+Hawkins</url>
182
+ </artist>
183
+ <artist rank="31">
184
+ <name>Gary Allan</name>
185
+ <mbid>d211333a-22eb-4be7-a2ac-ca12c73646db</mbid>
186
+ <playcount>1</playcount>
187
+ <url>http://www.last.fm/music/Gary+Allan</url>
188
+ </artist>
189
+ <artist rank="32">
190
+ <name>The Righteous Brothers</name>
191
+ <mbid>1ac3366a-a0e9-4a55-8f6e-796fce32a3b2</mbid>
192
+ <playcount>1</playcount>
193
+ <url>http://www.last.fm/music/The+Righteous+Brothers</url>
194
+ </artist>
195
+ <artist rank="33">
196
+ <name>The Pussycat Dolls &amp; Busta Rhymes</name>
197
+ <mbid></mbid>
198
+ <playcount>1</playcount>
199
+ <url>http://www.last.fm/music/+noredirect/The%2BPussycat%2BDolls%2B%2526%2BBusta%2BRhymes</url>
200
+ </artist>
201
+ </weeklyartistchart></lfm>
@@ -0,0 +1,21 @@
1
+ <lfm status="ok">
2
+ <weeklyartistchart user="jnunemaker" from="1275825600" to="1276430400">
3
+ <artist rank="1">
4
+ <name>Glee Cast</name>
5
+ <mbid>6e0ae159-8449-4262-bba5-18ec87fa529f</mbid>
6
+ <playcount>45</playcount>
7
+ <url>http://www.last.fm/music/Glee+Cast</url>
8
+ </artist>
9
+ <artist rank="2">
10
+ <name>Missy Higgins</name>
11
+ <mbid>3ac2a4a2-52b3-498b-bbc8-31443c68dfe0</mbid>
12
+ <playcount>38</playcount>
13
+ <url>http://www.last.fm/music/Missy+Higgins</url>
14
+ </artist>
15
+ <artist rank="3">
16
+ <name>Ray LaMontagne</name>
17
+ <mbid>b5c4ffa2-82e1-4b72-b7f3-c60afb74b860</mbid>
18
+ <playcount>11</playcount>
19
+ <url>http://www.last.fm/music/Ray+LaMontagne</url>
20
+ </artist>
21
+ </weeklyartistchart></lfm>
@@ -0,0 +1,232 @@
1
+ <lfm status="ok">
2
+ <weeklychartlist user="jnunemaker">
3
+ <chart from="1134302403" to="1134907203"/>
4
+ <chart from="1134907202" to="1135512002"/>
5
+ <chart from="1135512002" to="1136116802"/>
6
+ <chart from="1136116801" to="1136721601"/>
7
+ <chart from="1136721601" to="1137326401"/>
8
+ <chart from="1137326402" to="1137931202"/>
9
+ <chart from="1137931202" to="1138536002"/>
10
+ <chart from="1138536002" to="1139140802"/>
11
+ <chart from="1139140801" to="1139745601"/>
12
+ <chart from="1139745601" to="1140350401"/>
13
+ <chart from="1140350401" to="1140955201"/>
14
+ <chart from="1140955203" to="1141560003"/>
15
+ <chart from="1141560002" to="1142164802"/>
16
+ <chart from="1142164802" to="1142769602"/>
17
+ <chart from="1142769602" to="1143374402"/>
18
+ <chart from="1143374402" to="1143979202"/>
19
+ <chart from="1143979202" to="1144584000"/>
20
+ <chart from="1144584000" to="1145188800"/>
21
+ <chart from="1145188800" to="1145793600"/>
22
+ <chart from="1145793600" to="1146398400"/>
23
+ <chart from="1146398400" to="1147003200"/>
24
+ <chart from="1147003200" to="1147608000"/>
25
+ <chart from="1147608000" to="1148212800"/>
26
+ <chart from="1148212800" to="1148817600"/>
27
+ <chart from="1148817600" to="1149422400"/>
28
+ <chart from="1149422400" to="1150027200"/>
29
+ <chart from="1150027200" to="1150632000"/>
30
+ <chart from="1150632000" to="1151236800"/>
31
+ <chart from="1151236800" to="1151841600"/>
32
+ <chart from="1151841600" to="1152446400"/>
33
+ <chart from="1152446400" to="1153051200"/>
34
+ <chart from="1153656000" to="1154260800"/>
35
+ <chart from="1154260800" to="1154865600"/>
36
+ <chart from="1154865600" to="1155470400"/>
37
+ <chart from="1155470400" to="1156075200"/>
38
+ <chart from="1156075200" to="1156680000"/>
39
+ <chart from="1156680000" to="1157284800"/>
40
+ <chart from="1157284800" to="1157889600"/>
41
+ <chart from="1157889600" to="1158494400"/>
42
+ <chart from="1158494400" to="1159099200"/>
43
+ <chart from="1159099200" to="1159704000"/>
44
+ <chart from="1159704000" to="1160308800"/>
45
+ <chart from="1160308800" to="1160913600"/>
46
+ <chart from="1160913600" to="1161518400"/>
47
+ <chart from="1162123200" to="1162728000"/>
48
+ <chart from="1162728000" to="1163332800"/>
49
+ <chart from="1163332800" to="1163937600"/>
50
+ <chart from="1163937600" to="1164542400"/>
51
+ <chart from="1164542400" to="1165147200"/>
52
+ <chart from="1165147200" to="1165752000"/>
53
+ <chart from="1165752000" to="1166356800"/>
54
+ <chart from="1166356800" to="1166961600"/>
55
+ <chart from="1166961600" to="1167566400"/>
56
+ <chart from="1167566400" to="1168171200"/>
57
+ <chart from="1168171200" to="1168776000"/>
58
+ <chart from="1168776000" to="1169380800"/>
59
+ <chart from="1169380800" to="1169985600"/>
60
+ <chart from="1169985600" to="1170590400"/>
61
+ <chart from="1170590400" to="1171195200"/>
62
+ <chart from="1171195200" to="1171800000"/>
63
+ <chart from="1171800000" to="1172404800"/>
64
+ <chart from="1172404800" to="1173009600"/>
65
+ <chart from="1173009600" to="1173614400"/>
66
+ <chart from="1173614400" to="1174219200"/>
67
+ <chart from="1174219200" to="1174824000"/>
68
+ <chart from="1174824000" to="1175428800"/>
69
+ <chart from="1175428800" to="1176033600"/>
70
+ <chart from="1176033600" to="1176638400"/>
71
+ <chart from="1176638400" to="1177243200"/>
72
+ <chart from="1177243200" to="1177848000"/>
73
+ <chart from="1177848000" to="1178452800"/>
74
+ <chart from="1178452800" to="1179057600"/>
75
+ <chart from="1179057600" to="1179662400"/>
76
+ <chart from="1179662400" to="1180267200"/>
77
+ <chart from="1180267200" to="1180872000"/>
78
+ <chart from="1180872000" to="1181476800"/>
79
+ <chart from="1181476800" to="1182081600"/>
80
+ <chart from="1182081600" to="1182686400"/>
81
+ <chart from="1182686400" to="1183291200"/>
82
+ <chart from="1183291200" to="1183896000"/>
83
+ <chart from="1183896000" to="1184500800"/>
84
+ <chart from="1184500800" to="1185105600"/>
85
+ <chart from="1185105600" to="1185710400"/>
86
+ <chart from="1185710400" to="1186315200"/>
87
+ <chart from="1186315200" to="1186920000"/>
88
+ <chart from="1186920000" to="1187524800"/>
89
+ <chart from="1187524800" to="1188129600"/>
90
+ <chart from="1188129600" to="1188734400"/>
91
+ <chart from="1188734400" to="1189339200"/>
92
+ <chart from="1189339200" to="1189944000"/>
93
+ <chart from="1189944000" to="1190548800"/>
94
+ <chart from="1190548800" to="1191153600"/>
95
+ <chart from="1191153600" to="1191758400"/>
96
+ <chart from="1191758400" to="1192363200"/>
97
+ <chart from="1192363200" to="1192968000"/>
98
+ <chart from="1192968000" to="1193572800"/>
99
+ <chart from="1193572800" to="1194177600"/>
100
+ <chart from="1194177600" to="1194782400"/>
101
+ <chart from="1194782400" to="1195387200"/>
102
+ <chart from="1195387200" to="1195992000"/>
103
+ <chart from="1195992000" to="1196596800"/>
104
+ <chart from="1196596800" to="1197201600"/>
105
+ <chart from="1197201600" to="1197806400"/>
106
+ <chart from="1197806400" to="1198411200"/>
107
+ <chart from="1198411200" to="1199016000"/>
108
+ <chart from="1199016000" to="1199620800"/>
109
+ <chart from="1199620800" to="1200225600"/>
110
+ <chart from="1200225600" to="1200830400"/>
111
+ <chart from="1200830400" to="1201435200"/>
112
+ <chart from="1201435200" to="1202040000"/>
113
+ <chart from="1202040000" to="1202644800"/>
114
+ <chart from="1202644800" to="1203249600"/>
115
+ <chart from="1203249600" to="1203854400"/>
116
+ <chart from="1203854400" to="1204459200"/>
117
+ <chart from="1204459200" to="1205064000"/>
118
+ <chart from="1205064000" to="1205668800"/>
119
+ <chart from="1205668800" to="1206273600"/>
120
+ <chart from="1206273600" to="1206878400"/>
121
+ <chart from="1206878400" to="1207483200"/>
122
+ <chart from="1207483200" to="1208088000"/>
123
+ <chart from="1208088000" to="1208692800"/>
124
+ <chart from="1208692800" to="1209297600"/>
125
+ <chart from="1209297600" to="1209902400"/>
126
+ <chart from="1209902400" to="1210507200"/>
127
+ <chart from="1210507200" to="1211112000"/>
128
+ <chart from="1211112000" to="1211716800"/>
129
+ <chart from="1211716800" to="1212321600"/>
130
+ <chart from="1212321600" to="1212926400"/>
131
+ <chart from="1212926400" to="1213531200"/>
132
+ <chart from="1213531200" to="1214136000"/>
133
+ <chart from="1214136000" to="1214740800"/>
134
+ <chart from="1214740800" to="1215345600"/>
135
+ <chart from="1215345600" to="1215950400"/>
136
+ <chart from="1215950400" to="1216555200"/>
137
+ <chart from="1216555200" to="1217160000"/>
138
+ <chart from="1217160000" to="1217764800"/>
139
+ <chart from="1217764800" to="1218369600"/>
140
+ <chart from="1218369600" to="1218974400"/>
141
+ <chart from="1218974400" to="1219579200"/>
142
+ <chart from="1219579200" to="1220184000"/>
143
+ <chart from="1220184000" to="1220788800"/>
144
+ <chart from="1220788800" to="1221393600"/>
145
+ <chart from="1221393600" to="1221998400"/>
146
+ <chart from="1221998400" to="1222603200"/>
147
+ <chart from="1222603200" to="1223208000"/>
148
+ <chart from="1223208000" to="1223812800"/>
149
+ <chart from="1223812800" to="1224417600"/>
150
+ <chart from="1224417600" to="1225022400"/>
151
+ <chart from="1225022400" to="1225627200"/>
152
+ <chart from="1226232000" to="1226836800"/>
153
+ <chart from="1226836800" to="1227441600"/>
154
+ <chart from="1227441600" to="1228046400"/>
155
+ <chart from="1228046400" to="1228651200"/>
156
+ <chart from="1228651200" to="1229256000"/>
157
+ <chart from="1229256000" to="1229860800"/>
158
+ <chart from="1229860800" to="1230465600"/>
159
+ <chart from="1230465600" to="1231070400"/>
160
+ <chart from="1231070400" to="1231675200"/>
161
+ <chart from="1231675200" to="1232280000"/>
162
+ <chart from="1232280000" to="1232884800"/>
163
+ <chart from="1232884800" to="1233489600"/>
164
+ <chart from="1233489600" to="1234094400"/>
165
+ <chart from="1234094400" to="1234699200"/>
166
+ <chart from="1234699200" to="1235304000"/>
167
+ <chart from="1235304000" to="1235908800"/>
168
+ <chart from="1235908800" to="1236513600"/>
169
+ <chart from="1236513600" to="1237118400"/>
170
+ <chart from="1237118400" to="1237723200"/>
171
+ <chart from="1237723200" to="1238328000"/>
172
+ <chart from="1238328000" to="1238932800"/>
173
+ <chart from="1238932800" to="1239537600"/>
174
+ <chart from="1239537600" to="1240142400"/>
175
+ <chart from="1240142400" to="1240747200"/>
176
+ <chart from="1240747200" to="1241352000"/>
177
+ <chart from="1241352000" to="1241956800"/>
178
+ <chart from="1241956800" to="1242561600"/>
179
+ <chart from="1242561600" to="1243166400"/>
180
+ <chart from="1243166400" to="1243771200"/>
181
+ <chart from="1243771200" to="1244376000"/>
182
+ <chart from="1244980800" to="1245585600"/>
183
+ <chart from="1245585600" to="1246190400"/>
184
+ <chart from="1246190400" to="1246795200"/>
185
+ <chart from="1246795200" to="1247400000"/>
186
+ <chart from="1247400000" to="1248004800"/>
187
+ <chart from="1248004800" to="1248609600"/>
188
+ <chart from="1248609600" to="1249214400"/>
189
+ <chart from="1249214400" to="1249819200"/>
190
+ <chart from="1249819200" to="1250424000"/>
191
+ <chart from="1250424000" to="1251028800"/>
192
+ <chart from="1251028800" to="1251633600"/>
193
+ <chart from="1251633600" to="1252238400"/>
194
+ <chart from="1252238400" to="1252843200"/>
195
+ <chart from="1252843200" to="1253448000"/>
196
+ <chart from="1253448000" to="1254052800"/>
197
+ <chart from="1254052800" to="1254657600"/>
198
+ <chart from="1254657600" to="1255262400"/>
199
+ <chart from="1255262400" to="1255867200"/>
200
+ <chart from="1255867200" to="1256472000"/>
201
+ <chart from="1257076800" to="1257681600"/>
202
+ <chart from="1257681600" to="1258286400"/>
203
+ <chart from="1258286400" to="1258891200"/>
204
+ <chart from="1258891200" to="1259496000"/>
205
+ <chart from="1259496000" to="1260100800"/>
206
+ <chart from="1260100800" to="1260705600"/>
207
+ <chart from="1260705600" to="1261310400"/>
208
+ <chart from="1261310400" to="1261915200"/>
209
+ <chart from="1261915200" to="1262520000"/>
210
+ <chart from="1262520000" to="1263124800"/>
211
+ <chart from="1263124800" to="1263729600"/>
212
+ <chart from="1263729600" to="1264334400"/>
213
+ <chart from="1264334400" to="1264939200"/>
214
+ <chart from="1264939200" to="1265544000"/>
215
+ <chart from="1265544000" to="1266148800"/>
216
+ <chart from="1266148800" to="1266753600"/>
217
+ <chart from="1266753600" to="1267358400"/>
218
+ <chart from="1267358400" to="1267963200"/>
219
+ <chart from="1267963200" to="1268568000"/>
220
+ <chart from="1268568000" to="1269172800"/>
221
+ <chart from="1269777600" to="1270382400"/>
222
+ <chart from="1270382400" to="1270987200"/>
223
+ <chart from="1270987200" to="1271592000"/>
224
+ <chart from="1271592000" to="1272196800"/>
225
+ <chart from="1272196800" to="1272801600"/>
226
+ <chart from="1272801600" to="1273406400"/>
227
+ <chart from="1273406400" to="1274011200"/>
228
+ <chart from="1274011200" to="1274616000"/>
229
+ <chart from="1274616000" to="1275220800"/>
230
+ <chart from="1275220800" to="1275825600"/>
231
+ <chart from="1275825600" to="1276430400"/>
232
+ </weeklychartlist></lfm>