summaryrefslogtreecommitdiff
path: root/ausbutler/model.py
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2017-01-06 03:36:49 +0100
committeremkael <emkael@tlen.pl>2017-01-06 03:36:49 +0100
commitabd09ddce26dfc8dee8b352e86c50185d548e61a (patch)
tree7e6beab92b6083278876c823940407f8e56ee55f /ausbutler/model.py
parentcbb74e0b5971fe4453477094558cdb125bee4524 (diff)
Code formatting
Diffstat (limited to 'ausbutler/model.py')
-rw-r--r--ausbutler/model.py17
1 files changed, 15 insertions, 2 deletions
diff --git a/ausbutler/model.py b/ausbutler/model.py
index 1dce4b2..69447ff 100644
--- a/ausbutler/model.py
+++ b/ausbutler/model.py
@@ -9,6 +9,7 @@ from .db import get_session
Base = declarative_base()
session = get_session()
+
class Team(Base):
__table__ = Table('teams', MetaData(bind=session.bind),
autoload=True)
@@ -16,6 +17,7 @@ class Team(Base):
def __repr__(self):
return self.shortname.encode('utf8')
+
class Player(Base):
__table__ = Table('players', MetaData(bind=session.bind),
Column('id', Integer, primary_key=True),
@@ -26,6 +28,7 @@ class Player(Base):
def __repr__(self):
return ('%s %s' % (self.gname, self.sname)).encode('utf8')
+
class AusButler(Base):
__tablename__ = 'aus_butler'
id = Column(Integer, primary_key=True)
@@ -36,7 +39,10 @@ class AusButler(Base):
opp_score = Column(Float)
corrected_score = Column(Float)
board_count = Column(Integer)
- player = relationship('Player', uselist=False, foreign_keys=[id], primaryjoin='AusButler.id == Player.id')
+ player = relationship('Player',
+ uselist=False,
+ foreign_keys=[id],
+ primaryjoin='AusButler.id == Player.id')
@cached_property
def table(self):
@@ -56,11 +62,13 @@ class AusButler(Base):
self.opp_score or 0.0,
self.corrected_score or 0.0)
+
class Butler(Base):
__table__ = Table('butler', MetaData(bind=session.bind),
Column('id', Integer, primary_key=True),
autoload=True)
+
class Score(Base):
__table__ = Table('scores', MetaData(bind=session.bind),
Column('rnd', Integer, primary_key=True),
@@ -70,6 +78,7 @@ class Score(Base):
Column('board', Integer, primary_key=True),
autoload=True)
+
class Segment(Base):
__table__ = Table('segments', MetaData(bind=session.bind),
Column('rnd', Integer, primary_key=True),
@@ -78,7 +87,7 @@ class Segment(Base):
autoload=True)
count_cache = {
- (b.rnd, b.segment, b.tabl) : {
+ (b.rnd, b.segment, b.tabl): {
'open': int(b.open), 'closed': int(b.closed)
} for b in
session.query(
@@ -92,20 +101,24 @@ class Segment(Base):
def butler_count(self):
return Segment.count_cache[(self.rnd, self.segment, self.tabl)]
+
class Translation(Base):
__table__ = Table('logoh', MetaData(bind=session.bind),
Column('id', Integer, primary_key=True),
autoload=True)
+
class Admin(Base):
__table__ = Table('admin', MetaData(bind=session.bind),
Column('shortname', String, primary_key=True),
autoload=True)
+
class Params(Base):
__table__ = Table('params', MetaData(bind=session.bind),
Column('datasource', Integer, primary_key=True),
autoload=True)
+
class Parameters(Base):
__table__ = join(Admin, Params, literal(True))