由于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)

这个问题也可用于here的另一个python elasticsearch模块。在搜索功能界面中,有from参数。

最佳答案

您是否尝试过使用start参数?

听起来像是一个使用。

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

10-06 12:47