SlipLib icon indicating copy to clipboard operation
SlipLib copied to clipboard

Python package supporting the SLIP protocol (RFC 1055)

Results 5 SlipLib issues
Sort by recently updated
recently updated
newest added

Direct access to the wrapped stream / socket methods is deprecated since version 0.6 This direct access must be removed when releasing version 1.0.

Currently `sliplib.encode` inserts an `END` (`0xc3`) byte at the start as well as the end of the SLIP packet: ```bash $ python -c 'import sliplib;print(sliplib.encode(b"abc"))' b'\xc0abc\xc0' ``` Reading the "nonstandard"...