Dup Goto 📝

PythonMysql

PT2/aw/db/mysql 07-31 13:46:43
To Pop
17 lines, 31 words, 338 chars Monday 2023-07-31 13:46:43

See this page on W3schools. Summary: to install

python -m pip install mysql-connector-python

and then to use

import mysql.connector

mydb = mysql.connector.connect(
  host="localhost",
  user="yourusername",
  password="yourpassword"
)

print(mydb)