pygtfs
pygtfs copied to clipboard
A python (2/3) library for GTFS
Reverts jarondl/pygtfs#48
I've added a module to export the data back out to csv. It's not quite complete but I think I'll need some help with the final piece. I've got it...
Sorry if I missed this (and I didn't find a mailing list). Looping through entities is very convenient, but I'd like to specify queries for performance. Trying to make a...
trying to import a GTFS file to mysql using the following and getting a ton of VARCHAR length unspecified errors from sqlalchemy. what am i doing wrong? ``` import pygtfs...
I have a GTFS files with a bunch of different agencies, but I'm only interested in the data for one of them. it'd be very useful for me if there...
It would be nice to have the capability to optionally specify a schema to store the data in for databases that support schemas.
Hi, In the code of loader.py we have ``` gtfs_tables = {} for gtfs_class in gtfs_all: ... gtfs_tables[gtfs_class] = fd.read_table(gtfs_filename, set(c.name for c in gtfs_class.__table__.columns) - {'feed_id'}) ``` then a...
Use case: datasources update with a certain frequency, from what I have seen this is anywhere between weekly and annually. Esp. for the high frequent updates there are cases that...