pyes'from'关键字无法设置

时间:2014-06-03 14:20:43

标签: python elasticsearch pyes

由于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参数。

1 个答案:

答案 0 :(得分:0)

您是否尝试使用start参数?

听起来像是要使用的那个。

请参阅http://pyes.readthedocs.org/en/latest/references/pyes.queryset.html#pyes.queryset.QuerySet.start