gpt4 book ai didi

python - 使用推文 ID 使用 tweepy 查找推文在几条推文后停止 - 用户暂停错误

转载 作者:太空宇宙 更新时间:2023-11-03 21:33:49 28 4
gpt4 key购买 nike

我有一个包含推文 ID 的数据集,我想使用 Tweepy 查找推文并将它们保存在 csv 文件中。

auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)

api = tweepy.API(auth, wait_on_rate_limit=True)

def get_tweet_text(tweet_id):
tweet = api.get_status(tweet_id)
return tweet.text

with open('NAACL_SRW_2016_cleaned.csv', 'a') as csvfile_clean:
writer = csv.writer(csvfile_clean, delimiter=';')
writer.writerow(['ID', 'Form of Hate Speech', 'Tweet'])

with open('NAACL_SRW_2016.csv') as csvfile:
csv_reader: object = csv.reader(csvfile, delimiter=',')
for row in csv_reader:
id_of_tweet = (row[0])
hate = (row[1])
tweet = get_tweet_text(id_of_tweet)
print(tweet)

writer = csv.writer(csvfile_clean, delimiter=';')
writer.writerow([id_of_tweet, hate, tweet])

代码工作正常,但在几条推文后停止,我收到下面的错误消息。不过,我并没有被暂停——我的帐户上没有收到任何有关此问题的消息,而且我仍然可以正常发送推文。我尝试了不同的 IP 并重新生成了 key ,但我总是收到上述错误。有人经历过类似的事情吗?如果您对我可以尝试如何使其发挥作用有任何建议,我将非常感激。

So Drasko just said he was impressed the girls cooked half a chicken.. 
They cooked a whole one #MKR
Drasko they didn't cook half a bird you idiot #mkr
Hopefully someone cooks Drasko in the next ep of #MKR
of course you were born in serbia...you're as fucked as A Serbian Film
These girls are the equivalent of the irritating Asian girls #MKR
Lost the plot - where's the big Texan with the elephant sized steaks

tweepy.error.TweepError: [{'code': 63, 'message': 'User has been
suspended.'}]

最佳答案

该错误表明撰写您正在搜索的推文的用户已被暂停,而不是您。这是 tweepy api 针对错误代码 63 返回的值,如此处列出的 https://developer.twitter.com/en/docs/basics/response-codes.html

Twitter 响应代码表指出,代码 63 表示用户帐户已被暂停,无法检索信息

您将无法使用 API 访问此信息。没有解决办法。

关于python - 使用推文 ID 使用 tweepy 查找推文在几条推文后停止 - 用户暂停错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53363234/

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