2016-12-03 55 views
1

我試圖爲last.fmAPI指定藝術家檢索top fanslast.fm - 獲取藝術家熱門粉絲

我建立與呼叫:

last = pylast.LastFMNetwork(api_key = API_KEY, api_secret =API_SECRET, username = username, password_hash = password_hash) 

art = last.get_artist(artist) 

fans = art.get_top_fans(limit=2) 

,但我收到以下錯誤:

pylast.WSError: Invalid Method - No method with that name in this package

已棄用這種方法嗎?

回答

0

Last.fm API方法這裏列出:

http://www.last.fm/api

藝術家不會出現有getTopFans方法,從而有可能導致您的問題。

+0

yes我知道文檔,但包裝 - 請參閱'https:// github.com/pylast/pylast/blob/develop/tests/test_pylast.py',列出'1252行上的'get_top_fans'方法'。這就是爲什麼我問它是否已被棄用。 –

+0

自2014年以來,塑料庫尚未更新,自那時起,對last.fm API進行了重大更改。因此,雖然庫中確實定義了get_last_fans方法,但由於沒有相應的API端點,因此無法使用它。 –

+0

我上面評論中的塑料應該讀取pylast。 –

相關問題