gpt4 book ai didi

python - 使用 tweepy 从 "user_timeline"获取完整的推文文本

转载 作者:太空狗 更新时间:2023-10-29 16:53:51 26 4
gpt4 key购买 nike

我正在使用 tweepy 使用包含的脚本从用户的时间轴中获取推文 here .然而,这些推文被截断了:

auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_key, access_secret)
api = tweepy.API(auth)
new_tweets = api.user_timeline(screen_name = screen_name,count=200, full_text=True)

返回:

Status(contributors=None, 
truncated=True,
text=u"#Hungary's new bill allows the detention of asylum seekers
& push backs to #Serbia. We've seen push backs before so\u2026 https://
t.co/iDswEs3qYR",
is_quote_status=False,
...

也就是说,对于某些 inew_tweets[i].text.encode("utf-8") 看起来像

#Hungary's new bill allows the detention of asylum seekers & 
push backs to #Serbia. We've seen push backs before so…https://t.co/
iDswEs3qYR

后者中的 ... 替换了通常在 Twitter 上显示的文本。

有谁知道我如何覆盖 truncated=True 以获得我请求的全文?

最佳答案

而不是 full_text=True 你需要 tweet_mode="extended"

然后,您应该使用 full_text 而不是 text 来获取完整的推文文本。

您的代码应如下所示:

new_tweets = api.user_timeline(screen_name = screen_name,count=200, tweet_mode="extended")

然后为了获得完整的推文文本:

tweets = [[tweet.full_text] for tweet in new_tweets]

关于python - 使用 tweepy 从 "user_timeline"获取完整的推文文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42705314/

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