Python interface to the Live Departure Boards
Project description
pyLDB - Python interface to the Live Departure Boards
A simple library for getting live departure boards from the National Rail Enquiries Darwin service (via OpenLDBWS). Designed to wrap the SOAP code with a simple interface.
This library is currently minimal but functional. See sample/get_board.py
for an example of how to retrieve the current departure board for a station and render it to an HTML page.
To run this code you will need your own access token which you have to get from National Rail Enquiries.
If you're not in the UK or not interested in train data from the UK, this code probably won't help you.
Technical
This library relies on two others: suds to do a SOAP call into the LDBWS service, and jinja2 for the HTML templating.
SOAP is a framework for remote APIs, typically over HTTP but other transport layers are supported, which predates REST. It uses XML, and relies on XML documents in a WSDL language to define the specifics of the API, including function signatures and all the custom types used by the API. It's usually a bit more complicated to setup a SOAP connection than to hit a REST api, but the use of strong types can make them very powerful. The code in this library provides a minimal proof of concept of how to retrieve live departure board data from the SOAP service using Python. For some peope that might be all you need.
Due to the choice of a port of suds to Python 3, this library does not currently work at all with Python 2. It is testing with Python versions 3.4, 3.5 and 3.6.
Jinja2 is an awesome templating library for Python which is used in Flask and Ansible among many other projects. Its use here is straightforward, and if you look at the basic HTML template, you can probably figure out how to write a template for either a differently structured HTML document, or a different document type altogether.
National Rail Enquiries is a UK organization which provides information about train times and fares on the National Rail system. The Live Departure Board service is a web API which shows trains scheduled to depart from a given station, along with information about their expected departure times, etc. This is the same data, updated live, which is used in mapping apps - since 2015 it is also the same data shown on departure boards in train stations, since these boards also rely on the same API.
See also
This code is libre software and might help you get your own project working. There are several other projects which get train departure boards using Python:
- helenst/train-times-display Scrapes the NRE website and writes to a LCD display.
- grundleborg/nrewebservices A library which works with Python 2 and 3. Uses
suds-jurko
. - robert-b-clarke/nre-darwin-py An 'abstraction layer
for LDBWS. Also uses
suds-jurko`, also Python 2 and 3. - Diaolou/PiTrains Uses
nre-darwin-py
(above) to display train departures on a Raspberry Pi using LEDs.
Important
National Rail Enquiries is the data provider for the API which this code wraps. However, this library is not approved, endorsed or supported by National Rail Enquiries. Information about Darwin Data Feeds provided by NRE (of which LDBWS is one) is at (https://www.nationalrail.co.uk/100296.aspx).
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
Built Distribution
File details
Details for the file pyldb-0.7.0.tar.gz
.
File metadata
- Download URL: pyldb-0.7.0.tar.gz
- Upload date:
- Size: 30.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.9.2 Linux/5.15.84-v7+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8152e1293876b177ffdd8618c66d040f83175702ad7f439bf417356e7bdb530 |
|
MD5 | 79cdb5202e9d0216cb900f9a0ca627ed |
|
BLAKE2b-256 | cefaac0fdb8c87d79be965e9a83e49cca3f6abf4b4dc33c98cca5e9a6b2506a0 |
File details
Details for the file pyldb-0.7.0-py3-none-any.whl
.
File metadata
- Download URL: pyldb-0.7.0-py3-none-any.whl
- Upload date:
- Size: 30.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.9.2 Linux/5.15.84-v7+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 713b43291adc7f51229d23452cec71c5eb0b7133261b9ba457f2fb1bea7629e0 |
|
MD5 | 00e0b1535a55cfec76c4d065ab26a794 |
|
BLAKE2b-256 | 5a3e706facb413aa74e3c4e33914f4c031658385c6ebc7c52f23a22db1c8e759 |