13
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SQLAlchemy を使って Pandas のデータをDBに保存する

Last updated at Posted at 2017-10-28

概要

Python の O/R マッパー SQLAlchemy に関するメモ。

前提

$ pip install SQLAlchemy
$ pip install PyMySQL

コード

pandas.DataFrame.to_sqlを使用する。

import pandas as pd
import sqlalchemy as sa

df = pd.DataFrame({'point': [100]})
print(df)
url = 'mysql+pymysql://root:@localhost/test_db?charset=utf8'
engine = sa.create_engine(url, echo=True)

df.to_sql('test1', engine, index=False, if_exists='append')

これで MySQL の test_db データベース上で test1 テーブルの point カラムに 100 という数値が挿入される。if_exists を指定しないと、データベース上でテーブルを新規作成するように試み、すでにテーブルが存在するときには失敗する。

INSERT ではなく UPDATE はできるのだろうか?引き続き調べてみたい。

13
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?