动态数据库连接Flask

我需要连接两个数据库。 默认数据库是固定的,但另一个是动态的,它基于URL。

例如,如果url是:yourapp.myweb.com,那么第二个数据库名称将是yourapp

我尝试将数据库连接到init .py,但它显示我以下错误

builtins.AssertionError
AssertionError: A setup function was called after the first request was handled.  This usually indicates a bug in the application where a module was not imported and decorators or other functionality was called too late.
To fix this make sure to import all your view modules, database models and everything related at a central place before the application starts serving requests.

这里是我的init .py

from flask import Flask,session
from flask_sqlalchemy import SQLAlchemy
import os
app = Flask(__name__,static_url_path='/static')

#  Database Connection
database = request.url.split("/")[2].split(".")[0]
app.config['SQLALCHEMY_DATABASE_URI'] = "mysql+pymysql://root:root@localhost/main_database"
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = True
app.config['SQLALCHEMY_BINDS'] = {
    'user_db': 'mysql+pymysql://root:root@localhost/database_'+str(database), #dynamic Connection
}
db = SQLAlchemy(app)
db.create_all()
db.create_all(bind=['user_db'])
# db.init_app(app)

from . import views

这里是viwe.py

@app.route('/login', methods = ['GET'])
def index():
    try:
        from .model import Users
        # Some Code
    except Exception as e:
        raise e
        # return "Failed to login ! Please try again."

这里是model.py

from application import db
class Users(db.Model):
    __bind_key__ = 'user_db'
    __tablename__ = 'users'
    id = db.Column(db.Integer, primary_key = True)
    email = db.Column(db.String(50))
    name = db.Column(db.String(50))
    password = db.Column(db.String())

    def __repr__(self):
        return '<User %r>' % self.name

正如我在我的一个评论中所说的,这可能是数据库连接的问题。 这是我要检查的内容:

  • 首先,确保您的虚拟环境中安装了正确的引擎(您可以通过运行pip list轻松进行检查;以防万一,请坚持要将库安装在虚拟环境中)。 确保你没有pymysql ,但是到Python3的端口叫做mysqlclient。 pymysql仅适用于Python2。 为了安装这个库,你需要首先安装Python和MySQL开发头文件。 例如,在Debian / Ubuntu中:

    sudo apt-get install python-dev libmysqlclient-dev
    

    然后您可以使用以下命令安装该库:

    pip install mysqlclient
    
  • 如果已安装,请确保您可以使用该库实际连接到数据库。 在虚拟环境中打开Python shell并键入以下内容(来自github中的示例):

    import pymysql.cursors
    
    connection = pymysql.connect(host='<you_host>',
                                 user='<user>',
                                 password='<password>',
                                 db='<database_name>',
                                 charset='utf8mb4',
                                 cursorclass=pymysql.cursors.DictCursor)
    
    try:
        with connection.cursor() as cursor:
            do_something()
    except:
        pass
    
  • 如果工作正常,请确保您运行的是最新版本的Flask(目前0.12;这也可以通过运行pip list来检查),因为在DEBUG模式下运行Flask时有几个错误已经修复时间。

  • 这里肯定不是这种情况,但另一个完整性检查是验证您想要用于Flask的端口上没有其他进程正在运行。

  • 如果上述所有工作都正常,我需要查看一下堆栈跟踪来确定实际发生的情况。

    链接地址: http://www.djcxy.com/p/39723.html

    上一篇: Dynamic database connection Flask

    下一篇: TableViewCell doesn't reload as expected