tksheet 7.2.1__tar.gz → 7.2.2__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.
Files changed (24) hide show
  1. {tksheet-7.2.1/tksheet.egg-info → tksheet-7.2.2}/PKG-INFO +6 -4
  2. {tksheet-7.2.1 → tksheet-7.2.2}/README.md +5 -3
  3. {tksheet-7.2.1 → tksheet-7.2.2}/pyproject.toml +1 -1
  4. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/__init__.py +1 -1
  5. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/column_headers.py +247 -201
  6. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/main_table.py +70 -64
  7. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/row_index.py +234 -196
  8. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/sheet.py +79 -46
  9. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/top_left_rectangle.py +7 -2
  10. {tksheet-7.2.1 → tksheet-7.2.2/tksheet.egg-info}/PKG-INFO +6 -4
  11. {tksheet-7.2.1 → tksheet-7.2.2}/LICENSE.txt +0 -0
  12. {tksheet-7.2.1 → tksheet-7.2.2}/setup.cfg +0 -0
  13. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/colors.py +0 -0
  14. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/formatters.py +0 -0
  15. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/functions.py +0 -0
  16. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/other_classes.py +0 -0
  17. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/sheet_options.py +0 -0
  18. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/text_editor.py +0 -0
  19. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/themes.py +0 -0
  20. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/types.py +0 -0
  21. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet/vars.py +0 -0
  22. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet.egg-info/SOURCES.txt +0 -0
  23. {tksheet-7.2.1 → tksheet-7.2.2}/tksheet.egg-info/dependency_links.txt +0 -0
  24. {tksheet-7.2.1 → tksheet-7.2.2}/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.1
3
+ Version: 7.2.2
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
- # tksheet
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
  [![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.8|3.9|3.10|3.11|3.12-blue) [![License: MIT](https://img.shields.io/badge/License-MIT%20-blue.svg)](https://github.com/ragardner/tksheet/blob/master/LICENSE.txt)
46
50
 
47
51
  [![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/)
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
- # tksheet
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
  [![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.8|3.9|3.10|3.11|3.12-blue) [![License: MIT](https://img.shields.io/badge/License-MIT%20-blue.svg)](https://github.com/ragardner/tksheet/blob/master/LICENSE.txt)
4
8
 
5
9
  [![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/)
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.1"
9
+ version = "7.2.2"
10
10
  authors = [{ name = "ragardner", email = "github@ragardner.simplelogin.com" }]
11
11
  requires-python = ">=3.8"
12
12
  license = {file = "LICENSE.txt"}
@@ -4,7 +4,7 @@
4
4
  tksheet - A Python tkinter table widget
5
5
  """
6
6
 
7
- __version__ = "7.2.1"
7
+ __version__ = "7.2.2"
8
8
 
9
9
  from .colors import (
10
10
  color_map,