tksheet 7.2.23__py3-none-any.whl → 7.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tksheet/__init__.py +1 -1
- tksheet/column_headers.py +53 -48
- tksheet/functions.py +26 -9
- tksheet/main_table.py +168 -88
- tksheet/row_index.py +52 -48
- tksheet/sheet.py +107 -79
- tksheet/sheet_options.py +19 -0
- tksheet/top_left_rectangle.py +14 -7
- tksheet/types.py +8 -0
- {tksheet-7.2.23.dist-info → tksheet-7.3.1.dist-info}/METADATA +36 -12
- tksheet-7.3.1.dist-info/RECORD +20 -0
- {tksheet-7.2.23.dist-info → tksheet-7.3.1.dist-info}/WHEEL +1 -1
- tksheet-7.2.23.dist-info/RECORD +0 -20
- {tksheet-7.2.23.dist-info → tksheet-7.3.1.dist-info}/LICENSE.txt +0 -0
- {tksheet-7.2.23.dist-info → tksheet-7.3.1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tksheet
|
3
|
-
Version: 7.
|
3
|
+
Version: 7.3.1
|
4
4
|
Summary: Tkinter table / sheet widget
|
5
5
|
Author-email: ragardner <github@ragardner.simplelogin.com>
|
6
6
|
License: Copyright (c) 2019 ragardner and open source contributors
|
@@ -36,12 +36,14 @@ Classifier: Programming Language :: Python :: 3.9
|
|
36
36
|
Classifier: Programming Language :: Python :: 3.10
|
37
37
|
Classifier: Programming Language :: Python :: 3.11
|
38
38
|
Classifier: Programming Language :: Python :: 3.12
|
39
|
+
Classifier: Programming Language :: Python :: 3.13
|
39
40
|
Requires-Python: >=3.8
|
40
41
|
Description-Content-Type: text/markdown
|
41
42
|
License-File: LICENSE.txt
|
42
43
|
|
43
44
|
<p align="center" width="100%">
|
44
|
-
<img width="
|
45
|
+
<img width="45%" src="https://github.com/user-attachments/assets/4afc1783-6461-4b98-93cb-b2a2a7f35169" alt="tksheet table">
|
46
|
+
<img width="45%"src="https://github.com/user-attachments/assets/08e77e89-00ea-4c52-9222-9bd421284360" alt="tksheet treeview">
|
45
47
|
</p>
|
46
48
|
|
47
49
|
# <div align="center">tksheet - python tkinter table widget</div>
|
@@ -50,14 +52,35 @@ License-File: LICENSE.txt
|
|
50
52
|
|
51
53
|
[](https://github.com/ragardner/tksheet/releases) [](https://pypi.org/project/tksheet/)
|
52
54
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
55
|
+
<table>
|
56
|
+
<thead>
|
57
|
+
<tr>
|
58
|
+
<th style="color: lightgreen" colspan=2><strong>Help</strong></th>
|
59
|
+
</tr>
|
60
|
+
</thead>
|
61
|
+
<tbody>
|
62
|
+
<tr>
|
63
|
+
<td style="color: LightCoral">Versions 6.x.x →</td>
|
64
|
+
<td><a href="https://github.com/ragardner/tksheet/wiki/Version-6">Documentation Wiki</a></td>
|
65
|
+
</tr>
|
66
|
+
<tr>
|
67
|
+
<td style="color: lightgreen">Versions 7.x.x →</td>
|
68
|
+
<td><a href="https://github.com/ragardner/tksheet/wiki/Version-7">Documentation Wiki</a></td>
|
69
|
+
</tr>
|
70
|
+
<tr>
|
71
|
+
<td align="right" colspan="2"><a href="https://github.com/ragardner/tksheet/blob/master/docs/CHANGELOG.md">Changelog</a></td>
|
72
|
+
</tr>
|
73
|
+
<tr>
|
74
|
+
<td align="right" colspan="2"><a href="https://github.com/ragardner/tksheet/wiki/Version-7#asking-questions">Questions</a></td>
|
75
|
+
</tr>
|
76
|
+
<tr>
|
77
|
+
<td align="right" colspan="2"><a href="https://github.com/ragardner/tksheet/wiki/Version-7#issues">Issues</a></td>
|
78
|
+
</tr>
|
79
|
+
<tr>
|
80
|
+
<td align="right" colspan="2"><a href="https://github.com/ragardner/tksheet/wiki/Version-7#enhancements-or-suggestions">Suggestions</a></td>
|
81
|
+
</tr>
|
82
|
+
</tbody>
|
83
|
+
</table>
|
61
84
|
|
62
85
|
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-7#contributing).
|
63
86
|
|
@@ -82,8 +105,10 @@ This library is maintained with the help of **[others](https://github.com/ragard
|
|
82
105
|
- Expand row heights and column widths
|
83
106
|
- Change fonts and font size (not for individual cells)
|
84
107
|
- Change any colors in the sheet
|
85
|
-
- Dropdowns, check boxes, progress bars
|
86
108
|
- [Treeview mode](https://github.com/ragardner/tksheet/wiki/Version-7#treeview-mode)
|
109
|
+
- [Dropdown boxes](https://github.com/ragardner/tksheet/wiki/Version-7#dropdown-boxes)
|
110
|
+
- [Check boxes](https://github.com/ragardner/tksheet/wiki/Version-7#check-boxes)
|
111
|
+
- [Progress bars](https://github.com/ragardner/tksheet/wiki/Version-7#progress-bars)
|
87
112
|
- [Hide rows and/or columns](https://github.com/ragardner/tksheet/wiki/Version-7#example-header-dropdown-boxes-and-row-filtering)
|
88
113
|
- Left `"w"`, Center `"center"` or Right `"e"` text alignment for any cell/row/column
|
89
114
|
|
@@ -117,4 +142,3 @@ sheet.delete_columns(columns=[0, 3], undo=True)
|
|
117
142
|

|
118
143
|
|
119
144
|
|
120
|
-
|
@@ -0,0 +1,20 @@
|
|
1
|
+
tksheet/__init__.py,sha256=D2eEiYomTgytJd1HZ-b4qwbtJnpbRa5Dh-EcE_EsYWE,2236
|
2
|
+
tksheet/colors.py,sha256=1k06VorynLmnC4FdJg8H4reIA6rXaeXBpdMwXLhN8oc,51594
|
3
|
+
tksheet/column_headers.py,sha256=9HcSz_rEPM3pelnYfrQr4AI7LR1C8Ae3GTQY9eNhMOw,102876
|
4
|
+
tksheet/formatters.py,sha256=_exO2KnjtcnE_MVWLG1ngOZ-wmrXZhuh7uEi2iPs1Tk,10546
|
5
|
+
tksheet/functions.py,sha256=egowBJuShOPuNiX46v9M8E5pzPiX2FrobCqVgKLBKWo,43482
|
6
|
+
tksheet/main_table.py,sha256=9SDXmEc-uqM58iovq52s_VgI_Ykt4i42-65-YzxDviU,337745
|
7
|
+
tksheet/other_classes.py,sha256=cYcu8TYgGdsJ6ZGG51AQFVrzj7Lu0LwAn62V7iUh_mc,16488
|
8
|
+
tksheet/row_index.py,sha256=RiIfxCfDZgDEPb7OwwCSo8O4hY1Lkh8P6p_YkHE7bWc,111666
|
9
|
+
tksheet/sheet.py,sha256=dI8tg6fLZH2Zvmm5q1NhYDd_RH6jghUA8BMuPeeazus,289010
|
10
|
+
tksheet/sheet_options.py,sha256=YzZWhqmZgrZqdR4NZV8Xe8xRgs5_2MHpUlBSDUhXHzY,7429
|
11
|
+
tksheet/text_editor.py,sha256=zrBdURBFNBbnl8GmZ4vQMFZ3UmvAvfBZ7KSJi_WtrNI,7449
|
12
|
+
tksheet/themes.py,sha256=AoNAxibnQi04MN0Zpbn9-kyDnkiiV8TDNWP9FYjpuf0,18473
|
13
|
+
tksheet/top_left_rectangle.py,sha256=0vzhYK7oGe9M_v7mlxFLh595XuXuXDOjooCDuR5sqnM,8593
|
14
|
+
tksheet/types.py,sha256=4NIFPmq64g1vcbApWzLJrOZ8xhcRcOh2wCAzdn5LS2w,475
|
15
|
+
tksheet/vars.py,sha256=-NWaHEEpcQ0YHn4yGDf8SSffjceiEOayGqnEYw6VwPM,3507
|
16
|
+
tksheet-7.3.1.dist-info/LICENSE.txt,sha256=ndbcCPe9SlHfweE_W2RAueWUe2k7yudyxYLq6WjFdn4,1101
|
17
|
+
tksheet-7.3.1.dist-info/METADATA,sha256=5Xbqc5dFTlp-UFOdDr1g7zmoFI7JE9moRklUMsm1_m8,7282
|
18
|
+
tksheet-7.3.1.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
19
|
+
tksheet-7.3.1.dist-info/top_level.txt,sha256=my61PXCcck_HHAc9cq3NAlyAr3A3FXxCy9gptEOaCN8,8
|
20
|
+
tksheet-7.3.1.dist-info/RECORD,,
|
tksheet-7.2.23.dist-info/RECORD
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
tksheet/__init__.py,sha256=xBKEG-m6pGAjxHMQonW2r7Q3WOuMn_TGvOrTslvsME4,2237
|
2
|
-
tksheet/colors.py,sha256=1k06VorynLmnC4FdJg8H4reIA6rXaeXBpdMwXLhN8oc,51594
|
3
|
-
tksheet/column_headers.py,sha256=6PHeHbCu3nSjeQaE46erRx9VdyNCw-L0vdeuukqTCvs,102908
|
4
|
-
tksheet/formatters.py,sha256=_exO2KnjtcnE_MVWLG1ngOZ-wmrXZhuh7uEi2iPs1Tk,10546
|
5
|
-
tksheet/functions.py,sha256=gAksrYFwZi6yC21si0PM4TZyPKdyrIQWqSVB4F-5TF4,43106
|
6
|
-
tksheet/main_table.py,sha256=ilNrXHlebYiwb9dyB13wgMCcjaMCJb35ISAlnMx4Xgg,334993
|
7
|
-
tksheet/other_classes.py,sha256=cYcu8TYgGdsJ6ZGG51AQFVrzj7Lu0LwAn62V7iUh_mc,16488
|
8
|
-
tksheet/row_index.py,sha256=7xBrkIQy8SSn2YDPCDQlb2gj7SQLPH2KL3pYoKfdC3c,111767
|
9
|
-
tksheet/sheet.py,sha256=BJhMAHh37KdXrdDmHxXv2g2K_x0O9GtbBeLEp5pFfN4,289185
|
10
|
-
tksheet/sheet_options.py,sha256=TXNL07Di9KAsl5yH9QSTfo-5Ykmb9nTmkXZWXnkZlEw,6769
|
11
|
-
tksheet/text_editor.py,sha256=zrBdURBFNBbnl8GmZ4vQMFZ3UmvAvfBZ7KSJi_WtrNI,7449
|
12
|
-
tksheet/themes.py,sha256=AoNAxibnQi04MN0Zpbn9-kyDnkiiV8TDNWP9FYjpuf0,18473
|
13
|
-
tksheet/top_left_rectangle.py,sha256=ri7hb9CC5l37ynmxceprq11UuWWRpWEI_0AI42wzv0A,8444
|
14
|
-
tksheet/types.py,sha256=IgoEHMbceKpakcZtanxKaKJ4RdCq7UW6EoEIIz5O59k,340
|
15
|
-
tksheet/vars.py,sha256=-NWaHEEpcQ0YHn4yGDf8SSffjceiEOayGqnEYw6VwPM,3507
|
16
|
-
tksheet-7.2.23.dist-info/LICENSE.txt,sha256=ndbcCPe9SlHfweE_W2RAueWUe2k7yudyxYLq6WjFdn4,1101
|
17
|
-
tksheet-7.2.23.dist-info/METADATA,sha256=r0MWVHuXUahO8TZArYcPCYeG5VMwXwMI9qUEMf0eBmw,6481
|
18
|
-
tksheet-7.2.23.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
19
|
-
tksheet-7.2.23.dist-info/top_level.txt,sha256=my61PXCcck_HHAc9cq3NAlyAr3A3FXxCy9gptEOaCN8,8
|
20
|
-
tksheet-7.2.23.dist-info/RECORD,,
|
File without changes
|
File without changes
|