I need a way to connect my databases in WAMP
server MySQL 5.7
to Python 3.8
.
I use MySQL 8.0
in my computer. I am facing the issue in another system where there is no MySQL but only WAMP
server MySQL 5.7
Which Module should I be using?
I tried installing mysql.connector
module in the other system but learnt later on that it supports MySQL 8.0
downloaded from
www.mysql.org only.
Which module should be installed for a satisfactory connection with WAMP
server MySQL
and Python 3.8
?
My code works perfectly without any issues in my computer with the normal MySQL 8.0
.
I have figured out a solution for Python 2
which is by using the module MySQLdb
. But it does not support Python 3
.
I wish to know if there are other modules than these
I am sorry for being hasty, but I wish to receive an answer at the earliest. My project depends on it. Thank You in advance.