File: encode-base64.py

package info (click to toggle)
subversion 1.4.2dfsg1-3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 37,284 kB
  • ctags: 32,888
  • sloc: ansic: 406,472; python: 38,378; sh: 15,438; cpp: 9,604; ruby: 8,313; perl: 5,308; java: 4,576; lisp: 3,860; xml: 3,298; makefile: 856
file content (6 lines) | stat: -rwxr-xr-x 92 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
#! /usr/bin/env python

from base64 import encode
import sys

encode(sys.stdin, sys.stdout)