サイトリンク内容を参考に
pythonを使ってTwitterAPIから得た情報をpostgreSQLに格納したいのですが、
ツイートデータをデータベースに挿入するところでnameエラーとなってしまいました。
>>> from twitter import * >>> auth = OAuth( ... consumer_key='QyVL7V9u4m61xeUxRSignDdVR', ... consumer_secret='fgPDeUP0WKhXSRgkYiH7CrU3qiUEmtUV5DTRboMuq3WSEysATO', ... token='000', ... token_secret='000' ... ) >>> params = dict() >>> params["locations"] = "139.48, 35.30, 139.57, 35.34" >>> twitter_stream = TwitterStream(auth=auth, domain='stream.twitter.com') >>> import psycopg2 >>> conn = psycopg2.connect(host='localhost', dbname='twitterdb', user='postgres', password='000', port='5432') >>> cur = conn.cursor() >>> command = '''INSERT INTO twitteruser (id, user_name, text, bounding_box_coordinates) VALUES (%s,%s) ON CONFLICT ... (User_Id) DO NOTHING;''' >>> cur.execute(command,(id, user_name, text, bounding_box_coordinates)) #エラー Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'user_name' is not defined
取得したtweetデータと合致していないのか、SQL作成したtableと合致していないのかわからないです。
エラーの条件を探るべく、取得する情報を変えながらtable名を合致させつつやってみましたが、選択する情報をuser_idではなくid(どちらもtweet情報にある)に変えたところ、nameエラーがuser_nameに移りました。
>>> command = '''INSERT INTO twitteruser (user_id, user_name, text, bounding_box_coordinates) VALUES (%s,%s) ON CONFLICT ... (User_Id) DO NOTHING;''' >>> cur.execute(command,(user_id,user_name,text, bounding_box_coordinates)) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'user_id' is not defined >>> command = '''INSERT INTO twitteruser (id, user_name, text, bounding_box_coordinates) VALUES (%s,%s) ON CONFLICT ... (User_Id) DO NOTHING;''' >>> cur.execute(command,(id,user_name,text, bounding_box_coordinates)) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'user_name' is not defined >>> command = '''INSERT INTO twitteruser (id, name, text, bounding_box_coordinates) VALUES (%s,%s) ON CONFLICT ... (User_Id) DO NOTHING;''' >>> cur.execute(command,(id,name,text,bounding_box_coordinates)) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'name' is not defined >>> command = '''INSERT INTO twitteruser (id, user_name, text, bounding_box_coordinates) VALUES (%s,%s) ON CONFLICT ... (User_Id) DO NOTHING;''' >>> cur.execute(command,(id, user_name, text, bounding_box_coordinates)) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'user_name' is not defined >>> cur.execute(command,(id, text, user_name, bounding_box_coordinates)) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'text' is not defined
以下が取得したいtweet情報です。
{'id': 13000,,,, 'text': '佐世保にしらせ来とったんか〜い https://t.co/775xk4UW4o', 'user': {'id': 2000,,,, 'id_str': '000', 'name': 'あ000','bounding_box': {'type': 'Polygon', 'coordinates': [[[000, 000], [34, 4], [17, 45.56000], [000, 000]]]}, 'attributes': {}}
あなたの回答
tips
プレビュー