├── .github └── workflows │ └── publish-to-pypi.yaml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── docs ├── Makefile ├── conf.py ├── gtfs2db.rst ├── gtfs_entities.rst ├── index.rst ├── internal.rst ├── loader.rst ├── make.bat └── schedule.rst ├── license.txt ├── pygtfs ├── __init__.py ├── exceptions.py ├── feed.py ├── gtfs2db.py ├── gtfs_entities.py ├── loader.py ├── schedule.py └── test │ ├── __init__.py │ ├── data │ └── sample_feed │ │ ├── agency.txt │ │ ├── calendar.txt │ │ ├── calendar_dates.txt │ │ ├── fare_attributes.txt │ │ ├── fare_rules.txt │ │ ├── feed_info.txt │ │ ├── frequencies.txt │ │ ├── routes.txt │ │ ├── shapes.txt │ │ ├── stop_times.txt │ │ ├── stops.txt │ │ ├── transfers.txt │ │ ├── translations.txt │ │ └── trips.txt │ └── test.py ├── readthedocs.yml ├── setup.cfg └── setup.py /.github/workflows/publish-to-pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/.github/workflows/publish-to-pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/gtfs2db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/docs/gtfs2db.rst -------------------------------------------------------------------------------- /docs/gtfs_entities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/docs/gtfs_entities.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/internal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/docs/internal.rst -------------------------------------------------------------------------------- /docs/loader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/docs/loader.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/schedule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/docs/schedule.rst -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/license.txt -------------------------------------------------------------------------------- /pygtfs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/__init__.py -------------------------------------------------------------------------------- /pygtfs/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/exceptions.py -------------------------------------------------------------------------------- /pygtfs/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/feed.py -------------------------------------------------------------------------------- /pygtfs/gtfs2db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/gtfs2db.py -------------------------------------------------------------------------------- /pygtfs/gtfs_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/gtfs_entities.py -------------------------------------------------------------------------------- /pygtfs/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/loader.py -------------------------------------------------------------------------------- /pygtfs/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/schedule.py -------------------------------------------------------------------------------- /pygtfs/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/agency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/agency.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/calendar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/calendar.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/calendar_dates.txt: -------------------------------------------------------------------------------- 1 | service_id,date,exception_type 2 | FULLW,20070604,2 -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/fare_attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/fare_attributes.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/fare_rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/fare_rules.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/feed_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/feed_info.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/frequencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/frequencies.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/routes.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/shapes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/shapes.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/stop_times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/stop_times.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/stops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/stops.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/transfers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/transfers.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/translations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/translations.txt -------------------------------------------------------------------------------- /pygtfs/test/data/sample_feed/trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/data/sample_feed/trips.txt -------------------------------------------------------------------------------- /pygtfs/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/pygtfs/test/test.py -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jarondl/pygtfs/HEAD/setup.py --------------------------------------------------------------------------------