gtfsrt_concepcion/fetch.py

9 lines
169 B
Python
Raw Normal View History

2023-09-16 12:07:33 -03:00
# coding: utf-8
from fetcher.main import sched
from fetcher.model.feed import init_db, db, engine
if __name__ == '__main__':
init_db(db, engine)
sched.start()