https://github.com/dmnfarrell/tkintertable
A pure Python library for adding tables to a Tkinter application
https://github.com/dmnfarrell/tkintertable
python table tkinter
Last synced: 9 months ago
JSON representation
A pure Python library for adding tables to a Tkinter application
- Host: GitHub
- URL: https://github.com/dmnfarrell/tkintertable
- Owner: dmnfarrell
- License: other
- Created: 2015-05-12T10:20:53.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-03-14T15:30:26.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T14:42:56.573Z (almost 2 years ago)
- Topics: python, table, tkinter
- Language: Python
- Homepage:
- Size: 1.84 MB
- Stars: 386
- Watchers: 23
- Forks: 108
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
- License: LICENSE
Awesome Lists containing this project
README
[](https://pypi.python.org/pypi/tkintertable/)
[](https://www.gnu.org/licenses/gpl-3.0)
## About

Python uses a GUI library called Tkinter as default. This set of classes allows interactive spreadsheet-style tables to be added into an application. Tkinter is the standard GUI toolkit for python. It is old but still quite popular. There are various libraries that extend Tkinter functionality, such as Pmw, but there is currently no extendable table class for Tkinter. A sample application using these classes is included in the distribution.
**This library is also now Python 3 compatible**
## Installation
```
pip install tkintertable
```
Install latest 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
See the [wiki](https://github.com/dmnfarrell/tkintertable/wiki/Usage) for how to use the table in Python.
## API docs
For programmers, the module documentation is at http://dmnfarrell.github.io/tkintertable/index.html. You are encouraged to subclass the TableCanvas class to add new functionality.
## See also
https://github.com/dmnfarrell/pandastable