Django 활용하여 DB (MySQL)연동 및 데이터 넣기
- pymysql을 활용해 mysql 연동하기 - pymysql 설치 pip install pymysql - 로컬 DB에 연결 import pymysql db = pymysql.connect( host="127.0.0.1", user="root", password="skrxk362636!@", database="test_db3", charset='utf8' ) cursor = db.cursor() - Table 생성 (이 단계 전에 Mysql workbench에서 스키마를 생성해주어야 함) cursor.execute("CREATE TABLE newsTable (id int primary key not null auto_increment, Topic varchar(100), Period char(100),..