Mercurial > hg > TextShaper
view textshaper/main.py @ 5:0a800613af9a
textshaper/main.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 26 Sep 2013 02:02:36 -0700 |
parents | 26bb5e99f76c |
children | 71fb16088d54 |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- """ package to shape text blocks """ import optparse import os import subprocess import sys import time def display(content): print content print '--' nlines = len(content.splitlines()) print '%d lines' % nlines def add_options(parser): """add options to the OptionParser instance""" def main(args=sys.argv[1:]): # 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) # read from stdin content = sys.stdin.read() # print formatted content display(content) while True: time.sleep(1) # XXX if __name__ == '__main__': main()