是否可以通过 Tweepy 使用 Twitter 流 API 执行 NOT 搜索?
Is it possible to perform a NOT search using the Twitter streaming API through Tweepy?
twitterStream.filter(track=["aids","hiv","hiv aids"])
track=["aids","hiv"] 给我,艾滋病或艾滋病毒
track=["aids hiv"] 给予,艾滋病和艾滋病毒。
但是,我们为 NOT 做了什么?
Twitter 的 API 过滤器和跟踪没有针对 NOT 运算符的特定情况,可能 not 查询会倾向于 return 太多结果并且计算量大。
Tweepy 模仿 Twitter API 过滤器和跟踪,因此您无法在查询中执行 NOT。
track/filter 记录在此处:
https://developer.twitter.com/en/docs/tweets/filter-realtime/guides/basic-stream-parameters
你可以做的是根据标签删除不需要的流。
twitterStream.filter(track=["aids","hiv","hiv aids"])
track=["aids","hiv"] 给我,艾滋病或艾滋病毒
track=["aids hiv"] 给予,艾滋病和艾滋病毒。
但是,我们为 NOT 做了什么?
Twitter 的 API 过滤器和跟踪没有针对 NOT 运算符的特定情况,可能 not 查询会倾向于 return 太多结果并且计算量大。 Tweepy 模仿 Twitter API 过滤器和跟踪,因此您无法在查询中执行 NOT。
track/filter 记录在此处: https://developer.twitter.com/en/docs/tweets/filter-realtime/guides/basic-stream-parameters
你可以做的是根据标签删除不需要的流。