TwitterAPIから取得したデータをJSON形式から辞書型に変換したいのですが
やり方がわかりません、別のサイトを参考にした変換方法を試しましたが、
このコードには当てはまらないようです。教えていただきたいです。
環境はgooglecolaboratoryです。
import tweepy from datetime import timedelta CK = '000' CS = '000' AT = '000' AS = '000' class Listener(tweepy.StreamListener): def on_status(self, status): status.created_at += timedelta(hours=9) print('------------------------------') print(status.text) print("{name}({screen}) {created} via {src}\n".format(name=status.author.name, screen=status.author.screen_name,created=status.created_at, src=status.source)) return True def on_error(self, status_code): print('エラー発生: ' + str(status_code)) return True def on_timeout(self): print('Timeout...') return True auth = tweepy.OAuthHandler(CK, CS) auth.set_access_token(AT, AS) listener = Listener() stream = tweepy.Stream(auth, listener) stream.filter(track = ["プログラミング"]) ------------------------------ 取得したタイムライン ------------------------------ 取得したタイムライン ------------------------------ import json data=json.loads(stream) #変換する為のコード -------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-10-cc558676f9f5> in <module>() 1 import json ----> 2 data=json.loads(stream) /usr/lib/python3.6/json/__init__.py in loads(s, encoding, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw) 346 if not isinstance(s, (bytes, bytearray)): 347 raise TypeError('the JSON object must be str, bytes or bytearray, ' --> 348 'not {!r}'.format(s.__class__.__name__)) 349 s = s.decode(detect_encoding(s), 'surrogatepass') 350 TypeError: the JSON object must be str, bytes or bytearray, not 'Stream'
回答1件
あなたの回答
tips
プレビュー