jketterl / js8py

python module for parsing messages from the "js8" command line decoder

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

js8py

A library to decode the output of the "js8" binary of JS8Call.

Installation

sudo python3 setup.py install

Usage

Example:

from js8py import Js8

# raw message from the decoder
test_message = "140000 -11  0.4 1050 A  qBdgE+EP++++         2"

# extract information
decoded_message = Js8().parse_message(test_message)

# output string representation
print(str(decoded_message)) # "IN ITALY TODAY"

About

python module for parsing messages from the "js8" command line decoder

License:GNU General Public License v3.0


Languages

Language:Python 100.0%