2025-03-18 08:46:50 +08:00

4 lines
168 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#Django连接MySQL时默认使用MySQLdb驱动但MySQLdb不支持Python3因此这里将MySQL驱动设置为pymysql
import pymysql
pymysql.install_as_MySQLdb()