Releases: remix/partridge
Releases · remix/partridge
v0.6.0
- Published package no longer includes unnecessary fixtures to reduce the size.
- Naively write a feed object to a zip file with
ptg.write_feed_dangerously
. - Read the earliest, busiest date and its
service_id
s from a feed withptg.read_busiest_date
. - Bug fix: Handle calendar.txt/calendar_dates.txt entries w/o applicable trips.
v0.6.0.dev1
- Add support for reading files from a folder. Thanks again @danielsclint!
v0.5.0
- Easily build a representative view of a zip with
ptg.get_representative_feed
. Inspired by peartree. - Extract out GTFS zips by agency_id/route_id with
ptg.extract_{agencies,routes}
. - Read arbitrary files from a zip with
feed.get('myfile.txt')
. - Remove
service_ids_by_date
,dates_by_service_ids
, andtrip_counts_by_date
from the feed class. Instead useptg.{read_service_ids_by_date,read_dates_by_service_ids,read_trip_counts_by_date}
.
v0.4.0
- Added Python 2.7 support. Thanks, @danielsclint!
- Preserve given column names when all rows are filtered out.
v0.3.0
Fix service date resolution for raw_feed. Previously raw_feed considered all days of the week from calendar.txt to be active regardless of 0/1 value.
v0.2.0
Add a missing edge from fare_rules.txt to routes.txt in the default dependency graph.
Initial release
v0.1.0 Fix make clean