HTTP server for Metlink PID
Project description
The metlinkpid-http script provides an HTTP endpoint for a Metlink LED passenger information display:
$ metlinkpid-http --serial=/dev/ttyUSB0 Serving on http://127.0.0.1:8080 $ curl 'http://127.0.0.1:8080?12:34+FUNKYTOWN~5|Limited+Express|_Stops+all+stations+except+East+Richard' {"error":null,"message":"12:34 FUNKYTOWN~5|Limited Express|_Stops all stations except East Richard"}
Installation
pip install metlinkpid-http
Basic usage
Find the device
Determine the device to which the display is connected. On Linux, this can be achieved by disconnecting the display from the computer & reconnecting, then inspecting the contents of dmesg output for USB attachment messages:
[ 3.010816] usb 1-1.4: FTDI USB Serial Device converter now attached to ttyUSB0
The above output indicates that the display is reachable through /dev/ttyUSB0.
Start the HTTP server
Run the script passing that device location as the --serial option:
$ metlinkpid-http --serial=/dev/tty/USB0
The script accepts the following options:
- --serial=PORT
The PID serial device name, such as /dev/ttyUSB0 on Linux or COM1 on Windows. If not specified, defaults to the value of environment variable METLINKPID_SERIAL; if no such variable, defaults to /dev/ttyUSB0.
- --http=HOST:PORT
The hostname/IP address and port to listen on, separated by a colon (:). If not specified, defaults to the value of environment variable METLINKPID_HTTP; if no such variable, defaults to 127.0.0.1:8080.
- -h or --help
Displays usage information similar to above, and provides a link to this documentation.
If the PID successfully connects, the URL is confirmed:
Serving on http://127.0.0.1:8080
Display a message
Next, browse to the specified URL in a browser, adding an appropriately encoded query string to the end:
You should see a plain-text JSON result similar to this:
{"error":null,"message":"MY MESSAGE"}
The same result can be obtained on the terminal using curl:
$ curl 'http://127.0.0.1:8080?MY+MESSAGE' {"error":null,"message":"MY MESSAGE"}
You could do the same thing in Python like this, using the “requests” library:
>>> import requests >>> requests.get('http://127.0.0.1:8080?MY+MESSAGE').json() {'error': None, 'message': 'MY MESSAGE'}
By exposing the display via HTTP in this way, you can operate it using almost any programming language or toolkit.
See the “metlinkpid” module documentation for full details about message formatting.
The HTTP server also periodically pings the display in the background, preventing message display timeout.
Support
Bug reports, feature requests, and questions are welcome via the issue tracker.
- Issue tracker:
Contribute
Pull requests for both code and documentation improvements are gratefully received and considered.
- GitHub repository:
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
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 metlinkpid-http-1.0.0.tar.gz
.
File metadata
- Download URL: metlinkpid-http-1.0.0.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39f8b014a9002765f8abc4a2c9dd35ebe0fbae1406d0146ecc3eb5ddc3f7aa8f |
|
MD5 | 14a429d28eaf4e0c7856b5743e4f0593 |
|
BLAKE2b-256 | 7264eca15c95b68ec5dec45b89133d82efc9d3609f9266a0887ef344323e520e |
File details
Details for the file metlinkpid_http-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: metlinkpid_http-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fca750438a1be5f53ba438076018a4236a5b2f65c55429e2da52f8ecd68a3c9 |
|
MD5 | 7eb2a85e1373277a915821989e7c5d1b |
|
BLAKE2b-256 | 5558090b420ee881d86d071ad1dda75d0d4aca71e324818c31aade403dd3f260 |