TwitterAPIから位置情報を指定してtweetを収集、SQLに保存するする為に以下のスクリプトを書き、実行したところ成功しました。
from twitter import * import psycopg2 def dbConnect(user_id,text,position): #SQLとの接続 users = "000" dbnames = "000" passwords = "000" conn = psycopg2.connect("host=000 dbname=000 user=000 password=000 port=000") cur = conn.cursor() print(user_id) command = "INSERT INTO twitter01 (id, text, geo) VALUES('%s', '%s' ,'%s');" % (user_id, text, position) cur.execute(command) conn.commit() if __name__ == "__main__": auth = OAuth( consumer_key = '000', consumer_secret = '000', token = '000', token_secret = '000' ) params = dict() params["locations"] = "000.00,00.00,000.00,00.00" twitter_stream = TwitterStream(auth=auth,domain='stream.twitter.com') for msg in twitter_stream.statuses.filter(**params): user_id = msg["user"]["screen_name"] text = msg["text"] position_data = msg["place"]["bounding_box"]["coordinates"] print("ID : " + user_id) print(text) print(position_data) dbConnect(user_id, text, position_data)
これに加えてワードを指定して収集したいと考えているのですが、参考にしているサイトはtweepyをインポートして実行しているものが多く、
サイトに載っているコードのどの辺りをどのあたりに差し込めば良いのかわからないです。わかる方がいれば教えて頂きたいです。
参考にしているサイトとスクリプトその①
リンク内容
参考にしているサイトとスクリプトその➁
リンク内容
参考にしているサイトとスクリプトその③
リンク内容
あなたの回答
tips
プレビュー