13 lines
475 B
Python
13 lines
475 B
Python
import os
|
|
|
|
# Directory containing TfL reference data (TransXChange XML files etc.)
|
|
TFL_DATA_DIR = os.path.expanduser("~/lib/data/tfl")
|
|
|
|
# Directory for caching scraped train times
|
|
CACHE_DIR = os.path.expanduser("~/lib/data/tfl/cache")
|
|
|
|
# TransXChange timetable file for the Circle Line
|
|
CIRCLE_LINE_XML = os.path.join(TFL_DATA_DIR, "output_txc_01CIR_.xml")
|
|
|
|
# Default connection window (minutes) between Paddington arrival and St Pancras departure
|
|
DEFAULT_MIN_CONNECTION = 70
|