1
我試圖爲last.fm
API
指定藝術家檢索top fans
。last.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
已棄用這種方法嗎?
yes我知道文檔,但包裝 - 請參閱'https:// github.com/pylast/pylast/blob/develop/tests/test_pylast.py',列出'1252行上的'get_top_fans'方法'。這就是爲什麼我問它是否已被棄用。 –
自2014年以來,塑料庫尚未更新,自那時起,對last.fm API進行了重大更改。因此,雖然庫中確實定義了get_last_fans方法,但由於沒有相應的API端點,因此無法使用它。 –
我上面評論中的塑料應該讀取pylast。 –