Beacon processor for the OGN data stream.


License
MIT
Install
pip install OGN-lib==0.2.5

Documentation

OGN Lib

Build Status codecov PyPI version

Overview

OGN Lib is an easily extendable library for communication with the Open Glider Network's APRS servers.

The libray is MIT licensed and uses no external dependencies.

Quick example

from ogn_lib import OgnClient, Parser


def callback(data):
    print(data)

client = OgnClient('N0CALL')
client.connect()
client.receive(callback, parser=Parser)

Requirements

  • Python 3.4 or greater

Installation

Library is available on PyPI and can be installed by executing

pip install ogn-lib

Documentation

The documentation is available online at http://ogn-lib.readthedocs.io.

How to contribute