Metadata-Version: 2.1
Name: tksheet
Version: 6.3.3
Summary: Tkinter table / sheet widget
Home-page: https://github.com/ragardner/tksheet
Author: ragardner
Author-email: github@ragardner.simplelogin.com
License: MIT
Download-URL: https://github.com/ragardner/tksheet/archive/6.3.3.tar.gz
Description: # **tksheet** [![PyPI version shields.io](https://img.shields.io/pypi/v/tksheet.svg)](https://pypi.python.org/pypi/tksheet/) ![python](https://img.shields.io/badge/python-3.7+-blue) [![License: MIT](https://img.shields.io/badge/License-MIT%20-blue.svg)](https://github.com/ragardner/tksheet/blob/master/LICENSE.txt) [![GitHub Release Date](https://img.shields.io/github/release-date-pre/ragardner/tksheet.svg)](https://github.com/ragardner/tksheet/releases) [![Downloads](https://img.shields.io/pypi/dm/tksheet.svg)](https://pypi.org/project/tksheet/)
        
        ## **Python tkinter table widget**
        
        ```python
        #To install using pip
        pip install tksheet
        
        #To update using pip
        pip install tksheet --upgrade
        ```
        
        ## **Help**
        
        - [Documentation](https://github.com/ragardner/tksheet/wiki/Version-6)
        - [Changelog](https://github.com/ragardner/tksheet/blob/master/CHANGELOG.md)
        - [Questions](https://github.com/ragardner/tksheet/wiki/Version-6#asking-questions)
        - [Issues](https://github.com/ragardner/tksheet/wiki/Version-6#issues)
        - [Suggestions](https://github.com/ragardner/tksheet/wiki/Version-6#enhancements-or-suggestions)
        - This library is maintained with the help of **[others](https://github.com/ragardner/tksheet/graphs/contributors)**. If you would like to contribute please read [this help section](https://github.com/ragardner/tksheet/wiki/Version-6#contributing).
        
        ## **Notice:**
        
        ### **Changes coming soon for versions >= `7.0.0`:**
        
        - **ALL** `extra_bindings()` event objects will be changed, [see here](https://github.com/ragardner/tksheet/wiki/Version-7#bind-specific-table-functionality) for more information. If you use the `extra_bindings()` function and plan to upgrade to version `7` when it's released you will need to change code that deals with the event object.
        - Only Python versions >= `3.8` are supported.
        - `tksheet` file names will be changed.
        
        ### **Changes for versions >= `5.5.0`:**
        
        - If you use `extra_bindings()` with `"edit_cell"`/`"end_edit_cell"` you must provide a return value in your bound function to set the cell value to. To disable this behavior in these versions use option `edit_cell_validation = False` in your `Sheet()` initialisation arguments or use `set_options(edit_cell_validation = False)`. [See here](https://github.com/ragardner/tksheet/issues/170#issuecomment-1522236289) for more information on this issue and if you need to *very* directly set the cell data.
        
        ## **Features**
        
        - Display and modify tabular data
        - Stores its display data as a Python list of lists, sublists being rows
        - Runs smoothly even with millions of rows/columns
        - Edit cells directly
        - Cell values can potentially be [any class](https://github.com/ragardner/tksheet/wiki/Version-6#cell-formatting), the default is any class with a `__str__` method
        - Drag and drop columns and rows
        - Multiple line header and index cells
        - Expand row heights and column widths
        - Change fonts and font size (not for individual cells)
        - Change any colors in the sheet
        - Create an unlimited number of high performance dropdown and check boxes
        - [Hide rows and/or columns](https://github.com/ragardner/tksheet/wiki/Version-6#example-header-dropdown-boxes-and-row-filtering)
        - Left `"w"`, Center `"center"` or Right `"e"` text alignment for any cell/row/column
        
        ### **light blue theme**
        
        ![tksheet light blue theme](https://i.imgur.com/ojU3IQi.jpeg)
        
        ### **black theme**
        
        ![tksheet black theme](https://i.imgur.com/JeF9vJe.jpeg)
Keywords: tkinter,table,widget,sheet,grid,tk
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
