不能在 python-eve 中包含模型,运行 py 文件除外
Can't include models in python-eve except in run py file
我已经使用 SQLAlchemy 为我的模型编写了一个 python-eve 应用程序。
当我在我的 run.py 文件中定义模型时,它工作得很好。
当我在另一个文件中定义我的表并将它们导入 run.py 时,服务器运行,但是当我尝试通过 curl 向其中一个资源发送请求时,我收到一个错误。
我的 curl 请求:
curl -i 127.0.0.1:5000/people
我收到以下错误:
o = self.data[key]()
KeyError: 'People'
好吧,我以前就知道这个错误!它出现在夏娃试图找到不存在的东西时。夏娃没有找到模范人物。不知道为什么找不到People模型
我不想把我所有的模型都放在里面 run.py。我想将我的表格分隔在另一个文件中。
但是,如果我在 run.py 中实现模型,它会完美运行,我可以发出 GET、POST、PATCH、DELETE 请求。
出于某种原因,模型必须在 run.py 中定义,并且还必须在应用程序初始化之前定义。
这是我的代码:
run.py
from sqlalchemy.ext.declarative import declarative_base
from eve import Eve
from eve_sqlalchemy import SQL
from eve_sqlalchemy.validation import ValidatorSQL
from tables import People
Base = declarative_base()
app = Eve(validator=ValidatorSQL, data=SQL)
# bind SQLAlchemy
db = app.data.driver
Base.metadata.bind = db.engine
db.Model = Base
db.create_all()
if __name__ == '__main__':
app.run(debug=True, use_reloader=False)
settings.py
from eve_sqlalchemy.decorators import registerSchema
from eve.utils import config
from tables import People
registerSchema('people')(People)
DOMAIN = {
'people': People._eve_schema['people'],
}
RESOURCE_METHODS = ['GET', 'POST']
SQLALCHEMY_DATABASE_URI = 'postgresql://USER:PASSWORD@localhost:5432/SOMEDB'
ITEM_METHODS = ['GET', 'DELETE', 'PATCH', 'PUT']
DEBUG = True
ID_FIELD = 'id'
config.ID_FIELD = ID_FIELD
tables.py
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import column_property
from sqlalchemy import Column, Integer, String, DateTime, func
Base = declarative_base()
class CommonColumns(Base):
__abstract__ = True
_created = Column(DateTime, default=func.now())
_updated = Column(DateTime, default=func.now(), onupdate=func.now())
_etag = Column(String(40))
class People(CommonColumns):
__tablename__ = 'people'
_id = Column(Integer, primary_key=True, autoincrement=True)
firstname = Column(String(80))
lastname = Column(String(120))
fullname = column_property(firstname + " " + lastname)
@classmethod
def from_tuple(cls, data):
"""Helper method to populate the db"""
return cls(firstname=data[0], lastname=data[1])
问题是两个不同的用法 Base
class。删除 run.py
中的 Base class 并将 Base class 从 tables.py
导入到 run.py
#run.py
from tables import Base, People #import Base
Base = declarative_base() #remove this line
如果您使用新的 Base class,则不会创建您的表,因为这个新的 Base class 没有派生模型 class。元数据使表格与之相连。
我已经使用 SQLAlchemy 为我的模型编写了一个 python-eve 应用程序。 当我在我的 run.py 文件中定义模型时,它工作得很好。 当我在另一个文件中定义我的表并将它们导入 run.py 时,服务器运行,但是当我尝试通过 curl 向其中一个资源发送请求时,我收到一个错误。
我的 curl 请求:
curl -i 127.0.0.1:5000/people
我收到以下错误:
o = self.data[key]()
KeyError: 'People'
好吧,我以前就知道这个错误!它出现在夏娃试图找到不存在的东西时。夏娃没有找到模范人物。不知道为什么找不到People模型
我不想把我所有的模型都放在里面 run.py。我想将我的表格分隔在另一个文件中。
但是,如果我在 run.py 中实现模型,它会完美运行,我可以发出 GET、POST、PATCH、DELETE 请求。
出于某种原因,模型必须在 run.py 中定义,并且还必须在应用程序初始化之前定义。
这是我的代码:
run.py
from sqlalchemy.ext.declarative import declarative_base
from eve import Eve
from eve_sqlalchemy import SQL
from eve_sqlalchemy.validation import ValidatorSQL
from tables import People
Base = declarative_base()
app = Eve(validator=ValidatorSQL, data=SQL)
# bind SQLAlchemy
db = app.data.driver
Base.metadata.bind = db.engine
db.Model = Base
db.create_all()
if __name__ == '__main__':
app.run(debug=True, use_reloader=False)
settings.py
from eve_sqlalchemy.decorators import registerSchema
from eve.utils import config
from tables import People
registerSchema('people')(People)
DOMAIN = {
'people': People._eve_schema['people'],
}
RESOURCE_METHODS = ['GET', 'POST']
SQLALCHEMY_DATABASE_URI = 'postgresql://USER:PASSWORD@localhost:5432/SOMEDB'
ITEM_METHODS = ['GET', 'DELETE', 'PATCH', 'PUT']
DEBUG = True
ID_FIELD = 'id'
config.ID_FIELD = ID_FIELD
tables.py
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import column_property
from sqlalchemy import Column, Integer, String, DateTime, func
Base = declarative_base()
class CommonColumns(Base):
__abstract__ = True
_created = Column(DateTime, default=func.now())
_updated = Column(DateTime, default=func.now(), onupdate=func.now())
_etag = Column(String(40))
class People(CommonColumns):
__tablename__ = 'people'
_id = Column(Integer, primary_key=True, autoincrement=True)
firstname = Column(String(80))
lastname = Column(String(120))
fullname = column_property(firstname + " " + lastname)
@classmethod
def from_tuple(cls, data):
"""Helper method to populate the db"""
return cls(firstname=data[0], lastname=data[1])
问题是两个不同的用法 Base
class。删除 run.py
中的 Base class 并将 Base class 从 tables.py
导入到 run.py
#run.py
from tables import Base, People #import Base
Base = declarative_base() #remove this line
如果您使用新的 Base class,则不会创建您的表,因为这个新的 Base class 没有派生模型 class。元数据使表格与之相连。