Mercurial > hg > MakeItSo
annotate makeitso/python_module/{{module}}.py @ 140:3046e15c3dd7
fix up sectioning
| author | Jeff Hammel <jhammel@mozilla.com> | 
|---|---|
| date | Tue, 21 Feb 2012 21:06:11 -0800 | 
| parents | d9201f911458 | 
| children | a203f79c537f | 
| 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}} | 
| 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 5 """ | 
| 
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 import sys | 
| 130 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 8 import optparse | 
| 129 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 9 | 
| 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 10 def main(args=sys.argv[1:]): | 
| 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 11 | 
| 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 12 # parse command line arguments | 
| 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 13 usage = '%prog [options] ...' | 
| 130 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 14 | 
| 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 15 # description formatter | 
| 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 16 class PlainDescriptionFormatter(optparse.IndentedHelpFormatter): | 
| 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 17 def format_description(self, description): | 
| 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 18 if description: | 
| 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 19 return description + '\n' | 
| 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 20 else: | 
| 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 21 return '' | 
| 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 22 | 
| 
d9201f911458
better description formatting
 Jeff Hammel <jhammel@mozilla.com> parents: 
129diff
changeset | 23 parser = optparse.OptionParser(usage=usage, description=__doc__, formatter=PlainDescriptionFormatter()) | 
| 129 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 24 options, args = parser.parse_args(args) | 
| 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 25 | 
| 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 26 if __name__ == '__main__': | 
| 
57834c2b0937
add a single-file module to the thingy
 Jeff Hammel <jhammel@mozilla.com> parents: diff
changeset | 27 main() | 
