├── .circleci └── config.yml ├── .flake8 ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.txt ├── README.rst ├── devenv-requirements.txt ├── nredarwin ├── __init__.py ├── cli.py └── webservice.py ├── setup.py └── tests ├── __init__.py ├── test_fastest_departures.py ├── test_next_departures.py ├── test_webservice.py └── testdata ├── departure-board.xml ├── fastest-departures-with-details.xml ├── fastest-departures.xml ├── next-departures-with-details.xml ├── next-departures.xml ├── service-details-splits-after.xml └── service-details.xml /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/README.rst -------------------------------------------------------------------------------- /devenv-requirements.txt: -------------------------------------------------------------------------------- 1 | flake8==4.0.1 2 | coverage==5.0.3 3 | . 4 | -------------------------------------------------------------------------------- /nredarwin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nredarwin/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/nredarwin/cli.py -------------------------------------------------------------------------------- /nredarwin/webservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/nredarwin/webservice.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_fastest_departures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/test_fastest_departures.py -------------------------------------------------------------------------------- /tests/test_next_departures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/test_next_departures.py -------------------------------------------------------------------------------- /tests/test_webservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/test_webservice.py -------------------------------------------------------------------------------- /tests/testdata/departure-board.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/testdata/departure-board.xml -------------------------------------------------------------------------------- /tests/testdata/fastest-departures-with-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/testdata/fastest-departures-with-details.xml -------------------------------------------------------------------------------- /tests/testdata/fastest-departures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/testdata/fastest-departures.xml -------------------------------------------------------------------------------- /tests/testdata/next-departures-with-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/testdata/next-departures-with-details.xml -------------------------------------------------------------------------------- /tests/testdata/next-departures.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/testdata/next-departures.xml -------------------------------------------------------------------------------- /tests/testdata/service-details-splits-after.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/testdata/service-details-splits-after.xml -------------------------------------------------------------------------------- /tests/testdata/service-details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robert-b-clarke/nre-darwin-py/HEAD/tests/testdata/service-details.xml --------------------------------------------------------------------------------