You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
319 B

#! /usr/bin/env python3
from .scrape_train import scrape as scrape_train
from .scrape_station import scrape as scrape_station
def main():
train_no = 1538
print(f'Testing package with train number {train_no}')
from pprint import pprint
pprint(scrape_train(train_no))
if __name__ == '__main__':
main()