Mercurial > p > roundup > code
view tools/base64 @ 7520:ffca9208445d
Fix reference to python-dev
The package has dash in the middle. Also use single quotes and literal
font.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 04 Jul 2023 23:24:34 -0400 |
| 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())))
