有一个名为 Pymysql 的模块,您可能会喜欢:
"""This pure Python MySQL client provides a DB-API to a MySQL database by talking directly to the server via the binary client/server protocol."""
import pymysql
conn = pymysql.connect(host='127.0.0.1', unix_socket='/tmp/mysql.sock', user='root', passwd=None, db='mysql')
cur = conn.cursor()
cur.execute("SELECT Host,User FROM user")
for response in cur:
print(response)
cur.close()
conn.close()
据我所知,没有人将
mysql
的 C 扩展模块移植到 Python 3,但至少有两个纯 Python 模块可以与 Python 3(以及 PyPy 等)一起正常工作:
快速谷歌搜索python3 mysql会发现更多(以及指向这两个项目的各种指针,包括之前提出完全相同问题的SO问题)。