Metadata-Version: 2.1
Name: sarp-utils
Version: 1.2.7
Summary: A package to encode network communication for SARP
Home-page: https://gitlab.com/SARP_UW/codecs
Author: Josh Sherbrooke
Author-email: jsherbro@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

## __Codecs for SARP__

sarp-utils is a package containing message schema for all networked SARP systems as well as various utilities for SARP software. It will help establish a consistent encoding scheme for all SARP related network communication.

## Installation

`pip install sarp-utils`

## Example Usage of Codec Software

`from sarp_utils.template_codec import TemplateCodec`

`telem_item = {"timestamp": 12345, "example_channel_1": 1, "example_channel_2": 2, "example_channel_3": 3}`

`fill_codec = TemplateCodec()`

`fill_codec.encode(telem_item)`

### Expected Output
The expected output will be the encoded version of telem_item

