comparison python/gview.py @ 686:34af6d5ac73c

STUB: python/gview.py
author Jeff Hammel <k0scist@gmail.com>
date Sat, 24 May 2014 15:27:16 -0700
parents 8b2787e98c01
children 5e8d3f68a997
comparison
equal deleted inserted replaced
685:3da85ac3c54f 686:34af6d5ac73c
24 self.add_argument('input', 24 self.add_argument('input',
25 help='graphviz file to view') 25 help='graphviz file to view')
26 self.add_argument('-o', '--output', dest='output', 26 self.add_argument('-o', '--output', dest='output',
27 help="path to save to") 27 help="path to save to")
28 self.add_argument('-e', '--program', dest='program', 28 self.add_argument('-e', '--program', dest='program',
29 default='dot', 29 default='fdp',
30 help="GraphViz program to invoke [DEFAULT: %(default)s]") 30 help="GraphViz program to invoke [DEFAULT: %(default)s]")
31 self.add_argument('-v', '--view', dest='viewer', default='feh', 31 self.add_argument('-v', '--view', dest='viewer', default='feh',
32 help="viewer") 32 help="viewer")
33 33
34 34