2013-05-29 41 views
3

我正在使用Python收集藝術家中的信息。是否有可能從Last.FM API獲取音樂記錄和偵聽器?

在其他來源中,我想使用Last.FM每個藝術家的音樂記錄和聽衆的刮信息。

有人可以告訴我這是可以通過API或我是否應該給BeautifulSoup一個鏡頭並解析HTML?

我已經在使用Python的pylast模塊,但無法弄清楚它應該如何工作。

+2

您是否嘗試過:http://www.last.fm/api/show/artist.getInfo? – jkovacs

回答

1

以下是如何與pylast做到這一點:

#!/usr/bin/env python 
import pylast 

# You have to have your own unique two values for API_KEY and API_SECRET 
# Obtain yours from http://www.last.fm/api/account for Last.fm 
API_KEY = "TODO_ENTER_YOURS" 
API_SECRET = "TODO_ENTER_YOURS" 

lastfm_network = pylast.LastFMNetwork(api_key = API_KEY, api_secret = API_SECRET) 

artist = lastfm_network.get_artist("Test Artist") 

print "Listeners:", artist.get_listener_count() 
print "Scrobbles:", artist.get_playcount() 

輸出:

Listeners: 851 
Scrobbles: 3434 
相關問題