Below is the file 'pyunbase64' from this revision. You can also download the file.

#!/usr/bin/python
from sys import stdin, stdout
from string import join
import base64

lines = stdin.readlines()
stdout.write( base64.decodestring( join(lines, '') ) )