How to connect mysql and python? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 2

How to connect mysql and python?

python

13th Jan 2020, 5:59 AM
Lelouch Vi Britannia
Lelouch Vi Britannia - avatar
2 Réponses
+ 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