多事的api中的关键字映射到什么位置?

时间:2016-07-31 21:47:39

标签: python

我一直在尝试使用python设置eventful api。以下示例是我可以在其上找到的所有文档:

import eventful

api = eventful.API('your API key here')

# If you need to log in:
# api.login('username', 'password')

events = api.call('/events/search', q='music', l='San Diego')
for event in events['events']['event']:
    print "%s at %s" % (event['title'], event['venue_name'])

q方法中lapi.call()代表什么?

Here is the link to the python

The eventful API documentation

1 个答案:

答案 0 :(得分:0)

刚刚发现了args的意思, 这个链接有它们:

http://api.eventful.com/tools/tutorials/search

什么:'what'参数,也称为'q'或'keywords',用于搜索不属于该类别的事件的任何方面,地点或时间。

其中:'where'参数,也称为'l'或'location',用于按城市,地区,邮政编码(ZIP),国家,街道地址进行搜索或场地。它通常与“内部”和“单位”参数一起使用来进行半径搜索。