私はプログラミングの初心者ですが、私の問題を解決できることを願っています。tweepy/python/stream.api と R (統計プログラム) を使用してツイートを分析しようとしています。
ストリームリスナーが機能していることは知っていますが、出力を使用できません...
これは私が実行しているスクリプトです:
import tweepy
consumer_key="..."
consumer_secret="..."
access_key = "..."
access_secret = "..."
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_key, access_secret)
api = tweepy.API(auth)
class CustomStreamListener(tweepy.StreamListener):
def on_status(self, status):
print status.text
def on_error(self, status_code):
print >> sys.stderr, 'Encountered error with status code:', status_code
return True # Don't kill the stream
def on_timeout(self):
print >> sys.stderr, 'Timeout...'
return True # Don't kill the stream
sapi = tweepy.streaming.Stream(auth, CustomStreamListener())
sapi.filter(track=['...'])
その結果、完全なツイート (最初の 50 文字のみ) を取得できず、ツイートされた時間もわかりません。どうすればこれを修正できますか?出力をExcelファイルに「印刷」することは可能ですか?