gpt4 book ai didi

python - 使用 Tweepy 通过 API 1.1 搜索推文

转载 作者:太空狗 更新时间:2023-10-29 21:03:34 26 4
gpt4 key购买 nike

在过去的 3 个小时里,我一直在尝试让 tweepy 搜索 sring,但没有成功。我不断收到回复,它应该使用 api 1.1。我认为那已经实现了...因为我可以用 tweepy 发帖。我做错了什么?

#!/usr/bin/env python

import tweepy

consumer_key = '***'
consumer_secret = '***'
access_token = '***'
access_token_secret = '***'

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)

api = tweepy.API(auth)


results = api.search(q="Mice")

for result in results:
print result.text

最佳答案

升级你的 tweepy 版本:

pip install --upgrade tweepy

或者,直接从github安装:

git clone https://github.com/tweepy/tweepy.git
cd tweepy
python setup.py install

仅供引用,使用 2.1 版本测试了您的代码 - 它有效。

关于python - 使用 Tweepy 通过 API 1.1 搜索推文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18580435/

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