通过tweepy从“user_timeline”获取完整的推文文本

问题描述 投票:15回答:2

我使用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以获取我的请求的全文?

python twitter tweepy
2个回答
22
投票

而不是full_text = True,你需要tweet_mode =“extended”

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

您的代码应如下所示:

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

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

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


2
投票

Manolis的答案很好但不完整。要获得推文的扩展版本(如Manoli的版本),您可以:

tweetL = api.user_timeline(screen_name='sdrumm', tweet_mode="extended")
tweetL[8].full_text
'Statement of the day at #WholeChildSummit2019 - “‘SOME’ is not a number, and ‘SOON’ is not a time!” IMO, this is why educational systems get stuck. Who in your system will initiate change? TODAY! #HSEFutureReady'

但是,如果此推文是转发,您将需要使用转推的全文:

tweetL = api.user_timeline(id=2271808427, tweet_mode="extended")
# This is still truncated
tweetL[6].full_text
'RT @blawson_lcsw: So proud of these amazing @HSESchools students who presented their ideas on how to help their peers manage stress in mean…'
# Use retweeted_status to get the actual full text
tweetL[6].retweeted_status.full_text
'So proud of these amazing @HSESchools students who presented their ideas on how to help their peers manage stress in meaningful ways! Thanks @HSEPrincipal for giving us your time!'

这是用Python 3.6tweepy-3.6.0测试的。

© www.soinside.com 2019 - 2024. All rights reserved.