Mercurial > p > roundup > code
view tools/base64 @ 6596:2e2d2302eef3
revert to bionic, mysql grant syntax in file doesn't work with 8.0.21 reports: ...right syntax to use near 'IDENTIFIED BY "rounduptest"'
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 26 Jan 2022 08:02:29 -0500 |
| parents | c75defc1c2f0 |
| children | 9c3ec0a5c7fc |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import zlib, base64, sys print(base64.encodestring(zlib.compress(sys.stdin.read())))
