google / transitfeed

A Python library for reading, validating, and writing transit schedule information in the GTFS format.
https://github.com/google/transitfeed/wiki
Apache License 2.0
679 stars 254 forks source link

Update simplejson to json #428

Closed barbeau closed 7 years ago

barbeau commented 7 years ago

When trying to run schedule_viewer with the default Python install 2.7.x on Windows, it fails with:

ImportError: No module named simplejson

This patch uses the standard json package instead, which runs on the default Python install without needing additional components.

aroller commented 7 years ago

this fixed the problem I was having on my mac running python 2.7. thanks @barbeau