How to connect mysql and python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

How to connect mysql and python?

python

13th Jan 2020, 5:59 AM
Lelouch Vi Britannia
Lelouch Vi Britannia - avatar
2 Answers
+ 2
thanks dear
15th Jan 2020, 4:19 PM
Lelouch Vi Britannia
Lelouch Vi Britannia - avatar
+ 1
pip install PyMySQL import pymysql from pymysql.cursors import DictCursor connection = pymysql.connect( host='localhost', user='user', password='password', db='iata', charset='utf8mb4', cursorclass=DictCursor ) ... connection.close()
14th Jan 2020, 5:02 PM
Roman Ignatev
Roman Ignatev - avatar