如何使用 flask 连接到 pythonanywhere 中的数据库

how to use flask to connect to a database in pythonanywhere

我已经在 pythonanywhere 的数据库选项卡中创建了一个数据库 现在我正在尝试连接到它,以便从中获取我的表格和信息。

连接到它的最佳方式是什么以及如何!?(sqlite3,SQLAlchemy)

我用过

import import MySQLdb
db = MySQLdb.connect(host="mysql.server",
                 user="username",
                  passwd="password",
                  db="db-name")

它给了我

return Connection(*args, **kwargs)
super(Connection, self).__init__(*args, **kwargs2)
mysql_exceptions.OperationalError: (2005, "Unknown MySQL server host 'mysql.server' (0)")

在 python任意位置创建数据库后。

如何与python关联?

这是 python 您要连接到数据库的代码..

Import MySQLdb as my

db = my.connect ('database-server-name','username-of -db','password-of-db','database-name')
cursor = db.cursor ()

现在您的数据库已连接到您的服务器和python代码

希望一切顺利!!! 您将从数据库选项卡中获取创建数据库后创建的数据库服务器名称、用户名和密码,以及您的数据库名称!