我试图将任意数量的参数传递给一个函数,并且我不断收到错误,并且不太确定我哪里出错了。这是我第一次尝试使用 **kwargs。
更具体地说,我正在尝试使用 Facepy 库从 Facebook 的 Graph API 获取数据。根据文档(https://facepy.readthedocs.org/en/latest/usage/graph-api.html),该get
方法应该接受可选参数,如“since”、“until”等。因为我只想在任何给定的查询中传递其中一些参数,这似乎是使用 **kwargs 的理想时机。
首先,我创建一个包装 Facepy 库的函数:
def graph_retriever(object_id, metric_url, **kwargs):
#optional args that I want to pass include since, until, and summary
graph = facepy.GraphAPI(access_token)
retries = 3 # An integer describing how many times the request may be retried.
object_data = graph.get('%s/%s' % (object_id, metric_url), False, retries, **kwargs)
return object_data
这里有两个例子,我用不同的参数调用函数:
for since, until in day_segmenter(start, end): # loop through the date range
raw_post_data = graph_retriever(str(page), 'posts', {'since': since, 'until': until})
post_dict['comment_count'] = graph_retriever(post_id, 'comments', {'summary':1})['summary']['total_count']
但是,当我尝试运行它时,出现以下错误:
Traceback (most recent call last):
raw_post_data = graph_retriever(str(page), 'posts', {'since': since, 'until': until})
TypeError: graph_retriever() takes exactly 2 arguments (3 given)
我究竟做错了什么?