我使用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,
...
也就是说,对于某些i
,new_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
以获取我的请求的全文?
答案 0 :(得分:21)
而不是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]
答案 1 :(得分:0)
Manolis的回答很好,但还不完整。要获得tweet的扩展版本(如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.6
和tweepy-3.6.0
进行了测试。