尝试在column_property中使用float()

发布于 2024-12-09 03:57:19 字数 602 浏览 0 评论 0原文

我试图在使用 column_property 分配列时将列转换为浮点数:

class voteinfo(Base):
    __tablename__ = 'voteinfo'
    id = Column(Integer, primary_key=True)
    upvotes = Column(Integer)
    downvotes = Column(Integer)
    controversial = column_property(float(upvotes - downvotes)/(abs(upvotes + downvotes)+1)

    def __init__(self, upvotes, downvotes):
        self.upvotes = upvotes
        self.downvotes = downvotes

但是,当我运行此命令时,出现以下错误:

TypeError: float() argument must be a string or a number

有更好的方法来执行此操作吗?我使用 column_property 是因为我希望能够按有争议的进行排序。

I'm trying to convert a column into a float while assigning a column using column_property:

class voteinfo(Base):
    __tablename__ = 'voteinfo'
    id = Column(Integer, primary_key=True)
    upvotes = Column(Integer)
    downvotes = Column(Integer)
    controversial = column_property(float(upvotes - downvotes)/(abs(upvotes + downvotes)+1)

    def __init__(self, upvotes, downvotes):
        self.upvotes = upvotes
        self.downvotes = downvotes

However, when I run this, I get the following error:

TypeError: float() argument must be a string or a number

Is there a better way to do this? I'm using column_property because I want to be able to sort by controversial.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请止步禁区 2024-12-16 03:57:19

sqlalchemy 文档 中,最好的方法是这样做的目的是定义一个 python @property。您还需要使用内置的 sqlalchemy float 类型。

from sqlalchemy.types import Float

class voteinfo(Base):
    __tablename__ = 'voteinfo'
    id = Column(Integer, primary_key=True)
    upvotes = Column(Integer)
    downvotes = Column(Integer)

    @property
    def controversial(self):
        return Float(self.upvotes - self.downvotes)/Float(abs(self.upvotes + self.downvotes)+1)


    def __init__(self, upvotes, downvotes):
        self.upvotes = upvotes
        self.downvotes = downvotes

From the sqlalchemy docs, the best way to do this is to define a python @property. You also need to use the built-in sqlalchemy float type.

from sqlalchemy.types import Float

class voteinfo(Base):
    __tablename__ = 'voteinfo'
    id = Column(Integer, primary_key=True)
    upvotes = Column(Integer)
    downvotes = Column(Integer)

    @property
    def controversial(self):
        return Float(self.upvotes - self.downvotes)/Float(abs(self.upvotes + self.downvotes)+1)


    def __init__(self, upvotes, downvotes):
        self.upvotes = upvotes
        self.downvotes = downvotes
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文