Mercurial > p > roundup > code
view tools/base64 @ 5371:dee9eb81bfa8
Add sudo to install?? I doubt this will work but....
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Fri, 20 Jul 2018 20:38:01 -0400 |
| parents | 740102dfad1d |
| children | c75defc1c2f0 |
line wrap: on
line source
#!/usr/bin/env python import zlib, base64, sys print base64.encodestring(zlib.compress(sys.stdin.read()))
