23 lines
463 B
Python
23 lines
463 B
Python
"""
|
|
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",
|
|
]
|