Mercurial > p > roundup > code
view tools/base64 @ 4893:5dbeea79a3db
CHANGES.txt: Completting some committer names.
| author | Bernhard Reiter <bernhard@intevation.de> |
|---|---|
| date | Tue, 06 May 2014 21:24:55 +0200 |
| 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()))
