如何限制Twitter搜索的结果数量?

我认为这是可行的... tweetSearchUser是另一行代码中的用户输入。

tso = TwitterSearchOrder() # create a TwitterSearchOrder object
    tso.set_keywords(["tweetSearchUser"]) # let's define all words we would like to have a look for
    tso.setcount(30)
    tso.set_include_entities(False) # and don't give us all those entity information


在看这个参考

https://twittersearch.readthedocs.org/en/latest/advanced_usage_ts.html

尝试过这个,似乎应该可以,但是找不到输入日期的格式...

tso.set_until('2016-02-25')

最佳答案

您应该使用documentation中指定的set_count
count的默认值为200,因为它是Twitter API返回的最大tweet。

10-04 19:00