簡體   English   中英

如何在python中使用Tweepy獲取推文的全文

[英]How to get full text of tweets using Tweepy in python

我正在使用tweepy api收集推文,我想要推文的全文。 參考https://github.com/tweepy/tweepy/issues/974中的示例, tweepy Streaming API:全文Tweepy截斷狀態我使用Extended_mode進行了嘗試。 但是我收到一個錯誤,說AttributeError:'Status'對象沒有屬性'full_text'

從上面的示例中,我知道,如果該推文不超過140個字符,則只需照常獲取文本即可。 但是,這些示例是針對StreamListener的,而我沒有使用StreamListener。 如何使用tweepy Streaming API中的try catch塊:全文並解決我得到的錯誤並獲取tweets的full_text? 我應該如何修改下面的代碼?

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()

使用光標在擴展模式下解析推文[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)

最后,這對我有用:

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)'

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM