gpt4 book ai didi

python - 使用 TwitterAPI Python 库,当您进行搜索时可以按语言进行过滤吗?

转载 作者:行者123 更新时间:2023-12-01 08:54:43 24 4
gpt4 key购买 nike

所以我正在进行如下搜索:

r = api.request('search/tweets', {'q':search_query, 
'result_type':"recent", 'count':100})

我知道使用 Tweepy 时可以lang = "en",但我尝试搜索 TwitterAPI 文档(文档不是很好),但找不到任何内容。这可以用 TwitterAPI 来做吗?

最佳答案

Twitter API 的细节在 TwitterAPI 的 docs 中没有“详细”记录。因为目的是让您使用 Twitter 的 docs 。 TwitterAPI 是 API 的一个非常轻量级的包装器。

以下是您问题的答案:

r = api.request('search/tweets', 
{'q':search_query,
'result_type':'recent',
'count':100,
'lang':'en'})

关于python - 使用 TwitterAPI Python 库,当您进行搜索时可以按语言进行过滤吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52857463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com