Skip to main content

Python framework for a NMEA 0183 TCP Server inspired by Flask developer API

Project description

nmeaserver

Python framework for a NMEA 0183 TCP Server inspired by Flask developer API

Create your first NMEA Server

The nmeaserver framework is inspired from the Flask interface to make it straight-forward to setup server.

To create your first server, all you need to do is:

from nmeaserver import server, formatter

# Creates a nmeaserver
nmeaserver = server.NMEAServer()

# Create a message handler that receives all messages with the sentence ID: 'RXTST'
@nmeaserver.message('RXTST')
def tst_handler(self, context, message):
    return formatter.format('TXTST,Message Received!')

# Starts the server
nmeaserver.start()

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

nmeaserver-0.1.1.tar.gz (5.4 kB view hashes)

Uploaded Source

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