我正在使用tweepy api收集推文,我想要这些推文的全文。参考https://github.com/tweepy/tweepy/issues/974,tweepy Streaming API : full text和Tweepy Truncated Status中的示例,我使用Extended_mode进行了尝试。但是我收到一个错误消息,提示 AttributeError:“状态”对象没有属性“ full_text” 。
从上面的示例中我知道,如果该推文不超过140个字符,则只需照常获取文本即可。但是,这些示例是针对StreamListener的,而我没有使用StreamListener。如何使用tweepy Streaming API : full text中的try catch块来解决我得到的错误并获得tweets的全文?我应该如何修改下面的代码?
getData.py
import tweepy
import csv
# Twitter API credentials
consumer_key = ""
consumer_secret = ""
access_key = ""
access_secret = ""
def get_all_tweets(screen_name):
# Twitter only allows access to a users most recent 3240 tweets with this method
# authorize twitter, initialize tweepy
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_key, access_secret)
api = tweepy.API(auth)
# initialize a list to hold all the tweepy Tweets
alltweets = []
# make initial request for most recent tweets (200 is the maximum allowed count)
new_tweets = api.user_timeline(screen_name=screen_name, count=200)
# save most recent tweets
alltweets.extend(new_tweets)
# save the id of the oldest tweet less one
oldest = alltweets[-1].id - 1
# keep grabbing tweets until there are no tweets left to grab
while len(new_tweets) > 0:
print
"getting tweets before %s" % (oldest)
# all subsiquent requests use the max_id param to prevent duplicates
new_tweets = api.user_timeline(screen_name=screen_name, count=200, max_id=oldest, include_entities=True,
tweet_mode='extended')
# save most recent tweets
alltweets.extend(new_tweets)
# update the id of the oldest tweet less one
oldest = alltweets[-1].id - 1
print
"...%s tweets downloaded so far" % (len(alltweets))
user = api.get_user(screen_name)
followers_count = user.followers_count
# transform the tweepy tweets into a 2D array that will populate the csv
outtweets = [[tweet.id_str, tweet.created_at, tweet.full_text.encode("utf-8"), 1 if 'media' in tweet.entities else 0,
1 if tweet.entities.get('hashtags') else 0, followers_count, tweet.retweet_count, tweet.favorite_count]
for tweet in alltweets]
# write the csv
with open('tweets.csv', mode='a', encoding='utf-8') as f:
writer = csv.writer(f)
writer.writerow(["id", "created_at", "text", "hasMedia", "hasHashtag", "followers_count", "retweet_count", "favourite_count"])
writer.writerows(outtweets)
pass
def main():
get_all_tweets("@MACcosmetics")
if __name__ == '__main__':
main()
答案 0 :(得分:1)
使用光标在扩展模式下分析tweet [tweepy文档3.6.0 https://media.readthedocs.org/pdf/tweepy/latest/tweepy.pdf]并更改您的用法 .text到.full_text
for status in tweepy.Cursor(api.user_timeline, id='MACcosmetics', tweet_mode='extended').items():
print(status.full_text)
答案 1 :(得分:0)
最后,这对我有用:
status = tweet if 'extended_tweet' in status._json: status_json = status._json['extended_tweet']['full_text'] elif 'retweeted_status' in status._json and 'extended_tweet' in status._json['retweeted_status']: status_json = status._json['retweeted_status']['extended_tweet']['full_text'] elif 'retweeted_status' in status._json: status_json = status._json['retweeted_status']['full_text'] else: status_json = status._json['full_text'] print(status_json)'