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.
12345678 |
- import sys
- sys.path.append('../..')
-
- import stringtools
- import report
-
- report.stdoutLoggingConfigure(log_name_lvl=[('root', 'DEBUG'), ])
- print(stringtools.hexlify(stringtools.gzip_compress(15 * b'\x00' + 15 * b'\xff')))
|