Skip to main content

DLE ASCII Encoder

Project description

package Documentation Status codecov PyPI version

DLE Encoder for Python

This encoder provides a simple ASCII transport layer for serial data. It uses the C0 and C1 ASCII control characters for this. You can find a corresponding C++ implementation here. This encoder supports two modes:

Escaped mode

The encoded stream starts with a STX marker and ends with an ETX marker. STX and ETX occurrences in the stream are escaped and internally encoded as well so the receiver side can simply check for STX and ETX markers as frame delimiters. When using a strictly char based reception of packets encoded with DLE, STX can be used to notify a reader that actual data will start to arrive while ETX can be used to notify the reader that the data has ended.

Example:

[0, STX, DLE] -> [STX, 0, 0, DLE, STX + 0x40, DLE, DLE, ETX]

Non-escaped mode

The encoded stream starts with DLE STX and ends with DLE ETX. All DLE occurrences in the stream are escaped with DLE. If the receiver detects a DLE char, it needs to read the next char to determine whether a start (STX) or end (ETX) of a frame has been detected.

Example:

[0, STX, DLE] -> [DLE, STX, 0, DLE, STX, DLE, DLE, DLE, ETX]

Install

You can install this package from PyPI

Linux:

python3 -m pip install dle-encoder

Windows:

py -m pip install dle-encoder

Examples

import dle_encoder

encoder = dle_encoder.DleEncoder()
test_array = bytearray([1, 2, 3])
encoded = encoder.encode(test_array)
retval, decoded, bytes_decoded = encoder.decode(encoded)

print(test_array)
print(encoded)
print(decoded)

The non-escaped mode can be used by passing escape_stx_etc=False to the DleEncoder constructor.

License

Copyright 2019-2021 Robin Mueller, KSat e.V. Stuttgart

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

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

dle-encoder-0.2.3.tar.gz (9.8 kB view details)

Uploaded Source

Built Distribution

dle_encoder-0.2.3-py3-none-any.whl (11.2 kB view details)

Uploaded Python 3

File details

Details for the file dle-encoder-0.2.3.tar.gz.

File metadata

  • Download URL: dle-encoder-0.2.3.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.6

File hashes

Hashes for dle-encoder-0.2.3.tar.gz
Algorithm Hash digest
SHA256 62d4a3ed40e7a842b5a7d62f223bae4e922d71be1908c41b852f33d3060382b0
MD5 9ff7e3bb6fb727d1fab1c17cb47e5185
BLAKE2b-256 e9fd50d5de267254ec350f19d1b701cb55f64e20a42ec7e3ce0335588962c210

See more details on using hashes here.

File details

Details for the file dle_encoder-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: dle_encoder-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 11.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.6

File hashes

Hashes for dle_encoder-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b161cebdd7dc68b158eb88eb15030bf2b2cd935fd409e2ef2e18fb9a4ccf3c0e
MD5 53681ff8cd5b3706bde65cd3092ac660
BLAKE2b-256 28d505563af74b2dd91b219e1912742fd3691658cfed37a84bd22d83a349664c

See more details on using hashes here.

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