From: <gea...@us...> - 2009-01-27 13:19:12
|
Revision: 318 http://mypyspace.svn.sourceforge.net/mypyspace/?rev=318&view=rev Author: gearmonkey Date: 2009-01-27 12:43:42 +0000 (Tue, 27 Jan 2009) Log Message: ----------- I think things are finally back in working order after the transition to myspace music 2.0 Turns out the new artistID and playlistID identifiers are terminated with ampersands not commas. I don't know where I got the comma termination from, but it's fixed now. These changes need to get to merged with the web-serv branch, I'll sort that out later today. Also, when I was testing these I noticed that the song pictures are all getting filled in with the myspace no photo icon. Not sure where that's coming from, but I'll try to sort that out in the near term as well. Modified Paths: -------------- myspaceCrawler/trunk/myspaceuris.py Modified: myspaceCrawler/trunk/myspaceuris.py =================================================================== --- myspaceCrawler/trunk/myspaceuris.py 2009-01-26 10:28:38 UTC (rev 317) +++ myspaceCrawler/trunk/myspaceuris.py 2009-01-27 12:43:42 UTC (rev 318) @@ -15,7 +15,7 @@ # new tag updated 13/1/2009 #""" <a href="http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=""", '''"''' # ### tag will be terminated by a '"' ### -friendNameTag = '''_friendLink">''', '''<''' +friendNameTag = '''_friendLink">''', '''</a>''' ### tag terminated by '<' ### userIDTag = '''"DisplayFriendId":''', ''',"IsLoggedIn"''' # 13/1/2009 @@ -41,9 +41,9 @@ ### #these two tag scraps are provisional for grabbing the ArtistID and playlist number, which are now nessecary to grab audio -#both of these should be terminated by a comma -playlistIDtag = """plid=""", ''',''' -artistIDtag = """artid=""",''',''' +#both of these should be terminated by an ampersand +playlistIDtag = """plid=""", '''&''' +artistIDtag = """artid=""",'''&''' ######################################################################################################### This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |