Mercurial > hg > MakeItSo
view makeitso/python_package/{{package}}/{{main}}.py @ 203:84be91d59996
STUB: makeitso/python_package/tests/test_{{package}}.py
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 12 Aug 2014 14:53:55 -0700 |
parents | be7e2e336d7a |
children | 0a991b8fe839 |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- """ {{description}} """ # imports import argparse import os import subprocess import sys # module globals __all__ = ['main', 'Parser'] here = os.path.dirname(os.path.realpath(__file__)) string = (str, unicode) def ensure_dir(directory): """ensure a directory exists""" if os.path.exists(directory): assert os.path.isdir(directory) return directory os.makedirs(directory) return directory class Parser(argparse.ArgumentParser): """CLI option parser""" def __init__(self, **kwargs): kwargs.setdefault('description', __doc__) argparse.ArgumentParser.__init__(self, **kwargs) self.options = None def parse_args(self, *args, **kw): options = argparse.ArgumentParser.parse_args(self, *args, **kw) self.validate(options) self.options = options return options def validate(self, options): """validate options""" def main(args=sys.argv[1:]): """CLI""" # parse command line options parser = Parser() options = parser.parse_args(args) if __name__ == '__main__': main()