Skip to main content

A simple python wrapper around National Rail Enquires LDBS SOAP Webservice

Project description

https://circleci.com/gh/robert-b-clarke/nre-darwin-py.svg?style=svg Downloads

Introduction

nre-darwin-py provides an abstraction layer for accessing National Rail Enquiries Darwin service via their LDB SOAP web service. This service provides live departure board information for all United Kingdom train stations.

This module has the following goals:

  • Allow developers to avoid the complexity of SOAP and the decisions involved in choosing a Python SOAP client

  • Provide a more pythonic interface to station board and service details information

  • Make useful documentation available through pydoc or through the help command in the python shell

  • Facilitate the easy creation of departure board websites and webservices

Getting started

You will need to register for Darwin access, you can do this via National Rail Enquiries developer site.

Then install nre-darwin-py:

pip install nre-darwin-py

Basic usage

Initiate a session:

>>> from nredarwin.webservice import DarwinLdbSession
>>> darwin_sesh = DarwinLdbSession(wsdl="https://lite.realtime.nationalrail.co.uk/OpenLDBWS/wsdl.aspx", api_key="YOUR_KEY")

Retrieve the departure board for Manchester Piccadilly station:

>>> board = darwin_sesh.get_station_board('MAN')
>>> board.location_name
'Manchester Piccadilly'
>> board.train_services[0].destination_text
'Rose Hill Marple'

Retrieve more detailed information regarding a particular service:

>>> service_id = board.train_services[0].service_id
>>> service = darwin_sesh.get_service_details(service_id)
>>> [cp.location_name for cp in service.subsequent_calling_points]
[Gorton, Fairfield, Guide Bridge, Hyde Central, Woodley, Romiley, Rose Hill Marple]

Command Line Usage

A simple command line tool is provided as a reference implementation:

pip install nre-darwin-py
national-rail --help
To use you will need to export your Darwin API KEY as an environment variable::

export DARWIN_WEBSERVICE_API_KEY=YOURKEY

To view a departure board invoke the script with a single argument, the CRS code of the station:

national-rail MSN

This will render the departure board in a tabular format, for example:

Platform  Destination            Scheduled    Due
----------  ---------------------  -----------  -------
         2  Manchester Piccadilly  13:05        On time
         1  Huddersfield           13:30        On time
         2  Manchester Piccadilly  14:05        On time
         1  Huddersfield           14:30        On time

Command line help is available to list all available options:

national-rail --help

Practicalities

  • The environment variables DARWIN_WEBSERVICE_WSDL and DARWIN_WEBSERVICE_API_KEY can be used to set the WSDL url and api key, so you don’t have to specify them when initiating a DarwinLdbSession.

  • The WSDL url for the LDB Webservice may change from time to time, and has in the past. Your application should take this into account.

  • Any call to get_station_board or get_service_details will result in a query to the LDB Webservice, and therefore an HTTP request to an external service. Your application will need to handle caching and failure modes itself.

  • There is an overhead involved when creating a DarwinLdbSession, as the WSDL must be retrieved and parsed.

Contributions

Pull requests and issue reports are welcome. A requirements file is provided to help you set up code checking and formatting tools.

To set this up run:

pip install -r devenv-requirements.txt
pre-commit install

This will enable a pre-commit hook to run linting checks with flake8 and format any changed files with black

The test suite can be run via setup.py:

python3 setup.py test

Credits

Additional contributions by George Goldberg. Advice on SUDS proxy issues from Pete Barking.

TODO

  • Make departure and arrival times available as timezone-aware datetime objects

  • More detailed exception handling

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nre-darwin-py-0.4.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

nre_darwin_py-0.4.0-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file nre-darwin-py-0.4.0.tar.gz.

File metadata

  • Download URL: nre-darwin-py-0.4.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.8.10

File hashes

Hashes for nre-darwin-py-0.4.0.tar.gz
Algorithm Hash digest
SHA256 5a70f29c62f667e26c1c32177a1058fb7607781a5ac5e7388f21960c55054aa4
MD5 b3cf679f0a8d2545d096b30e7df2d18a
BLAKE2b-256 b2b5cc8a04bf44ceb78feed1d013cca8bd0551ce2f7031e68b24f4e923bd4235

See more details on using hashes here.

File details

Details for the file nre_darwin_py-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for nre_darwin_py-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 73bc5d046149ca767c85adca19d01b5e48d201732adc3be0b2d7cac5fbeb8911
MD5 7585c7a8d767a6682b270c06435f32f8
BLAKE2b-256 751f921a1cbb92e46973efa348aeb4bad829e2610101150b37ab7fcf04234ccf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page