gtfs_export and gtfs_generator
This commit is contained in:
parent
f748f1b738
commit
cfb0593742
0
amarillo/app/__init__.py
Normal file
0
amarillo/app/__init__.py
Normal file
0
amarillo/app/services/__init__.py
Normal file
0
amarillo/app/services/__init__.py
Normal file
|
|
@ -7,10 +7,10 @@ import gettext
|
|||
import logging
|
||||
import re
|
||||
|
||||
from app.utils.utils import assert_folder_exists
|
||||
from app.models.gtfs import GtfsTimeDelta, GtfsFeedInfo, GtfsAgency, GtfsRoute, GtfsStop, GtfsStopTime, GtfsTrip, GtfsCalendar, GtfsCalendarDate, GtfsShape
|
||||
from app.services.stops import is_carpooling_stop
|
||||
from app.services.gtfs_constants import *
|
||||
from amarillo.app.utils.utils import assert_folder_exists
|
||||
from amarillo.app.models.gtfs import GtfsTimeDelta, GtfsFeedInfo, GtfsAgency, GtfsRoute, GtfsStop, GtfsStopTime, GtfsTrip, GtfsCalendar, GtfsCalendarDate, GtfsShape
|
||||
from amarillo.app.services.stops import is_carpooling_stop
|
||||
from amarillo.app.services.gtfs_constants import *
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
from app.models.Carpool import Region
|
||||
from app.services.gtfs_export import GtfsExport, GtfsFeedInfo, GtfsAgency
|
||||
from app.services.gtfs import GtfsRtProducer
|
||||
from app.utils.container import container
|
||||
from amarillo.app.models.Carpool import Region
|
||||
from amarillo.app.services.gtfs_export import GtfsExport, GtfsFeedInfo, GtfsAgency
|
||||
from amarillo.app.services.gtfs import GtfsRtProducer
|
||||
from amarillo.app.utils.container import container
|
||||
from glob import glob
|
||||
import json
|
||||
import schedule
|
||||
|
|
|
|||
Loading…
Reference in a new issue