Tkinter table / sheet widget
Project description
tksheet - python tkinter table widget
Help | |
---|---|
Versions 6.x.x -> | Documentation Wiki |
Versions 7.x.x -> | Documentation Wiki |
Changelog | |
Questions | |
Issues | |
Suggestions |
This library is maintained with the help of others. If you would like to contribute please read this help section.
Changes for versions 7
+:
- ALL
extra_bindings()
event objects have changed, information here. - The bound function for
extra_bindings()
with"edit_cell"
/"end_edit_cell"
no longer requires a return value and no longer sets the cell to the return value. Use this instead. edit_cell_validation
has been removed and replaced with the functionedit_validation()
, information here.- Only Python versions >=
3.8
are supported. tksheet
file names have been changed.- Many other smaller changes, see the changelog for more information.
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, 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
- Dropdowns, check boxes, progress bars
- Treeview mode
- Hide rows and/or columns
- Left
"w"
, Center"center"
or Right"e"
text alignment for any cell/row/column
"""
Versions 7+ have succinct and easy to read syntax:
"""
# set data
sheet["A1"].data = "edited cell A1"
# get data
column_b = sheet["B"].data
# add 2 empty columns and add the change to undo stack
sheet.insert_columns(columns=2, idx=4, undo=True)
# delete columns 0 and 3 and add the change to undo stack
sheet.delete_columns(columns=[0, 3], undo=True)
light blue theme
dark theme
treeview mode
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tksheet-7.2.20.tar.gz
(152.7 kB
view details)
Built Distribution
tksheet-7.2.20-py3-none-any.whl
(155.9 kB
view details)
File details
Details for the file tksheet-7.2.20.tar.gz
.
File metadata
- Download URL: tksheet-7.2.20.tar.gz
- Upload date:
- Size: 152.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 806091a92c2c5fac832f000e4db6c10afe6d779b578f7ae231f166a38ca491fe |
|
MD5 | 33363bd97209352b6371795e5ac4d3b5 |
|
BLAKE2b-256 | cc7813e1b8e88389af0611957d19b8da1fc8697b741b6b90b992723c1ca63a34 |
Provenance
File details
Details for the file tksheet-7.2.20-py3-none-any.whl
.
File metadata
- Download URL: tksheet-7.2.20-py3-none-any.whl
- Upload date:
- Size: 155.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ce14e5ac226130b5a87a77395c5e2ffa72b93b4b53f643ea83793c92a0ccb3d |
|
MD5 | 51f77068524b92b5e7305bdbe469e83e |
|
BLAKE2b-256 | 2c56b53ccdfef2a635c9f6d0363601305b777665f9893db3df87eb0390d14724 |