emailparser/parse
2012-05-27 05:30:36 +02:00

18 lines
680 B
Python
Executable file

#!/usr/bin/python
import os, argparse, hashlib, email, glob, sqlite3
parser = argparse.ArgumentParser(description='Parses emails into an SQLite database, and optionally renders static HTML files.')
parser.add_argument('-p', '--pattern', dest='pattern', action='store', default='*',
help='glob pattern (including path) that has to be matched for a file to be parsed')
parser.add_argument('-r', '--render', dest='render', action='store_true',
help='render static HTML files using the template files in templates/')
args = parser.parse_args()
options = vars(args)
filelist = glob.glob(options['pattern'])
print filelist