Metadata-Version: 1.0
Name: text_table
Version: 0.02
Summary: Simple Eyecandy ASCII Tables
Home-page: http://www.swaroopch.info/stuff/text_table
Author: Swaroop C H
Author-email: swaroop@swaroopch.info
License: Artistic
Description: 
        >>> t = TextTable((5, 'abc'), (10, 'def'))
        >>> t.row('foobarbaz', 'yadayadayada')
        >>> print t.draw()
        
        .-------+------------.
        | abc   | def        |
        +-------+------------+
        | foob- | yadayaday- |
        | arbaz | ada        |
        '-------+------------'
        
        
        
        Ported from Sebastian Riedel's Text::SimpleTable[1] to Python by Swaroop C H[2].
        License is same as that of Text::SimpleTable - Artistic or GPL license.
        
        [1]: http://search.cpan.org/~sri/Text-SimpleTable/lib/Text/SimpleTable.pm
        [2]: http://www.swaroopch.info
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Artistic License
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
