Python3 tweepy csv编码

Python3 tweepy csv编码,python,csv,twitter,encode,Python,Csv,Twitter,Encode,请帮助解决此错误。我正在尝试从twitter获取推文,并将其写入csv文件 #!/usr/bin/env python # encoding: utf-8 import tweepy #https://github.com/tweepy/tweepy import csv import codecs #consumer key, consumer secret, access token, access secret. -- -- -- -- def get_all_tweets(s

请帮助解决此错误。我正在尝试从twitter获取推文,并将其写入csv文件

#!/usr/bin/env python
# encoding: utf-8

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



#consumer key, consumer secret, access token, 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)

        #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.id_str, tweet.created_at, tweet.text.encode("utf-8")] for tweet in alltweets]

    #write the csv  
    with codecs.open('%s_tweets.csv' % screen_name, 'wb') as f:

        writer = csv.writer(f)
        writer.writerow([bytes(id,'utf-8'),bytes(created_at,'utf-8'),bytes(text,'utf-8')])
        writer.writerows(outtweets)

    pass


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

在529619651269894144之前获取推文 …目前已下载3条推文

Traceback (most recent call last):
  File "C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py", line 67, in <module>
    get_all_tweets("gokul7071")
  File "C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py", line 59, in get_all_tweets
    writer.writerow([bytes(id,'utf-8'),bytes(created_at,'utf-8'),bytes(text,'utf-8')])
TypeError: encoding or errors without a string argument
Traceback (most recent call last):
  File "C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py", line 67, in <module>
    get_all_tweets("gokul7071")
  File "C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py", line 59, in get_all_tweets
    writer.writerow(["id","created_at","text"])
TypeError: 'str' does not support the buffer interface
回溯(最近一次呼叫最后一次):
文件“C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py”,第67行,在
获取所有推文(“gokul7071”)
文件“C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py”,第59行,在get\u all\u tweets中
writer.writerow([字节(id,'utf-8')、字节(创建于,'utf-8')、字节(文本,'utf-8'))
TypeError:没有字符串参数的编码或错误
在529619651269894144之前获取推文 …目前已下载3条推文

Traceback (most recent call last):
  File "C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py", line 67, in <module>
    get_all_tweets("gokul7071")
  File "C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py", line 59, in get_all_tweets
    writer.writerow([bytes(id,'utf-8'),bytes(created_at,'utf-8'),bytes(text,'utf-8')])
TypeError: encoding or errors without a string argument
Traceback (most recent call last):
  File "C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py", line 67, in <module>
    get_all_tweets("gokul7071")
  File "C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py", line 59, in get_all_tweets
    writer.writerow(["id","created_at","text"])
TypeError: 'str' does not support the buffer interface
回溯(最近一次呼叫最后一次):
文件“C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py”,第67行,在
获取所有推文(“gokul7071”)
文件“C:\Users\PraveenMS\Desktop\tweepy-3.3.0\examples\importtweepy.py”,第59行,在get\u all\u tweets中
writer.writerow([“id”、“created_at”、“text”])
TypeError:“str”不支持缓冲区接口

使用writerow写入数据总是很困难。您需要遵循各种编码特征。还有其他更简单的方法来收集推文并将其存储在csv文件中……如果您能说出要存储的确切内容……那么给出适当的解决方案可能会更容易

from tweepy import Stream
from tweepy import OAuthHandler
from tweepy.streaming import StreamListener
import time

ckey = '######'
csecret = '#####'
atoken = '####'
asecret = '#####'

class listener(StreamListener):

    def on_data(self, data):
      try:
          print data
          saveFile = open('Filename.csv','a')
          saveFile.write(data)
          saveFile.write('\n')
          saveFile.close()
          return True
      except BaseException, e:
          print 'failed ondata',str(e)
          time.sleep(5)

    def on_error(self, status):
        print status


auth = OAuthHandler(ckey, csecret)
auth.set_access_token(atoken, asecret)
twitterStream = Stream(auth, listener())
twitterStream.filter(track=["Obama"],languages='en')

这是一个关于“奥巴马”一词的推特示例…它创建了一个名为Filename.csv的文件…我希望这会有所帮助…你的问题不是描述你想要什么

用writerow写入数据总是很困难。你需要遵循各种编码特征。还有其他更简单的方法来收集推文并将其存储在csv文件中…如果你能说出你想要的确切内容的话存储..以便更容易给出适当的解决方案

from tweepy import Stream
from tweepy import OAuthHandler
from tweepy.streaming import StreamListener
import time

ckey = '######'
csecret = '#####'
atoken = '####'
asecret = '#####'

class listener(StreamListener):

    def on_data(self, data):
      try:
          print data
          saveFile = open('Filename.csv','a')
          saveFile.write(data)
          saveFile.write('\n')
          saveFile.close()
          return True
      except BaseException, e:
          print 'failed ondata',str(e)
          time.sleep(5)

    def on_error(self, status):
        print status


auth = OAuthHandler(ckey, csecret)
auth.set_access_token(atoken, asecret)
twitterStream = Stream(auth, listener())
twitterStream.filter(track=["Obama"],languages='en')


这是一个关于“奥巴马”这个词的推文流的示例…它创建了一个名为Filename.csv的文件…我希望这能有所帮助…你的问题不是描述你想要什么

#用open(“%s_tweets.csv”%screen_name,'wb')将csv写成f:writer=csv.writer(f)a_new=[tuple(map(str,i))for i in outtweets]writer.writerow(str.encode(“id”)、str.encode(“created_at”)、str.encode(“text”)、str.encode(“media_url”)writer.writerows(str.encode(a_new))也尝试了上述代码。使用encode函数将str列表转换为字节时,我会遇到错误。#使用open编写csv('%s_tweets.csv'%screen_name',wb')为f:writer=csv.writer(f)a_new=[tuple(map(str,i))for i in outtweets]writer.writerow(str.encode(“id”)、str.encode(“created_at”)、str.encode(“text”)、str.encode(“media_url”)writerows(str.encode.writerow(str.encode也尝试了上面的代码。我在使用encode函数将str列表转换为字节时遇到错误。#使用open('%s_tweets.csv'%screen_name',wb')将csv写入f:writer=csv.writer(f)a_new=[tuple(map(str,I))for I in outtweets]writer.writerow(str.encode(“id”),str.encode(“created_at”)、str.encode(“text”)、str.encode(“media_url”)writerows(str.encode(a_new))我也尝试了上面的代码。我在使用encode函数将str列表转换为字节时遇到错误。我想获得一个用户的所有tweet并保存在csv中。请帮助我实现itok…这对我来说很好。它收集所有tweet并将其存储在csv中。检查这个…你能使用上面的代码获得“@xxxxx”的所有tweet吗?它为你提供了他最近的推文..我得到一个特定用户的3240条推文我想得到一个用户的所有推文并保存在csv中。请帮助我实现itok…这对我来说很好,它收集所有推文并存储在csv中检查这个…你能用上面的代码得到“@xxxxx”的所有推文吗?它给你最新的推文..我得到3240条推文我想获得一个用户的所有tweet并保存在csv中。请帮助我实现itok…这对我来说很好。它收集所有tweet并将其存储在csv中检查此…你能使用上面的代码获得“@xxxxx”的所有tweet吗?它提供了你最近的tweet。我获得了一个特定用户的3240条tweet