annotate makeitso/python_module/{{module}}.py @ 156:a7a7c364568a

note on importing; cleanup
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 04 Jul 2013 18:24:13 -0700
parents ebc5cfe17d95
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
129
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 #!/usr/bin/env python
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 """
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 {{module}}
152
88f5bab340a1 make this slightly less sucky
Jeff Hammel <jhammel@mozilla.com>
parents: 142
diff changeset
5 {{description}}
129
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
6 """
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
7
154
ebc5cfe17d95 order imports and add an add_options() API
Jeff Hammel <jhammel@mozilla.com>
parents: 153
diff changeset
8 import optparse
129
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
9 import sys
154
ebc5cfe17d95 order imports and add an add_options() API
Jeff Hammel <jhammel@mozilla.com>
parents: 153
diff changeset
10
ebc5cfe17d95 order imports and add an add_options() API
Jeff Hammel <jhammel@mozilla.com>
parents: 153
diff changeset
11 def add_options(parser):
ebc5cfe17d95 order imports and add an add_options() API
Jeff Hammel <jhammel@mozilla.com>
parents: 153
diff changeset
12 """add {{module}} options to an OptionParser instance"""
ebc5cfe17d95 order imports and add an add_options() API
Jeff Hammel <jhammel@mozilla.com>
parents: 153
diff changeset
13
129
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
14
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
15 def main(args=sys.argv[1:]):
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
16
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
17 # parse command line arguments
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
18 usage = '%prog [options] ...'
130
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
19 class PlainDescriptionFormatter(optparse.IndentedHelpFormatter):
142
a203f79c537f better organization
Jeff Hammel <jhammel@mozilla.com>
parents: 130
diff changeset
20 """description formatter"""
130
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
21 def format_description(self, description):
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
22 if description:
153
a5ea79f3221f .strip() the description
Jeff Hammel <jhammel@mozilla.com>
parents: 152
diff changeset
23 return description.strip() + '\n'
130
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
24 else:
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
25 return ''
d9201f911458 better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents: 129
diff changeset
26 parser = optparse.OptionParser(usage=usage, description=__doc__, formatter=PlainDescriptionFormatter())
154
ebc5cfe17d95 order imports and add an add_options() API
Jeff Hammel <jhammel@mozilla.com>
parents: 153
diff changeset
27 add_options(parser)
129
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
28 options, args = parser.parse_args(args)
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
29
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
30 if __name__ == '__main__':
57834c2b0937 add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
31 main()