broke out assets.py into an assets and sensors directory
This commit is contained in:
parent
0d7de37303
commit
37f23fda18
8 changed files with 782 additions and 707 deletions
23
user_code/assets/__init__.py
Normal file
23
user_code/assets/__init__.py
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
"""
|
||||
GTFS data pipeline assets.
|
||||
"""
|
||||
from .config import *
|
||||
from .gtfs_static import *
|
||||
from .gtfs_realtime import *
|
||||
|
||||
__all__ = [
|
||||
# config assets
|
||||
"agency_list",
|
||||
|
||||
# GTFS assets
|
||||
"gtfs_feed_metadata",
|
||||
"gtfs_feed_partitions",
|
||||
"gtfs_feeds_partitions_def",
|
||||
"gtfs_feed_downloads",
|
||||
|
||||
# GTFS-RT assets
|
||||
"gtfs_rt_vehicles_metadata",
|
||||
"gtfs_rt_vehicles_partitions",
|
||||
"gtfs_rt_vehicles_partitions_def",
|
||||
"gtfs_rt_vehicles_downloads",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue