I'm working on a site to find places that you can get to without a car (by bus, bike, walking, etc) in Python. Currently, I'm using SQLAlchemy with SQLite, because I thought an ORM would be best for this sort of data. While being able to write something like "stop_time.trip.route.route_short_name" and get that without having to do a bunch of queries is nice, the ORM is too slow to be practical, and if I'm just writing a bunch of queries there's no need for SQLAlchemy, so I'm looking for another database and/or library to use. What do you use for storing GTFS data?
--