-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsertDB.py
37 lines (28 loc) · 1.06 KB
/
insertDB.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from sqlalchemy import Column, String, Integer, Float, Date
from sqlalchemy.ext.declarative import declarative_base
import pymysql
import pandas as pd
from sqlalchemy import create_engine
# 테스트 환경에 맞게 밑에 설정을 바꿔주세요
# 아이디:비밀번호@호스트명:포트/DB명
engine = create_engine(
"mysql+pymysql://root:localhost:3306/my_database", encoding='utf-8-sig')
Base = declarative_base()
# ORM Class
class salesOrdersRaw(Base):
__tablename__ = 'sales_order'
__table_args__ = {'extend_existing': True}
id = Column(Integer, primary_key=True)
OrderDate = Column(Date())
Region = Column(String(20))
Rep = Column(String(20))
Item = Column(String(10))
Units = Column(Integer())
UnitCost = Column('Unit Cost', Float())
Total = Column(Float())
# DB에 메타데이터 생성
metadata = Base.metadata
metadata.create_all(engine)
# DB에 데이터 넣기
df = pd.read_excel('SampleData.xlsx', sheet_name='SalesOrders', header=0)
df.to_sql(name='sales_order', con=engine, if_exists='append', index=False)