#!/usr/bin/env python # vim:ts=4:sw=4:expandtab:ft=python:fileencoding=utf-8 """ SYNOPSIS TODO helloworld [-h] [-v,--verbose] [--version] DESCRIPTION TODO This describes how to use this script. This docstring will be printed by the script if there is an error or if the user requests help (-h or --help). EXAMPLES TODO: Show some examples of how to use this script. EXIT STATUS TODO: List exit codes AUTHOR TODO: Name LICENSE This script is in the public domain, free from copyrights or restrictions. VERSION $Id: py.tpl 258 2008-05-22 01:05:37Z noah $ """ import sys, os, traceback, optparse import time import re #from pexpect import run, spawn # Uncomment the following section if you want readline history support. #import readline, atexit #histfile = os.path.join(os.environ['HOME'], '.TODO_history') #try: # readline.read_history_file(histfile) #except IOError: # pass #atexit.register(readline.write_history_file, histfile) def main (): global options, args # TODO: Do something more interesting here... print 'Hello world!' if __name__ == '__main__': try: start_time = time.time() parser = optparse.OptionParser(formatter=optparse.TitledHelpFormatter(), usage=globals()['__doc__'], version='$Id: py.tpl 258 2008-05-22 01:05:37Z noah $') parser.add_option ('-v', '--verbose', action='store_true', default=False, help='verbose output') (options, args) = parser.parse_args() #if len(args) < 1: # parser.error ('missing argument') if options.verbose: print time.asctime() exit_code = main() if exit_code is None: exit_code = 0 if options.verbose: print time.asctime() if options.verbose: print 'TOTAL TIME IN MINUTES:', if options.verbose: print (time.time() - start_time) / 60.0 sys.exit(exit_code) except KeyboardInterrupt, e: # Ctrl-C raise e except SystemExit, e: # sys.exit() raise e except Exception, e: print 'ERROR, UNEXPECTED EXCEPTION' print str(e) traceback.print_exc() os._exit(1)