Mercurial > p > roundup > code
view tools/base64 @ 8562:9c3ec0a5c7fc
chore: remove __future print_funcion from code.
Not needed as of Python 3.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 08 Apr 2026 21:39:40 -0400 |
| parents | c75defc1c2f0 |
| children |
line wrap: on
line source
#!/usr/bin/env python import zlib, base64, sys print(base64.encodestring(zlib.compress(sys.stdin.read())))
