#!/usr/bin/env python #coding: utf-8 from sqlalchemy import Column, Integer, String, Boolean, Enum from models import Base class Feed(Base): __tablename__ = 'feed' id = Column(Integer, primary_key=True) url = Column(String(255)) frequency = Column(Integer) daily = Column(Boolean) resolveredirects = Column(Boolean) readability = Column(Boolean) fullpage = Column(Boolean) contentcolumn = Column(Enum('summary', 'content', 'fullpage', 'readability')) html2textcontent = Column(Boolean) html2textignoreimages = Column(Boolean) enabled = Column(Boolean) def __init__(self, url, daily, readability, fullpage, enabled, html2textcontent): self.url = url self.daily = daily self.readability = readability self.fullpage = fullpage self.html2textcontent = html2textcontent self.enabled = enabled def __repr__(self): return "" % (self.url, self.daily, self.readability)