除了运行py文件外,不能在python-eve中包含模型

时间:2017-02-27 02:00:05

标签: python rest curl sqlalchemy eve

我已经为我的模型使用SQLAlchemy编写了一个python-eve应用程序。 当我在run.py文件中定义Models时,它工作得很好。 当我在另一个文件中定义我的表并在run.py中导入它时,服务器就会运行,但是当我尝试通过curl向其中一个资源发送请求时,我收到错误。

我的卷曲请求:

curl -i 127.0.0.1:5000/people

我得到以下错误:

o = self.data[key]()

KeyError: '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])

1 个答案:

答案 0 :(得分:1)

问题是使用了两个不同的Base类。删除run.py内的Base类,并将基类从tables.py导入run.py

#run.py
from tables import Base, People   #import Base
Base = declarative_base()         #remove this line

如果使用新的Base类,则不会创建表,因为这个新的Base类没有派生自的模型类。元数据保持表附加表。