13 lines
277 B
Python
13 lines
277 B
Python
import sys # nopep8
|
|
sys.path.append('../..') # nopep8
|
|
|
|
import report
|
|
import stringtools
|
|
|
|
report.default_logging_config()
|
|
s = stringtools.stp.stp()
|
|
for byte in b':<:=message:=:>':
|
|
data = s.process(bytes([byte]))
|
|
if len(data) > 0:
|
|
print(data)
|