Mercurial > p > roundup > code
view tools/base64 @ 3950:257b4eab3bb2
Documentation for the XML-RPC interface
Also make "all" the default rule again :(
| author | Justus Pendleton <jpend@users.sourceforge.net> |
|---|---|
| date | Fri, 23 Nov 2007 20:57:50 +0000 |
| 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()))
