嗨,我正在尝试通过提供搜索词和要收集的推文数量作为输入来从我的Twitter API收集推文。这是代码段
searchTerm = input(“输入搜索词:\ n”) option = input(“想要输入数字(要收集的推文数量)是/否:”)
if option == 'y':
counts = int(input("Enter that number"))
while True and sentiment_no < counts:
try:
stream = Stream(auth, listener)
# search for any valid keyword from twitter
stream.filter(track=[searchTerm])
except IncompleteRead:
continue
在上面的代码片段中,sentiment_no跟踪已收集的推文。 但是问题是,在提取的推文数量(sentiment_no)超过该数量(计数)之后,并没有停止并且连续给出推文