Mercurial > hg > WSGraph
view wsgraph/main.py @ 10:81d68388ec97
some nonsense about how this model is full of holes and how it should be better
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 10 Dec 2012 17:14:49 -0800 |
parents | cfcfa093e4b4 |
children |
line wrap: on
line source
#!/usr/bin/env python """ WSGI graph server """ import sys import optparse def main(args=sys.argv[:]): # parse command line options usage = '%prog [options]' class PlainDescriptionFormatter(optparse.IndentedHelpFormatter): """description formatter for console script entry point""" def format_description(self, description): if description: return description.strip() + '\n' else: return '' parser = optparse.OptionParser(usage=usage, description=__doc__, formatter=PlainDescriptionFormatter()) options, args = parser.parse_args(args) if __name__ == '__main__': main()