繁体   English   中英

将Twitter数据抓取到csv(tweeepy,python)中。 如果文件已经存在,如何添加:

[英]Datascrape twitter into csv (tweeepy, python). How to append if file already exists:

我有以下代码:

import tweepy #https://github.com/tweepy/tweepy
import csv
import random

#Twitter API credentials
consumer_key = ""
consumer_secret = ""
access_key = ""
access_secret = ""

twitname = raw_input("Enter desired twitter account from which a tweet will be selected to act as inspiration for the poem: ")




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)

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

    #transform the tweepy tweets into a 2D array that will populate the csv 
    outtweets = [[tweet.text.encode("utf-8")] for tweet in alltweets]

    #write the csv  
    with open('%s_tweets.csv' % screen_name, 'wb') as f:
        writer = csv.writer(f)
        writer.writerow(["text"])
        writer.writerows(outtweets)

    pass


if __name__ == '__main__':
    #pass in the username of the account you want to download
    get_all_tweets(twitname)




spamReader = csv.reader(open(twitname + '_tweets.csv', 'r'))

twitterinsp = sum([i for i in spamReader],[]) #To flatten the list
print(random.choice(twitterinsp))

当前,它会抓取最新的tweet,将它们存储在csv文件中,然后显示一个随机条目。 我想做的是拥有它,因此,如果csv文件已经存在,它将新的tweet附加到已经存在的csv中。 这可能/有人有什么想法吗? 如果这不可能,有谁知道我将如何在这里编写if else函数:如果文件存在,则打印随机条目,否则刮取,存储,然后打印随机条目。 任何麻烦都值得赞赏。 谢谢!

而不是“ wb”,而是使用“ ab”

with open('%s_tweets.csv' % screen_name, 'ab') as f:

文件模式: https//www.programiz.com/python-programming/file-operation

Mode    Description
'r' Open a file for reading. (default)
'w' Open a file for writing. Creates a new file if it does not exist or truncates the file if it exists.
'x' Open a file for exclusive creation. If the file already exists, the operation fails.
'a' Open for appending at the end of the file without truncating it. Creates a new file if it does not exist.
't' Open in text mode. (default)
'b' Open in binary mode.
'+' Open a file for updating (reading and writing)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM