Repository URL to install this package:
|
Version:
1.4.post2 ▾
|
"""
A helper module to build simple filter scripts.
"""
from six import print_
import sys
from os.path import join
def do_filter(populate_parser=None):
import optparse
parser = optparse.OptionParser(__doc__.strip())
opts, args = parser.parse_args()
if not args:
args = ['-']
for fn in args:
if fn == '-':
f = sys.stdin
else:
f = open(fn)
for line in f.xreadlines():
try:
yield eval(line)
except Exception, e:
print_(e, sys.stderr)
raise SystemExit