由于from
是一个特殊的python关键字,我无法传递它pyes.es.search
函数。它给出了语法错误。 pyes.es.search(maf, "twitter", "tweet", sort="timestamp", size=2, from=3)
。我传递了包含from
的关键字参数,如下所示,但from
在其他工作时没有用。
keywords = {'sort': 'timestamp', 'size':3, 'from':2}
r = pyes.es.search(maf, "twitter", "reply",**keywords)
此问题也适用于此处的另一个python elasticsearch模块here。在搜索功能界面中有from
参数。
答案 0 :(得分:0)
您是否尝试使用start参数?
听起来像是要使用的那个。
请参阅http://pyes.readthedocs.org/en/latest/references/pyes.queryset.html#pyes.queryset.QuerySet.start