0

我想通过 Pylast 通过 Last.fm API 获取用户信息,但它返回错误:绑定方法,我想我需要你的帮助。

import pylast

API_KEY = "xxx"
API_SECRET = "xxx"

username = "xxx"
password_hash = pylast.md5("xxx")

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

#Get User Info
user = pylast.User('xxx',network=network)
print user.get_id
4

1 回答 1

1

这不是错误,它只是告诉您这user.get_id是一个绑定到对象的函数。

我认为您需要print user.get_id()调用该函数并查看它为您提供了什么...确保您知道什么是函数:)

于 2012-12-26T15:10:01.767 回答