Mercurial > p > roundup > code
view tools/base64 @ 5226:578e86e015f9
Changed function signature for properties to correspond to checkin:
9bf221cebef3
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 08 Apr 2017 22:34:10 -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()))
