tksheet 7.2.1__tar.gz → 7.2.3__tar.gz
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-7.2.1/tksheet.egg-info → tksheet-7.2.3}/PKG-INFO +6 -4
- {tksheet-7.2.1 → tksheet-7.2.3}/README.md +5 -3
- {tksheet-7.2.1 → tksheet-7.2.3}/pyproject.toml +1 -1
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/__init__.py +1 -1
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/column_headers.py +247 -201
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/main_table.py +135 -116
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/row_index.py +234 -196
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/sheet.py +86 -47
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/top_left_rectangle.py +7 -2
- {tksheet-7.2.1 → tksheet-7.2.3/tksheet.egg-info}/PKG-INFO +6 -4
- {tksheet-7.2.1 → tksheet-7.2.3}/LICENSE.txt +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/setup.cfg +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/colors.py +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/formatters.py +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/functions.py +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/other_classes.py +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/sheet_options.py +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/text_editor.py +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/themes.py +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/types.py +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet/vars.py +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet.egg-info/SOURCES.txt +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet.egg-info/dependency_links.txt +0 -0
- {tksheet-7.2.1 → tksheet-7.2.3}/tksheet.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tksheet
|
3
|
-
Version: 7.2.
|
3
|
+
Version: 7.2.3
|
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
|
@@ -40,14 +40,16 @@ Requires-Python: >=3.8
|
|
40
40
|
Description-Content-Type: text/markdown
|
41
41
|
License-File: LICENSE.txt
|
42
42
|
|
43
|
-
|
43
|
+
<p align="center" width="100%">
|
44
|
+
<img width="33%" src="https://github.com/ragardner/tksheet/assets/26602401/4124c3ce-cf62-4925-9158-c5bdf712765b">
|
45
|
+
</p>
|
46
|
+
|
47
|
+
# <div align="center">tksheet - python tkinter table widget</div>
|
44
48
|
|
45
49
|
[](https://pypi.python.org/pypi/tksheet/)  [](https://github.com/ragardner/tksheet/blob/master/LICENSE.txt)
|
46
50
|
|
47
51
|
[](https://github.com/ragardner/tksheet/releases) [](https://pypi.org/project/tksheet/)
|
48
52
|
|
49
|
-
### **A python tkinter table widget**
|
50
|
-
|
51
53
|
| **Help** | |
|
52
54
|
|-------------------|------------------------------------------------------------------|
|
53
55
|
| Versions 6.x.x -> | [Documentation Wiki](https://github.com/ragardner/tksheet/wiki/Version-6) | |
|
@@ -1,11 +1,13 @@
|
|
1
|
-
|
1
|
+
<p align="center" width="100%">
|
2
|
+
<img width="33%" src="https://github.com/ragardner/tksheet/assets/26602401/4124c3ce-cf62-4925-9158-c5bdf712765b">
|
3
|
+
</p>
|
4
|
+
|
5
|
+
# <div align="center">tksheet - python tkinter table widget</div>
|
2
6
|
|
3
7
|
[](https://pypi.python.org/pypi/tksheet/)  [](https://github.com/ragardner/tksheet/blob/master/LICENSE.txt)
|
4
8
|
|
5
9
|
[](https://github.com/ragardner/tksheet/releases) [](https://pypi.org/project/tksheet/)
|
6
10
|
|
7
|
-
### **A python tkinter table widget**
|
8
|
-
|
9
11
|
| **Help** | |
|
10
12
|
|-------------------|------------------------------------------------------------------|
|
11
13
|
| Versions 6.x.x -> | [Documentation Wiki](https://github.com/ragardner/tksheet/wiki/Version-6) | |
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
6
6
|
name = "tksheet"
|
7
7
|
description = "Tkinter table / sheet widget"
|
8
8
|
readme = "README.md"
|
9
|
-
version = "7.2.
|
9
|
+
version = "7.2.3"
|
10
10
|
authors = [{ name = "ragardner", email = "github@ragardner.simplelogin.com" }]
|
11
11
|
requires-python = ">=3.8"
|
12
12
|
license = {file = "LICENSE.txt"}
|