Metadata-Version: 1.0
Name: textinput
Version: 0.1.0
Summary: streamlined version of stdlib fileinput
Home-page: http://www.ebi.ac.uk/~hoffman/software/textinput/
Author: Michael Hoffman
Author-email: hoffman+textinput@ebi.ac.uk
License: GNU GPL
Download-URL: http://www.ebi.ac.uk/~hoffman/software/textinput//textinput-0.1.0.tar.gz
Description: Typical use is:
        
        import textinput
        for line in textinput.lines():
        process(line)
        
        This iterates over the lines of all files listed in sys.argv[1:],
        defaulting to sys.stdin if the list is empty.  If a filename is '-' it
        is also replaced by sys.stdin.  To specify an alternative list of
        filenames, pass it as the argument to input().  A single file name is
        also allowed.
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
