2016-07-31 42 views
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']) 

什麼的ql立場在api.call()方法?

Here is the link to the python

The eventful API documentation

+0

你打開了[documentation](https://api.eventful.com/docs/events/search)頁面嗎?看起來'l'是位置,'q'應該在那裏列出其他東西。 –

回答

0

剛剛發現的ARGS站在什麼, 這個環節都有他們:

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

的事情: '是什麼' 的說法,也被稱爲'q'或'關鍵字'用於搜索不是標準事件的任何方面噸的類別,地點或時間。

地點:The '其中' 的說法,也被稱爲'L'或 '位置',所使用的城市,地區,郵政編碼(ZIP),鄉村,街道地址,或地點進行搜索。它通常與「內部」和「單位」參數配合使用來進行半徑搜索。