Python Library Stringtools
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

csp.csp.py 267B

123456789101112
  1. import sys
  2. sys.path.append('../..')
  3. import report
  4. import stringtools
  5. report.stdoutLoggingConfigure(log_name_lvl=[('root', 'DEBUG'), ])
  6. s = stringtools.csp.csp()
  7. for byte in b'message\n':
  8. data = s.process(bytes([byte]))
  9. if len(data) > 0:
  10. print(data)