0
我一直在嘗試使用python來設置事件api。下面的例子是所有我能找到的它的文檔:事件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
和l
立場在api.call()
方法?
Here is the link to the python
The eventful API documentation
你打開了[documentation](https://api.eventful.com/docs/events/search)頁面嗎?看起來'l'是位置,'q'應該在那裏列出其他東西。 –