Metadata-Version: 1.1
Name: Pybles
Version: 1.0.12
Summary: Module to represent tables in the terminal using python
Home-page: http://pypi.python.org/pypi/Pybles/
Author: Guido Accardo
Author-email: gaccardo@gmail.com
License: GPLv2
Description: ===========
        Pybles
        ===========
        
        This is a module designed to make table representations very easy and fast. This is how to use it:
        
            #!/usr/bin/env python
        
            import pybles
        
            PB = pybles.Pyble()
        
            PB.add_column('First Name')
        
            PB.add_column('Last Name')
        
            PB.add_line(['John', 'Doe'])
        
            PB.show_table()
            
        
        Output:
        
            --------------------------
            | First Name | Last Name |
            --------------------------
            | John       | Doe       |
            --------------------------
        
Keywords: ssh networking console tools
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: System :: Networking
Classifier: Topic :: Utilities
Classifier: Topic :: Terminals
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
