view wsgraph/main.py @ 24:e46b4466abac

start a RESTful client; putting this here for now; it could go in model.py as it will inherit from the ABC, but keeping it here avoids a ccertain class of import hell
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 12 Dec 2012 18:27:34 -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()