Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PyBusMap
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
PyBusMap
Commits
cf059474
Commit
cf059474
authored
9 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
Subclass db.Model instead of using a mixin. Way cleaner.
parent
d4edf3a0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
models.py
+12
-11
12 additions, 11 deletions
models.py
with
12 additions
and
11 deletions
models.py
+
12
−
11
View file @
cf059474
...
...
@@ -16,8 +16,9 @@ from sqlalchemy.sql.expression import ClauseElement
db
=
SQLAlchemy
(
session_options
=
{
'
autocommit
'
:
True
})
class
BMModel
():
"""
Our own Model add-on class for adding utility functions to db.Model.
"""
class
Model
(
db
.
Model
):
"""
Extend SQLAlchemy
'
s Model class with a few handy methods.
"""
__abstract__
=
True
@classmethod
def
get_one
(
self
,
session
,
**
kwargs
):
return
session
.
query
(
self
).
filter_by
(
**
kwargs
).
first
()
...
...
@@ -50,7 +51,7 @@ class BMModel():
return
new
class
Agency
(
db
.
Model
,
BM
Model
):
class
Agency
(
Model
):
"""
A transportation agency
"""
__tablename__
=
"
agency
"
id
=
db
.
Column
(
db
.
Integer
,
primary_key
=
True
)
...
...
@@ -80,7 +81,7 @@ class Agency(db.Model, BMModel):
}
class
ApiCall
(
db
.
Model
,
BM
Model
):
class
ApiCall
(
Model
):
"""
A retrieval of data from a data source.
"""
__tablename__
=
"
api_call
"
id
=
db
.
Column
(
db
.
Integer
,
primary_key
=
True
)
...
...
@@ -107,7 +108,7 @@ class ApiCall(db.Model, BMModel):
params
=
db
.
Column
(
postgresql
.
JSON
)
class
Direction
(
db
.
Model
,
BM
Model
):
class
Direction
(
Model
):
"""
A direction of a route.
"
Eastbound
"
/
"
Westbound
"
,
"
Inbound
"
/
"
Outbound
"
.
"""
__tablename__
=
"
direction
"
__table_args__
=
(
...
...
@@ -138,7 +139,7 @@ class Direction(db.Model, BMModel):
}
class
Prediction
(
db
.
Model
,
BM
Model
):
class
Prediction
(
Model
):
"""
A vehicle arrival prediction
"""
__tablename__
=
"
prediction
"
id
=
db
.
Column
(
db
.
Integer
,
primary_key
=
True
)
...
...
@@ -190,7 +191,7 @@ class Prediction(db.Model, BMModel):
}
class
Region
(
db
.
Model
,
BM
Model
):
class
Region
(
Model
):
"""
A geographic region
"""
__tablename__
=
"
region
"
id
=
db
.
Column
(
db
.
Integer
,
primary_key
=
True
)
...
...
@@ -203,7 +204,7 @@ class Region(db.Model, BMModel):
api_call
=
db
.
relationship
(
"
ApiCall
"
,
backref
=
"
regions
"
)
class
Route
(
db
.
Model
,
BM
Model
):
class
Route
(
Model
):
"""
A transit line: bus route, train line, etc.
"""
__tablename__
=
"
route
"
__table_args__
=
(
...
...
@@ -278,7 +279,7 @@ class Route(db.Model, BMModel):
'
stops
'
:
list
(
self
.
stops
.
keys
()),
}
class
RouteStop
(
db
.
Model
,
BM
Model
):
class
RouteStop
(
Model
):
"""
Association Object for Stop.routes / Route.stops. A simple many-to-many association
table would not suffice, because we also need to track which Stop Tag is used by this
Route-Stop combo. A single Stop can have multiple Stop Tags, because Nextbus.
"""
...
...
@@ -299,7 +300,7 @@ class RouteStop(db.Model, BMModel):
class
Stop
(
db
.
Model
,
BM
Model
):
class
Stop
(
Model
):
"""
A stop or station. Vehicles stop here and pick up or drop off passengers.
Sometimes the driver gets out to poop.
Stops are uniquely uniquely identifiable by (lat,lon)
"""
...
...
@@ -397,7 +398,7 @@ class Stop(db.Model, BMModel):
'
routes
'
:
list
(
self
.
routes
.
keys
()),
}
class
VehicleLocation
(
db
.
Model
,
BM
Model
):
class
VehicleLocation
(
Model
):
"""
A vehicle geolocation for a specific time.
"""
__tablename__
=
"
vehicle_location
"
id
=
db
.
Column
(
db
.
Integer
,
primary_key
=
True
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment