created scoring tables and basic logic
This commit is contained in:
@@ -2,14 +2,28 @@
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from pipelines.orm.data_science_dev.congress import Bill, BillText, Legislator, Vote, VoteRecord
|
||||
from pipelines.orm.data_science_dev.congress import (
|
||||
Bill,
|
||||
BillText,
|
||||
BillTopic,
|
||||
BillTopicPosition,
|
||||
Legislator,
|
||||
LegislatorBillScore,
|
||||
LegislatorScore,
|
||||
Vote,
|
||||
VoteRecord,
|
||||
)
|
||||
from pipelines.orm.data_science_dev.posts import partitions # noqa: F401 — registers partition classes in metadata
|
||||
from pipelines.orm.data_science_dev.posts.tables import Posts
|
||||
|
||||
__all__ = [
|
||||
"Bill",
|
||||
"BillText",
|
||||
"BillTopic",
|
||||
"BillTopicPosition",
|
||||
"Legislator",
|
||||
"LegislatorBillScore",
|
||||
"LegislatorScore",
|
||||
"Posts",
|
||||
"Vote",
|
||||
"VoteRecord",
|
||||
|
||||
Reference in New Issue
Block a user