pymysql 사용법, 간편한 축약 코드 예시!
2020. 11. 13.
pymysql 을 쓰려면, sql 한줄 던지는데도 conn(host="주소", user="이름", pw="비번", db="디비이름") 만들고, cursor만들고, execute하고, fetchall 하거나 commit 하고, conn 과 cursor 따로따로 close 하는 등 너무너무 복잡하다. 그래서 간편하게 사용할 수 있는 코드를 만들어봤당 #db.py import pymysql def errorprint(e): print(e.args[0] + " : " + e.args[1]) class newDB: def __init__(self, host="0.0.0.0", user="root", passwd="1234asdf", db="test_db"): try: self.db = pymysql.connect..