Metadata-Version: 1.1
Name: tkintertable
Version: 1.3.3
Summary: Extendable table class for Tkinter
Home-page: https://github.com/dmnfarrell/tkintertable
Author: Damien Farrell
Author-email: farrell.damien@gmail.com
License: GPL v3
Description: Description
        -----------
        
        This package allows interactive spreadsheet-style tables to be added into a Tkinter application.
        Tkinter is the standard GUI toolkit for Python. A sample application using these classes
        is included in the distribution. Now works with Python 3. A sample application using these classes is included in the distribution.
        
        Installation
        ------------
        
        From pypi::
        
            pip install tkintertable
        
        From github::
        
            pip install -e git+https://github.com/dmnfarrell/tkintertable.git#egg=tkintertable
        
        You can clone the current source using::
        
            git clone https://github.com/dmnfarrell/tkintertable.git
        
        
        Usage
        -----
        
        Import::
        
            from tkintertable import TableCanvas, TableModel
        
        Create table::
        
            tframe = Frame(master)
            tframe.pack()
            table = TableCanvas(tframe)
            table.show()
            
        Constructor options::
         
            table = TableCanvas(frame, model,
        			cellwidth=60, cellbackgr='#e3f698',
        			thefont=('Arial',12),rowheight=18, rowheaderwidth=30,
        			rowselectedcolor='yellow', editable=True)
        			
        Links
        -----
        
        See https://github.com/dmnfarrell/tkintertable/wiki for help.
        
Keywords: tkinter,spreadsheet,table
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: User Interfaces
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
