styledctk-widgets 0.0.1__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.
- styledctk_widgets-0.0.1/.python-version +1 -0
- styledctk_widgets-0.0.1/LICENSE +21 -0
- styledctk_widgets-0.0.1/PKG-INFO +47 -0
- styledctk_widgets-0.0.1/README.md +23 -0
- styledctk_widgets-0.0.1/pyproject.toml +68 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/CTK_Buttons/CTK_Button_styles.py +522 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/CTK_Buttons/README.md +8 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/CTK_Buttons/SCTkButton.py +101 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/CTK_Buttons/__init__.py +0 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/CTK_Entrys/CTK_Entry_styles.py +195 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/CTK_Entrys/SCTKEntry.py +0 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/CTK_Entrys/__init__.py +0 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/__about__.py +4 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/__init__.py +3 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/__main__.py +9 -0
- styledctk_widgets-0.0.1/src/styledctk_widgets/cli/__init__.py +35 -0
- styledctk_widgets-0.0.1/tests/__init__.py +3 -0
- styledctk_widgets-0.0.1/uv.lock +151 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.10
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 ArthurDEKA
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: styledctk-widgets
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Project-URL: Documentation, https://github.com/DigitalCreationsLibrary/styledctk_widgetse#readme
|
|
5
|
+
Project-URL: Issues, https://github.com/DigitalCreationsLibrary/styledctk-widgets/issues
|
|
6
|
+
Project-URL: Source, https://github.com/DigitalCreationsLibrary/styledctk-widgets
|
|
7
|
+
Author-email: DigitalCreationsLibrary <aimosta.official@gmail.com>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Programming Language :: Python
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
18
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Requires-Dist: click
|
|
21
|
+
Requires-Dist: customtkinter>=5.2.2
|
|
22
|
+
Requires-Dist: requests>=2.32.3
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# proj-template
|
|
26
|
+
|
|
27
|
+
[](https://pypi.org/project/pstyledctk-widgets)
|
|
28
|
+
[](https://pypi.org/project/styledctk-widgets)
|
|
29
|
+
|
|
30
|
+
-----
|
|
31
|
+
|
|
32
|
+
## Table of Contents
|
|
33
|
+
|
|
34
|
+
- [proj-template](#proj-template)
|
|
35
|
+
- [Table of Contents](#table-of-contents)
|
|
36
|
+
- [Installation](#installation)
|
|
37
|
+
- [License](#license)
|
|
38
|
+
|
|
39
|
+
## Installation
|
|
40
|
+
|
|
41
|
+
```console
|
|
42
|
+
pip install styledctk-widgets
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## License
|
|
46
|
+
|
|
47
|
+
`styledctk-widgets` is distributed under the terms of the following [License](License) license.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# proj-template
|
|
2
|
+
|
|
3
|
+
[](https://pypi.org/project/pstyledctk-widgets)
|
|
4
|
+
[](https://pypi.org/project/styledctk-widgets)
|
|
5
|
+
|
|
6
|
+
-----
|
|
7
|
+
|
|
8
|
+
## Table of Contents
|
|
9
|
+
|
|
10
|
+
- [proj-template](#proj-template)
|
|
11
|
+
- [Table of Contents](#table-of-contents)
|
|
12
|
+
- [Installation](#installation)
|
|
13
|
+
- [License](#license)
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
```console
|
|
18
|
+
pip install styledctk-widgets
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
`styledctk-widgets` is distributed under the terms of the following [License](License) license.
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "styledctk-widgets"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = ''
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
keywords = []
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "DigitalCreationsLibrary", email = "aimosta.official@gmail.com" },
|
|
15
|
+
]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Programming Language :: Python",
|
|
19
|
+
"Programming Language :: Python :: 3.8",
|
|
20
|
+
"Programming Language :: Python :: 3.9",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
25
|
+
"Programming Language :: Python :: Implementation :: PyPy",
|
|
26
|
+
]
|
|
27
|
+
dependencies = [
|
|
28
|
+
"click",
|
|
29
|
+
"customtkinter>=5.2.2",
|
|
30
|
+
"requests>=2.32.3",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[project.urls]
|
|
34
|
+
Documentation = "https://github.com/DigitalCreationsLibrary/styledctk_widgetse#readme"
|
|
35
|
+
Issues = "https://github.com/DigitalCreationsLibrary/styledctk-widgets/issues"
|
|
36
|
+
Source = "https://github.com/DigitalCreationsLibrary/styledctk-widgets"
|
|
37
|
+
|
|
38
|
+
[project.scripts]
|
|
39
|
+
styledctk-widgets = "styledctk_widgets.cli:styledctk_widgets"
|
|
40
|
+
|
|
41
|
+
[tool.hatch.version]
|
|
42
|
+
path = "src/styledctk_widgets/__about__.py"
|
|
43
|
+
|
|
44
|
+
[tool.hatch.envs.types]
|
|
45
|
+
extra-dependencies = [
|
|
46
|
+
"mypy>=1.0.0",
|
|
47
|
+
]
|
|
48
|
+
[tool.hatch.envs.types.scripts]
|
|
49
|
+
check = "mypy --install-types --non-interactive {args:src/styledctk_widgets tests}"
|
|
50
|
+
|
|
51
|
+
[tool.coverage.run]
|
|
52
|
+
source_pkgs = ["styledctk_widgets", "tests"]
|
|
53
|
+
branch = true
|
|
54
|
+
parallel = true
|
|
55
|
+
omit = [
|
|
56
|
+
"src/styledctk_widgets/__about__.py",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[tool.coverage.paths]
|
|
60
|
+
styledctk_widgets = ["src/styledctk_widgets", "*/styledctk-widgets/src/styledctk_widgets"]
|
|
61
|
+
tests = ["tests", "*/styledctk-widgets/tests"]
|
|
62
|
+
|
|
63
|
+
[tool.coverage.report]
|
|
64
|
+
exclude_lines = [
|
|
65
|
+
"no cov",
|
|
66
|
+
"if __name__ == .__main__.:",
|
|
67
|
+
"if TYPE_CHECKING:",
|
|
68
|
+
]
|
|
@@ -0,0 +1,522 @@
|
|
|
1
|
+
#libraries import
|
|
2
|
+
from tkinter import *
|
|
3
|
+
import customtkinter
|
|
4
|
+
|
|
5
|
+
#command function
|
|
6
|
+
def Click():
|
|
7
|
+
pass
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def main():
|
|
11
|
+
|
|
12
|
+
#Main Window properties
|
|
13
|
+
window = Tk()
|
|
14
|
+
window.title("ButtonsTemplates")
|
|
15
|
+
window.geometry("1030x300")
|
|
16
|
+
window.configure(bg="#262626")
|
|
17
|
+
|
|
18
|
+
#font definition
|
|
19
|
+
main_font = customtkinter.CTkFont(family="Helvetica", size=12)
|
|
20
|
+
|
|
21
|
+
#Creating the buttons
|
|
22
|
+
#STYLE ONE BUTTONS (FIRST ROW)
|
|
23
|
+
#===============================================================================
|
|
24
|
+
Button_StyleOne_1 = customtkinter.CTkButton(
|
|
25
|
+
master= window,
|
|
26
|
+
command= Click,
|
|
27
|
+
text= "Click Me",
|
|
28
|
+
font= main_font,
|
|
29
|
+
text_color="#363636",
|
|
30
|
+
hover= True,
|
|
31
|
+
hover_color= "#f2f2f2",
|
|
32
|
+
height=40,
|
|
33
|
+
width= 120,
|
|
34
|
+
border_width=2,
|
|
35
|
+
corner_radius=5,
|
|
36
|
+
border_color= "#d3d3d3",
|
|
37
|
+
bg_color="#262626",
|
|
38
|
+
fg_color= "#fafafa")
|
|
39
|
+
|
|
40
|
+
Button_StyleOne_2 = customtkinter.CTkButton(
|
|
41
|
+
master= window,
|
|
42
|
+
command= Click,
|
|
43
|
+
text= "Click Me",
|
|
44
|
+
font= main_font,
|
|
45
|
+
text_color="white",
|
|
46
|
+
hover= True,
|
|
47
|
+
hover_color= "#3f98d7",
|
|
48
|
+
height=40,
|
|
49
|
+
width= 120,
|
|
50
|
+
border_width=2,
|
|
51
|
+
corner_radius=5,
|
|
52
|
+
border_color= "#2d6f9e",
|
|
53
|
+
bg_color="#262626",
|
|
54
|
+
fg_color= "#3b8cc6")
|
|
55
|
+
|
|
56
|
+
Button_StyleOne_3 = customtkinter.CTkButton(
|
|
57
|
+
master= window,
|
|
58
|
+
command= Click,
|
|
59
|
+
text= "Click Me",
|
|
60
|
+
font= main_font,
|
|
61
|
+
text_color= "white",
|
|
62
|
+
hover= True,
|
|
63
|
+
hover_color= "#6fb9d5",
|
|
64
|
+
height=40,
|
|
65
|
+
width= 120,
|
|
66
|
+
border_width=2,
|
|
67
|
+
corner_radius=5,
|
|
68
|
+
border_color= "#528aa0",
|
|
69
|
+
bg_color="#262626",
|
|
70
|
+
fg_color= "#68aec9")
|
|
71
|
+
|
|
72
|
+
Button_StyleOne_4 = customtkinter.CTkButton(
|
|
73
|
+
master= window,
|
|
74
|
+
command= Click,
|
|
75
|
+
text= "Click Me",
|
|
76
|
+
font= main_font,
|
|
77
|
+
text_color="white",
|
|
78
|
+
hover= True,
|
|
79
|
+
hover_color= "#81b867",
|
|
80
|
+
height=40,
|
|
81
|
+
width= 120,
|
|
82
|
+
border_width=2,
|
|
83
|
+
corner_radius=5,
|
|
84
|
+
border_color= "#608a4d",
|
|
85
|
+
bg_color="#262626",
|
|
86
|
+
fg_color= "#79ae61")
|
|
87
|
+
|
|
88
|
+
Button_StyleOne_5 = customtkinter.CTkButton(
|
|
89
|
+
master= window,
|
|
90
|
+
command= Click,
|
|
91
|
+
text= "Click Me",
|
|
92
|
+
font= main_font,
|
|
93
|
+
text_color="white",
|
|
94
|
+
hover= True,
|
|
95
|
+
hover_color= "#ffb557",
|
|
96
|
+
height=40,
|
|
97
|
+
width= 120,
|
|
98
|
+
border_width=2,
|
|
99
|
+
corner_radius=5,
|
|
100
|
+
border_color= "#bc863f",
|
|
101
|
+
bg_color="#262626",
|
|
102
|
+
fg_color= "#eda850")
|
|
103
|
+
|
|
104
|
+
Button_StyleOne_6 = customtkinter.CTkButton(
|
|
105
|
+
master= window,
|
|
106
|
+
command= Click,
|
|
107
|
+
text= "Click Me",
|
|
108
|
+
font= main_font,
|
|
109
|
+
text_color="white",
|
|
110
|
+
hover= True,
|
|
111
|
+
hover_color= "#e06a61",
|
|
112
|
+
height=40,
|
|
113
|
+
width= 120,
|
|
114
|
+
border_width=2,
|
|
115
|
+
corner_radius=5,
|
|
116
|
+
border_color= "#9e4a43",
|
|
117
|
+
bg_color="#262626",
|
|
118
|
+
fg_color= "#c75d55")
|
|
119
|
+
|
|
120
|
+
Button_StyleOne_7 = customtkinter.CTkButton(
|
|
121
|
+
master= window,
|
|
122
|
+
command= Click,
|
|
123
|
+
text= "Click Me",
|
|
124
|
+
font= main_font,
|
|
125
|
+
text_color="white",
|
|
126
|
+
hover= True,
|
|
127
|
+
hover_color= "#454545",
|
|
128
|
+
height=40,
|
|
129
|
+
width= 120,
|
|
130
|
+
border_width=2,
|
|
131
|
+
corner_radius=5,
|
|
132
|
+
border_color= "#161616",
|
|
133
|
+
bg_color="#262626",
|
|
134
|
+
fg_color= "#363636")
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
#STYLE TWO BUTTONS (SECOND ROW)
|
|
138
|
+
#===============================================================================
|
|
139
|
+
Button_StyleTwo_1 = customtkinter.CTkButton(
|
|
140
|
+
master= window,
|
|
141
|
+
command= Click,
|
|
142
|
+
text= "Click Me",
|
|
143
|
+
font= main_font,
|
|
144
|
+
text_color="white",
|
|
145
|
+
hover= True,
|
|
146
|
+
hover_color= "black",
|
|
147
|
+
height=40,
|
|
148
|
+
width= 120,
|
|
149
|
+
border_width=2,
|
|
150
|
+
corner_radius=3,
|
|
151
|
+
border_color= "#d3d3d3",
|
|
152
|
+
bg_color="#262626",
|
|
153
|
+
fg_color= "#262626")
|
|
154
|
+
|
|
155
|
+
Button_StyleTwo_2 = customtkinter.CTkButton(
|
|
156
|
+
master= window,
|
|
157
|
+
command= Click,
|
|
158
|
+
text= "Click Me",
|
|
159
|
+
font= main_font,
|
|
160
|
+
text_color="#3b8cc6",
|
|
161
|
+
hover= True,
|
|
162
|
+
hover_color= "black",
|
|
163
|
+
height=40,
|
|
164
|
+
width= 120,
|
|
165
|
+
border_width=2,
|
|
166
|
+
corner_radius=3,
|
|
167
|
+
border_color= "#3b8cc6",
|
|
168
|
+
bg_color="#262626",
|
|
169
|
+
fg_color= "#262626")
|
|
170
|
+
|
|
171
|
+
Button_StyleTwo_3 = customtkinter.CTkButton(
|
|
172
|
+
master= window,
|
|
173
|
+
command= Click,
|
|
174
|
+
text= "Click Me",
|
|
175
|
+
font= main_font,
|
|
176
|
+
text_color="#68aec9",
|
|
177
|
+
hover= True,
|
|
178
|
+
hover_color= "black",
|
|
179
|
+
height=40,
|
|
180
|
+
width= 120,
|
|
181
|
+
border_width=2,
|
|
182
|
+
corner_radius=3,
|
|
183
|
+
border_color= "#68aec9",
|
|
184
|
+
bg_color="#262626",
|
|
185
|
+
fg_color= "#262626")
|
|
186
|
+
|
|
187
|
+
Button_StyleTwo_4 = customtkinter.CTkButton(
|
|
188
|
+
master= window,
|
|
189
|
+
command= Click,
|
|
190
|
+
text= "Click Me",
|
|
191
|
+
font= main_font,
|
|
192
|
+
text_color="#79ae61",
|
|
193
|
+
hover= True,
|
|
194
|
+
hover_color= "black",
|
|
195
|
+
height=40,
|
|
196
|
+
width= 120,
|
|
197
|
+
border_width=2,
|
|
198
|
+
corner_radius=3,
|
|
199
|
+
border_color= "#79ae61",
|
|
200
|
+
bg_color="#262626",
|
|
201
|
+
fg_color= "#262626")
|
|
202
|
+
|
|
203
|
+
Button_StyleTwo_5 = customtkinter.CTkButton(
|
|
204
|
+
master= window,
|
|
205
|
+
command= Click,
|
|
206
|
+
text= "Click Me",
|
|
207
|
+
font= main_font,
|
|
208
|
+
text_color="#eda850",
|
|
209
|
+
hover= True,
|
|
210
|
+
hover_color= "black",
|
|
211
|
+
height=40,
|
|
212
|
+
width= 120,
|
|
213
|
+
border_width=2,
|
|
214
|
+
corner_radius=3,
|
|
215
|
+
border_color= "#eda850",
|
|
216
|
+
bg_color="#262626",
|
|
217
|
+
fg_color= "#262626")
|
|
218
|
+
|
|
219
|
+
Button_StyleTwo_6 = customtkinter.CTkButton(
|
|
220
|
+
master= window,
|
|
221
|
+
command= Click,
|
|
222
|
+
text= "Click Me",
|
|
223
|
+
font= main_font,
|
|
224
|
+
text_color="#c75d55",
|
|
225
|
+
hover= True,
|
|
226
|
+
hover_color= "black",
|
|
227
|
+
height=40,
|
|
228
|
+
width= 120,
|
|
229
|
+
border_width=2,
|
|
230
|
+
corner_radius=3,
|
|
231
|
+
border_color= "#c75d55",
|
|
232
|
+
bg_color="#262626",
|
|
233
|
+
fg_color= "#262626")
|
|
234
|
+
|
|
235
|
+
Button_StyleTwo_7 = customtkinter.CTkButton(
|
|
236
|
+
master= window,
|
|
237
|
+
command= Click,
|
|
238
|
+
text= "Click Me",
|
|
239
|
+
font= main_font,
|
|
240
|
+
text_color="white",
|
|
241
|
+
hover= True,
|
|
242
|
+
hover_color= "black",
|
|
243
|
+
height=40,
|
|
244
|
+
width= 120,
|
|
245
|
+
border_width=2,
|
|
246
|
+
corner_radius=3,
|
|
247
|
+
border_color= "black",
|
|
248
|
+
bg_color="#262626",
|
|
249
|
+
fg_color= "#262626")
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
#STYLE THREE BUTTONS (THIRD ROW)
|
|
253
|
+
#===============================================================================
|
|
254
|
+
Button_StyleThree_1 = customtkinter.CTkButton(
|
|
255
|
+
master= window,
|
|
256
|
+
command= Click,
|
|
257
|
+
text= "Click Me",
|
|
258
|
+
font= main_font,
|
|
259
|
+
text_color="white",
|
|
260
|
+
hover= True,
|
|
261
|
+
hover_color= "black",
|
|
262
|
+
height=40,
|
|
263
|
+
width= 120,
|
|
264
|
+
border_width=2,
|
|
265
|
+
corner_radius=20,
|
|
266
|
+
border_color= "#d3d3d3",
|
|
267
|
+
bg_color="#262626",
|
|
268
|
+
fg_color= "#262626")
|
|
269
|
+
|
|
270
|
+
Button_StyleThree_2 = customtkinter.CTkButton(
|
|
271
|
+
master= window,
|
|
272
|
+
command= Click,
|
|
273
|
+
text= "Click Me",
|
|
274
|
+
font= main_font,
|
|
275
|
+
text_color="#3b8cc6",
|
|
276
|
+
hover= True,
|
|
277
|
+
hover_color= "black",
|
|
278
|
+
height=40,
|
|
279
|
+
width= 120,
|
|
280
|
+
border_width=2,
|
|
281
|
+
corner_radius=20,
|
|
282
|
+
border_color= "#3b8cc6",
|
|
283
|
+
bg_color="#262626",
|
|
284
|
+
fg_color= "#262626")
|
|
285
|
+
|
|
286
|
+
Button_StyleThree_3 = customtkinter.CTkButton(
|
|
287
|
+
master= window,
|
|
288
|
+
command= Click,
|
|
289
|
+
text= "Click Me",
|
|
290
|
+
font= main_font,
|
|
291
|
+
text_color="#68aec9",
|
|
292
|
+
hover= True,
|
|
293
|
+
hover_color= "black",
|
|
294
|
+
height=40,
|
|
295
|
+
width= 120,
|
|
296
|
+
border_width=2,
|
|
297
|
+
corner_radius=20,
|
|
298
|
+
border_color= "#68aec9",
|
|
299
|
+
bg_color="#262626",
|
|
300
|
+
fg_color= "#262626")
|
|
301
|
+
|
|
302
|
+
Button_StyleThree_4 = customtkinter.CTkButton(
|
|
303
|
+
master= window,
|
|
304
|
+
command= Click,
|
|
305
|
+
text= "Click Me",
|
|
306
|
+
font= main_font,
|
|
307
|
+
text_color="#79ae61",
|
|
308
|
+
hover= True,
|
|
309
|
+
hover_color= "black",
|
|
310
|
+
height=40,
|
|
311
|
+
width= 120,
|
|
312
|
+
border_width=2,
|
|
313
|
+
corner_radius=20,
|
|
314
|
+
border_color= "#79ae61",
|
|
315
|
+
bg_color="#262626",
|
|
316
|
+
fg_color= "#262626")
|
|
317
|
+
|
|
318
|
+
Button_StyleThree_5 = customtkinter.CTkButton(
|
|
319
|
+
master= window,
|
|
320
|
+
command= Click,
|
|
321
|
+
text= "Click Me",
|
|
322
|
+
font= main_font,
|
|
323
|
+
text_color="#eda850",
|
|
324
|
+
hover= True,
|
|
325
|
+
hover_color= "black",
|
|
326
|
+
height=40,
|
|
327
|
+
width= 120,
|
|
328
|
+
border_width=2,
|
|
329
|
+
corner_radius=20,
|
|
330
|
+
border_color= "#eda850",
|
|
331
|
+
bg_color="#262626",
|
|
332
|
+
fg_color= "#262626")
|
|
333
|
+
|
|
334
|
+
Button_StyleThree_6 = customtkinter.CTkButton(
|
|
335
|
+
master= window,
|
|
336
|
+
command= Click,
|
|
337
|
+
text= "Click Me",
|
|
338
|
+
font= main_font,
|
|
339
|
+
text_color="#c75d55",
|
|
340
|
+
hover= True,
|
|
341
|
+
hover_color= "black",
|
|
342
|
+
height=40,
|
|
343
|
+
width= 120,
|
|
344
|
+
border_width=2,
|
|
345
|
+
corner_radius=20,
|
|
346
|
+
border_color= "#c75d55",
|
|
347
|
+
bg_color="#262626",
|
|
348
|
+
fg_color= "#262626")
|
|
349
|
+
|
|
350
|
+
Button_StyleThree_7 = customtkinter.CTkButton(
|
|
351
|
+
master= window,
|
|
352
|
+
command= Click,
|
|
353
|
+
text= "Click Me",
|
|
354
|
+
font= main_font,
|
|
355
|
+
text_color="white",
|
|
356
|
+
hover= True,
|
|
357
|
+
hover_color= "black",
|
|
358
|
+
height=40,
|
|
359
|
+
width= 120,
|
|
360
|
+
border_width=2,
|
|
361
|
+
corner_radius=20,
|
|
362
|
+
border_color= "black",
|
|
363
|
+
bg_color="#262626",
|
|
364
|
+
fg_color= "#262626")
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
#STYLE FOUR BUTTONS (FOUTH ROW)
|
|
368
|
+
#===============================================================================
|
|
369
|
+
Button_StyleFour_1 = customtkinter.CTkButton(
|
|
370
|
+
master= window,
|
|
371
|
+
command= Click,
|
|
372
|
+
text= "Click Me",
|
|
373
|
+
font= main_font,
|
|
374
|
+
text_color="#363636",
|
|
375
|
+
hover= True,
|
|
376
|
+
hover_color= "#f2f2f2",
|
|
377
|
+
height=40,
|
|
378
|
+
width= 120,
|
|
379
|
+
border_width=2,
|
|
380
|
+
corner_radius=20,
|
|
381
|
+
border_color= "#d3d3d3",
|
|
382
|
+
bg_color="#262626",
|
|
383
|
+
fg_color= "#fafafa")
|
|
384
|
+
|
|
385
|
+
Button_StyleFour_2 = customtkinter.CTkButton(
|
|
386
|
+
master= window,
|
|
387
|
+
command= Click,
|
|
388
|
+
text= "Click Me",
|
|
389
|
+
font= main_font,
|
|
390
|
+
text_color="white",
|
|
391
|
+
hover= True,
|
|
392
|
+
hover_color= "#3f98d7",
|
|
393
|
+
height=40,
|
|
394
|
+
width= 120,
|
|
395
|
+
border_width=2,
|
|
396
|
+
corner_radius=20,
|
|
397
|
+
border_color= "#2d6f9e",
|
|
398
|
+
bg_color="#262626",
|
|
399
|
+
fg_color= "#3b8cc6")
|
|
400
|
+
|
|
401
|
+
Button_StyleFour_3 = customtkinter.CTkButton(
|
|
402
|
+
master= window,
|
|
403
|
+
command= Click,
|
|
404
|
+
text= "Click Me",
|
|
405
|
+
font= main_font,
|
|
406
|
+
text_color= "white",
|
|
407
|
+
hover= True,
|
|
408
|
+
hover_color= "#6fb9d5",
|
|
409
|
+
height=40,
|
|
410
|
+
width= 120,
|
|
411
|
+
border_width=2,
|
|
412
|
+
corner_radius=20,
|
|
413
|
+
border_color= "#528aa0",
|
|
414
|
+
bg_color="#262626",
|
|
415
|
+
fg_color= "#68aec9")
|
|
416
|
+
|
|
417
|
+
Button_StyleFour_4 = customtkinter.CTkButton(
|
|
418
|
+
master= window,
|
|
419
|
+
command= Click,
|
|
420
|
+
text= "Click Me",
|
|
421
|
+
font= main_font,
|
|
422
|
+
text_color="white",
|
|
423
|
+
hover= True,
|
|
424
|
+
hover_color= "#81b867",
|
|
425
|
+
height=40,
|
|
426
|
+
width= 120,
|
|
427
|
+
border_width=2,
|
|
428
|
+
corner_radius=20,
|
|
429
|
+
border_color= "#608a4d",
|
|
430
|
+
bg_color="#262626",
|
|
431
|
+
fg_color= "#79ae61")
|
|
432
|
+
|
|
433
|
+
Button_StyleFour_5 = customtkinter.CTkButton(
|
|
434
|
+
master= window,
|
|
435
|
+
command= Click,
|
|
436
|
+
text= "Click Me",
|
|
437
|
+
font= main_font,
|
|
438
|
+
text_color="white",
|
|
439
|
+
hover= True,
|
|
440
|
+
hover_color= "#ffb557",
|
|
441
|
+
height=40,
|
|
442
|
+
width= 120,
|
|
443
|
+
border_width=2,
|
|
444
|
+
corner_radius=20,
|
|
445
|
+
border_color= "#bc863f",
|
|
446
|
+
bg_color="#262626",
|
|
447
|
+
fg_color= "#eda850")
|
|
448
|
+
|
|
449
|
+
Button_StyleFour_6 = customtkinter.CTkButton(
|
|
450
|
+
master= window,
|
|
451
|
+
command= Click,
|
|
452
|
+
text= "Click Me",
|
|
453
|
+
font= main_font,
|
|
454
|
+
text_color="white",
|
|
455
|
+
hover= True,
|
|
456
|
+
hover_color= "#e06a61",
|
|
457
|
+
height=40,
|
|
458
|
+
width= 120,
|
|
459
|
+
border_width=2,
|
|
460
|
+
corner_radius=20,
|
|
461
|
+
border_color= "#9e4a43",
|
|
462
|
+
bg_color="#262626",
|
|
463
|
+
fg_color= "#c75d55")
|
|
464
|
+
|
|
465
|
+
Button_StyleFour_7 = customtkinter.CTkButton(
|
|
466
|
+
master= window,
|
|
467
|
+
command= Click,
|
|
468
|
+
text= "Click Me",
|
|
469
|
+
font= main_font,
|
|
470
|
+
text_color="white",
|
|
471
|
+
hover= True,
|
|
472
|
+
hover_color= "#454545",
|
|
473
|
+
height=40,
|
|
474
|
+
width= 120,
|
|
475
|
+
border_width=2,
|
|
476
|
+
corner_radius=20,
|
|
477
|
+
border_color= "#161616",
|
|
478
|
+
bg_color="#262626",
|
|
479
|
+
fg_color= "#363636")
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
#placing the buttons
|
|
483
|
+
#===================================================================
|
|
484
|
+
#FIRST ROW
|
|
485
|
+
Button_StyleOne_1.place(x= 15, y= 15)
|
|
486
|
+
Button_StyleOne_2.place(x= 160, y= 15)
|
|
487
|
+
Button_StyleOne_3.place(x= 305, y= 15)
|
|
488
|
+
Button_StyleOne_4.place(x= 450, y= 15)
|
|
489
|
+
Button_StyleOne_5.place(x= 595, y= 15)
|
|
490
|
+
Button_StyleOne_6.place(x= 740, y= 15)
|
|
491
|
+
Button_StyleOne_7.place(x= 885, y= 15)
|
|
492
|
+
#SECOND ROW
|
|
493
|
+
Button_StyleTwo_1.place(x= 15, y= 90)
|
|
494
|
+
Button_StyleTwo_2.place(x= 160, y= 90)
|
|
495
|
+
Button_StyleTwo_3.place(x= 305, y= 90)
|
|
496
|
+
Button_StyleTwo_4.place(x= 450, y= 90)
|
|
497
|
+
Button_StyleTwo_5.place(x= 595, y= 90)
|
|
498
|
+
Button_StyleTwo_6.place(x= 740, y= 90)
|
|
499
|
+
Button_StyleTwo_7.place(x= 885, y= 90)
|
|
500
|
+
#THIRD ROW
|
|
501
|
+
Button_StyleThree_1.place(x= 15, y= 165)
|
|
502
|
+
Button_StyleThree_2.place(x= 160, y= 165)
|
|
503
|
+
Button_StyleThree_3.place(x= 305, y= 165)
|
|
504
|
+
Button_StyleThree_4.place(x= 450, y= 165)
|
|
505
|
+
Button_StyleThree_5.place(x= 595, y= 165)
|
|
506
|
+
Button_StyleThree_6.place(x= 740, y= 165)
|
|
507
|
+
Button_StyleThree_7.place(x= 885, y= 165)
|
|
508
|
+
#FOUTH ROW
|
|
509
|
+
Button_StyleFour_1.place(x= 15, y= 240)
|
|
510
|
+
Button_StyleFour_2.place(x= 160, y= 240)
|
|
511
|
+
Button_StyleFour_3.place(x= 305, y= 240)
|
|
512
|
+
Button_StyleFour_4.place(x= 450, y= 240)
|
|
513
|
+
Button_StyleFour_5.place(x= 595, y= 240)
|
|
514
|
+
Button_StyleFour_6.place(x= 740, y= 240)
|
|
515
|
+
Button_StyleFour_7.place(x= 885, y= 240)
|
|
516
|
+
|
|
517
|
+
#run the main loop
|
|
518
|
+
|
|
519
|
+
window.mainloop()
|
|
520
|
+
|
|
521
|
+
if __name__ == "__main__":
|
|
522
|
+
main()
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# CTK_Buttons Templates
|
|
2
|
+
|
|
3
|
+
These are the .py archives of this folder and theirs buttons, respectively:
|
|
4
|
+
|
|
5
|
+
___
|
|
6
|
+
* CTK_Buttons_templates_4_styles.py
|
|
7
|
+
|
|
8
|
+

|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import customtkinter as CTK
|
|
2
|
+
|
|
3
|
+
class SCTkButton(CTK.CTkButton):
|
|
4
|
+
def __init__(self, master=None,theme=0,style=0, **kwargs):
|
|
5
|
+
super().__init__(master, **kwargs)
|
|
6
|
+
self.style=style
|
|
7
|
+
self.theme=theme
|
|
8
|
+
self.common_setup()
|
|
9
|
+
self.customize_widget()
|
|
10
|
+
|
|
11
|
+
def common_setup(self):
|
|
12
|
+
match self.theme:
|
|
13
|
+
case 0:
|
|
14
|
+
self. common_setup_t0()
|
|
15
|
+
case 1:
|
|
16
|
+
self. common_setup_t1()
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def common_setup_t0(self):
|
|
20
|
+
main_font = CTK.CTkFont(family="Helvetica", size=12)
|
|
21
|
+
self.configure(hover=True, font=main_font,height=40, width=120, border_width=2, corner_radius=5,bg_color="#262626", text="Button Theme "+ str(self.theme)+" st"+str(self.style))
|
|
22
|
+
|
|
23
|
+
def common_setup_t1(self):
|
|
24
|
+
main_font = CTK.CTkFont(family="Helvetica", size=12)
|
|
25
|
+
self.configure(hover=True, font=main_font, hover_color= "black", bg_color="#262626",
|
|
26
|
+
fg_color= "#262626",height=40,width= 120,border_width=2,corner_radius=3,text="Button Theme "+ str(self.theme)+" st"+str(self.style))
|
|
27
|
+
|
|
28
|
+
def customize_widget(self):
|
|
29
|
+
match self.theme:
|
|
30
|
+
case 0:
|
|
31
|
+
self.customize_widget_t0()
|
|
32
|
+
case 1:
|
|
33
|
+
self.customize_widget_t1()
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def customize_widget_t0(self):
|
|
37
|
+
if self.style == 0:
|
|
38
|
+
self.configure(text_color="#363636")
|
|
39
|
+
else:
|
|
40
|
+
self.configure(text_color="white" )
|
|
41
|
+
|
|
42
|
+
match self.style:
|
|
43
|
+
case 0:
|
|
44
|
+
self.configure(hover_color= "#f2f2f2",border_color= "#d3d3d3", fg_color= "#fafafa")
|
|
45
|
+
case 1:
|
|
46
|
+
self.configure( hover_color= "#050505", border_color= "#2d6f9e",fg_color= "#3b8cc6")
|
|
47
|
+
case 2:
|
|
48
|
+
self.configure( hover_color= "#6fb9d5",border_color= "#528aa0",fg_color= "#68aec9")
|
|
49
|
+
case 3:
|
|
50
|
+
self.configure(hover_color= "#81b867",border_color= "#608a4d",fg_color= "#79ae61")
|
|
51
|
+
|
|
52
|
+
case 4:
|
|
53
|
+
self.configure(hover_color= "#ffb557",border_color= "#bc863f",fg_color= "#eda850")
|
|
54
|
+
|
|
55
|
+
case 5:
|
|
56
|
+
self.configure(hover_color= "#e06a61", border_color= "#9e4a43",fg_color= "#c75d55")
|
|
57
|
+
|
|
58
|
+
case 6:
|
|
59
|
+
self.configure(hover_color= "#454545",border_color= "#161616", fg_color= "#363636")
|
|
60
|
+
|
|
61
|
+
def customize_widget_t1(self):
|
|
62
|
+
|
|
63
|
+
match self.style:
|
|
64
|
+
case 0:
|
|
65
|
+
self.configure(text_color="white",border_color= "#d3d3d3",)
|
|
66
|
+
case 1:
|
|
67
|
+
self.configure( text_color="#3b8cc6",border_color= "#3b8cc6", )
|
|
68
|
+
case 2:
|
|
69
|
+
self.configure( text_color="#68aec9",border_color= "#68aec9", )
|
|
70
|
+
case 3:
|
|
71
|
+
self.configure(text_color="#79ae61",border_color= "#79ae61", )
|
|
72
|
+
|
|
73
|
+
case 4:
|
|
74
|
+
self.configure(text_color="#eda850",border_color= "#eda850", )
|
|
75
|
+
|
|
76
|
+
case 5:
|
|
77
|
+
self.configure(text_color="#c75d55",border_color= "#c75d55", )
|
|
78
|
+
|
|
79
|
+
case 6:
|
|
80
|
+
self.configure(text_color="white",border_color= "black", )
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
def main():
|
|
85
|
+
main_window = CTK.CTk()
|
|
86
|
+
main_window.title("ButtonsTemplates")
|
|
87
|
+
main_window.geometry("980x160+200+50")
|
|
88
|
+
main_window.configure(bg="#262626")
|
|
89
|
+
buttons=[[]]
|
|
90
|
+
|
|
91
|
+
for i in range(2):
|
|
92
|
+
for j in range(7):
|
|
93
|
+
button = SCTkButton(main_window,theme=i, style=j)
|
|
94
|
+
button.grid(row=i, column=j, padx=10, pady=20)
|
|
95
|
+
buttons[i].append(button)
|
|
96
|
+
buttons.append([])
|
|
97
|
+
main_window.mainloop()
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
if __name__ == "__main__":
|
|
101
|
+
main()
|
|
File without changes
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
#custom buttons templates
|
|
2
|
+
from tkinter import *
|
|
3
|
+
import customtkinter
|
|
4
|
+
|
|
5
|
+
#command function
|
|
6
|
+
def Click():
|
|
7
|
+
pass
|
|
8
|
+
|
|
9
|
+
def main():
|
|
10
|
+
#Main Window properties
|
|
11
|
+
window = Tk()
|
|
12
|
+
window.title("EntrysTemplates")
|
|
13
|
+
window.geometry("280x515")
|
|
14
|
+
window.configure(bg="#262626")
|
|
15
|
+
|
|
16
|
+
#font definition
|
|
17
|
+
main_font = customtkinter.CTkFont(family="Helvetica", size=12)
|
|
18
|
+
|
|
19
|
+
#Creating the entrys
|
|
20
|
+
#style 1
|
|
21
|
+
entry_1 = customtkinter.CTkEntry(master=window,
|
|
22
|
+
placeholder_text="CTkEntry",
|
|
23
|
+
placeholder_text_color="#cccccc",
|
|
24
|
+
|
|
25
|
+
font= main_font,
|
|
26
|
+
text_color="white",
|
|
27
|
+
|
|
28
|
+
width=220,
|
|
29
|
+
height=30,
|
|
30
|
+
border_width=2,
|
|
31
|
+
border_color= "#d3d3d3",
|
|
32
|
+
bg_color="#262626",
|
|
33
|
+
fg_color= "#262626",
|
|
34
|
+
|
|
35
|
+
corner_radius=5)
|
|
36
|
+
entry_2 = customtkinter.CTkEntry(master=window,
|
|
37
|
+
placeholder_text="CTkEntry",
|
|
38
|
+
placeholder_text_color="#3b8cc6",
|
|
39
|
+
|
|
40
|
+
font= main_font,
|
|
41
|
+
text_color="#3b8cc6",
|
|
42
|
+
|
|
43
|
+
width=220,
|
|
44
|
+
height=30,
|
|
45
|
+
border_width=2,
|
|
46
|
+
border_color= "#3b8cc6",
|
|
47
|
+
bg_color="#262626",
|
|
48
|
+
fg_color= "#262626",
|
|
49
|
+
|
|
50
|
+
corner_radius=5)
|
|
51
|
+
entry_3 = customtkinter.CTkEntry(master=window,
|
|
52
|
+
placeholder_text="CTkEntry",
|
|
53
|
+
placeholder_text_color="#79ae61",
|
|
54
|
+
|
|
55
|
+
font= main_font,
|
|
56
|
+
text_color="#79ae61",
|
|
57
|
+
|
|
58
|
+
width=220,
|
|
59
|
+
height=30,
|
|
60
|
+
border_width=2,
|
|
61
|
+
border_color= "#79ae61",
|
|
62
|
+
bg_color="#262626",
|
|
63
|
+
fg_color= "#262626",
|
|
64
|
+
|
|
65
|
+
corner_radius=5)
|
|
66
|
+
entry_4 = customtkinter.CTkEntry(master=window,
|
|
67
|
+
placeholder_text="CTkEntry",
|
|
68
|
+
placeholder_text_color="#eda850",
|
|
69
|
+
|
|
70
|
+
font= main_font,
|
|
71
|
+
text_color="#eda850",
|
|
72
|
+
|
|
73
|
+
width=220,
|
|
74
|
+
height=30,
|
|
75
|
+
border_width=2,
|
|
76
|
+
border_color= "#eda850",
|
|
77
|
+
bg_color="#262626",
|
|
78
|
+
fg_color= "#262626",
|
|
79
|
+
|
|
80
|
+
corner_radius=5)
|
|
81
|
+
entry_5 = customtkinter.CTkEntry(master=window,
|
|
82
|
+
placeholder_text="CTkEntry",
|
|
83
|
+
placeholder_text_color="#c75d55",
|
|
84
|
+
|
|
85
|
+
font= main_font,
|
|
86
|
+
text_color="#c75d55",
|
|
87
|
+
|
|
88
|
+
width=220,
|
|
89
|
+
height=30,
|
|
90
|
+
border_width=2,
|
|
91
|
+
border_color= "#c75d55",
|
|
92
|
+
bg_color="#262626",
|
|
93
|
+
fg_color= "#262626",
|
|
94
|
+
|
|
95
|
+
corner_radius=5)
|
|
96
|
+
|
|
97
|
+
#style 2
|
|
98
|
+
entry_6 = customtkinter.CTkEntry(master=window,
|
|
99
|
+
placeholder_text="CTkEntry",
|
|
100
|
+
placeholder_text_color="black",
|
|
101
|
+
|
|
102
|
+
font= main_font,
|
|
103
|
+
text_color="black",
|
|
104
|
+
|
|
105
|
+
width=220,
|
|
106
|
+
height=30,
|
|
107
|
+
border_width=2,
|
|
108
|
+
border_color= "black",
|
|
109
|
+
bg_color="#262626",
|
|
110
|
+
fg_color= "#EEEEEE",
|
|
111
|
+
|
|
112
|
+
corner_radius=5)
|
|
113
|
+
entry_7 = customtkinter.CTkEntry(master=window,
|
|
114
|
+
placeholder_text="CTkEntry",
|
|
115
|
+
placeholder_text_color="black",
|
|
116
|
+
|
|
117
|
+
font= main_font,
|
|
118
|
+
text_color="black",
|
|
119
|
+
|
|
120
|
+
width=220,
|
|
121
|
+
height=30,
|
|
122
|
+
border_width=2,
|
|
123
|
+
border_color= "black",
|
|
124
|
+
bg_color="#262626",
|
|
125
|
+
fg_color= "#2E8BC0",
|
|
126
|
+
|
|
127
|
+
corner_radius=5)
|
|
128
|
+
entry_8 = customtkinter.CTkEntry(master=window,
|
|
129
|
+
placeholder_text="CTkEntry",
|
|
130
|
+
placeholder_text_color="black",
|
|
131
|
+
|
|
132
|
+
font= main_font,
|
|
133
|
+
text_color="black",
|
|
134
|
+
|
|
135
|
+
width=220,
|
|
136
|
+
height=30,
|
|
137
|
+
border_width=2,
|
|
138
|
+
border_color= "black",
|
|
139
|
+
bg_color="#262626",
|
|
140
|
+
fg_color= "#79ae61",
|
|
141
|
+
|
|
142
|
+
corner_radius=5)
|
|
143
|
+
entry_9 = customtkinter.CTkEntry(master=window,
|
|
144
|
+
placeholder_text="CTkEntry",
|
|
145
|
+
placeholder_text_color="black",
|
|
146
|
+
|
|
147
|
+
font= main_font,
|
|
148
|
+
text_color="black",
|
|
149
|
+
|
|
150
|
+
width=220,
|
|
151
|
+
height=30,
|
|
152
|
+
border_width=2,
|
|
153
|
+
border_color= "black",
|
|
154
|
+
bg_color="#262626",
|
|
155
|
+
fg_color= "#eda850",
|
|
156
|
+
|
|
157
|
+
corner_radius=5)
|
|
158
|
+
entry_10 = customtkinter.CTkEntry(master=window,
|
|
159
|
+
placeholder_text="CTkEntry",
|
|
160
|
+
placeholder_text_color="black",
|
|
161
|
+
|
|
162
|
+
font= main_font,
|
|
163
|
+
text_color="black",
|
|
164
|
+
|
|
165
|
+
width=220,
|
|
166
|
+
height=30,
|
|
167
|
+
border_width=2,
|
|
168
|
+
border_color= "black",
|
|
169
|
+
bg_color="#262626",
|
|
170
|
+
fg_color= "#c75d55",
|
|
171
|
+
|
|
172
|
+
corner_radius=5)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
#placing the resources
|
|
176
|
+
entry_1.place(x= 30, y= 30)
|
|
177
|
+
entry_2.place(x= 30, y= 75)
|
|
178
|
+
entry_3.place(x= 30, y= 120)
|
|
179
|
+
entry_4.place(x= 30, y= 165)
|
|
180
|
+
entry_5.place(x= 30, y= 210)
|
|
181
|
+
|
|
182
|
+
entry_6.place(x= 30, y= 280)
|
|
183
|
+
entry_7.place(x= 30, y= 325)
|
|
184
|
+
entry_8.place(x= 30, y= 370)
|
|
185
|
+
entry_9.place(x= 30, y= 415)
|
|
186
|
+
entry_10.place(x= 30, y= 460)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
#run the main loop
|
|
190
|
+
window.mainloop()
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
if __name__ == "__main__":
|
|
195
|
+
main()
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# SPDX-FileCopyrightText: 2025-present DigitalCreationsLibrary <aimosta.official@gmail.com>
|
|
2
|
+
#
|
|
3
|
+
# SPDX-License-Identifier: MIT
|
|
4
|
+
import click
|
|
5
|
+
|
|
6
|
+
from styledctk_widgets.__about__ import __version__
|
|
7
|
+
from styledctk_widgets.CTK_Buttons import CTK_Button_styles
|
|
8
|
+
from styledctk_widgets.CTK_Buttons import SCTkButton
|
|
9
|
+
|
|
10
|
+
from styledctk_widgets.CTK_Entrys import CTK_Entry_styles
|
|
11
|
+
from styledctk_widgets.CTK_Entrys import SCTKEntry
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
@click.group(context_settings={"help_option_names": ["-h", "--help"]}, invoke_without_command=True)
|
|
16
|
+
@click.version_option(version=__version__, prog_name="styledctk-widgets")
|
|
17
|
+
def styledctk_widgets():
|
|
18
|
+
click.echo("Hello world!")
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
@styledctk_widgets.command("showb")
|
|
22
|
+
def showb():
|
|
23
|
+
CTK_Button_styles.main()
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
@styledctk_widgets.command("showsb")
|
|
28
|
+
def showsb():
|
|
29
|
+
SCTkButton.main()
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
@styledctk_widgets.command("showe")
|
|
34
|
+
def showe():
|
|
35
|
+
CTK_Entry_styles.main()
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
version = 1
|
|
2
|
+
requires-python = ">=3.10"
|
|
3
|
+
|
|
4
|
+
[[package]]
|
|
5
|
+
name = "certifi"
|
|
6
|
+
version = "2024.12.14"
|
|
7
|
+
source = { registry = "https://pypi.org/simple" }
|
|
8
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0f/bd/1d41ee578ce09523c81a15426705dd20969f5abf006d1afe8aeff0dd776a/certifi-2024.12.14.tar.gz", hash = "sha256:b650d30f370c2b724812bee08008be0c4163b163ddaec3f2546c1caf65f191db", size = 166010 }
|
|
9
|
+
wheels = [
|
|
10
|
+
{ url = "https://files.pythonhosted.org/packages/a5/32/8f6669fc4798494966bf446c8c4a162e0b5d893dff088afddf76414f70e1/certifi-2024.12.14-py3-none-any.whl", hash = "sha256:1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56", size = 164927 },
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
[[package]]
|
|
14
|
+
name = "charset-normalizer"
|
|
15
|
+
version = "3.4.1"
|
|
16
|
+
source = { registry = "https://pypi.org/simple" }
|
|
17
|
+
sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188 }
|
|
18
|
+
wheels = [
|
|
19
|
+
{ url = "https://files.pythonhosted.org/packages/0d/58/5580c1716040bc89206c77d8f74418caf82ce519aae06450393ca73475d1/charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de", size = 198013 },
|
|
20
|
+
{ url = "https://files.pythonhosted.org/packages/d0/11/00341177ae71c6f5159a08168bcb98c6e6d196d372c94511f9f6c9afe0c6/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176", size = 141285 },
|
|
21
|
+
{ url = "https://files.pythonhosted.org/packages/01/09/11d684ea5819e5a8f5100fb0b38cf8d02b514746607934134d31233e02c8/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037", size = 151449 },
|
|
22
|
+
{ url = "https://files.pythonhosted.org/packages/08/06/9f5a12939db324d905dc1f70591ae7d7898d030d7662f0d426e2286f68c9/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f", size = 143892 },
|
|
23
|
+
{ url = "https://files.pythonhosted.org/packages/93/62/5e89cdfe04584cb7f4d36003ffa2936681b03ecc0754f8e969c2becb7e24/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a", size = 146123 },
|
|
24
|
+
{ url = "https://files.pythonhosted.org/packages/a9/ac/ab729a15c516da2ab70a05f8722ecfccc3f04ed7a18e45c75bbbaa347d61/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a", size = 147943 },
|
|
25
|
+
{ url = "https://files.pythonhosted.org/packages/03/d2/3f392f23f042615689456e9a274640c1d2e5dd1d52de36ab8f7955f8f050/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247", size = 142063 },
|
|
26
|
+
{ url = "https://files.pythonhosted.org/packages/f2/e3/e20aae5e1039a2cd9b08d9205f52142329f887f8cf70da3650326670bddf/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408", size = 150578 },
|
|
27
|
+
{ url = "https://files.pythonhosted.org/packages/8d/af/779ad72a4da0aed925e1139d458adc486e61076d7ecdcc09e610ea8678db/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb", size = 153629 },
|
|
28
|
+
{ url = "https://files.pythonhosted.org/packages/c2/b6/7aa450b278e7aa92cf7732140bfd8be21f5f29d5bf334ae987c945276639/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d", size = 150778 },
|
|
29
|
+
{ url = "https://files.pythonhosted.org/packages/39/f4/d9f4f712d0951dcbfd42920d3db81b00dd23b6ab520419626f4023334056/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807", size = 146453 },
|
|
30
|
+
{ url = "https://files.pythonhosted.org/packages/49/2b/999d0314e4ee0cff3cb83e6bc9aeddd397eeed693edb4facb901eb8fbb69/charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f", size = 95479 },
|
|
31
|
+
{ url = "https://files.pythonhosted.org/packages/2d/ce/3cbed41cff67e455a386fb5e5dd8906cdda2ed92fbc6297921f2e4419309/charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f", size = 102790 },
|
|
32
|
+
{ url = "https://files.pythonhosted.org/packages/72/80/41ef5d5a7935d2d3a773e3eaebf0a9350542f2cab4eac59a7a4741fbbbbe/charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125", size = 194995 },
|
|
33
|
+
{ url = "https://files.pythonhosted.org/packages/7a/28/0b9fefa7b8b080ec492110af6d88aa3dea91c464b17d53474b6e9ba5d2c5/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1", size = 139471 },
|
|
34
|
+
{ url = "https://files.pythonhosted.org/packages/71/64/d24ab1a997efb06402e3fc07317e94da358e2585165930d9d59ad45fcae2/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3", size = 149831 },
|
|
35
|
+
{ url = "https://files.pythonhosted.org/packages/37/ed/be39e5258e198655240db5e19e0b11379163ad7070962d6b0c87ed2c4d39/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd", size = 142335 },
|
|
36
|
+
{ url = "https://files.pythonhosted.org/packages/88/83/489e9504711fa05d8dde1574996408026bdbdbd938f23be67deebb5eca92/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00", size = 143862 },
|
|
37
|
+
{ url = "https://files.pythonhosted.org/packages/c6/c7/32da20821cf387b759ad24627a9aca289d2822de929b8a41b6241767b461/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12", size = 145673 },
|
|
38
|
+
{ url = "https://files.pythonhosted.org/packages/68/85/f4288e96039abdd5aeb5c546fa20a37b50da71b5cf01e75e87f16cd43304/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77", size = 140211 },
|
|
39
|
+
{ url = "https://files.pythonhosted.org/packages/28/a3/a42e70d03cbdabc18997baf4f0227c73591a08041c149e710045c281f97b/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146", size = 148039 },
|
|
40
|
+
{ url = "https://files.pythonhosted.org/packages/85/e4/65699e8ab3014ecbe6f5c71d1a55d810fb716bbfd74f6283d5c2aa87febf/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd", size = 151939 },
|
|
41
|
+
{ url = "https://files.pythonhosted.org/packages/b1/82/8e9fe624cc5374193de6860aba3ea8070f584c8565ee77c168ec13274bd2/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6", size = 149075 },
|
|
42
|
+
{ url = "https://files.pythonhosted.org/packages/3d/7b/82865ba54c765560c8433f65e8acb9217cb839a9e32b42af4aa8e945870f/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8", size = 144340 },
|
|
43
|
+
{ url = "https://files.pythonhosted.org/packages/b5/b6/9674a4b7d4d99a0d2df9b215da766ee682718f88055751e1e5e753c82db0/charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b", size = 95205 },
|
|
44
|
+
{ url = "https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76", size = 102441 },
|
|
45
|
+
{ url = "https://files.pythonhosted.org/packages/0a/9a/dd1e1cdceb841925b7798369a09279bd1cf183cef0f9ddf15a3a6502ee45/charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545", size = 196105 },
|
|
46
|
+
{ url = "https://files.pythonhosted.org/packages/d3/8c/90bfabf8c4809ecb648f39794cf2a84ff2e7d2a6cf159fe68d9a26160467/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7", size = 140404 },
|
|
47
|
+
{ url = "https://files.pythonhosted.org/packages/ad/8f/e410d57c721945ea3b4f1a04b74f70ce8fa800d393d72899f0a40526401f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757", size = 150423 },
|
|
48
|
+
{ url = "https://files.pythonhosted.org/packages/f0/b8/e6825e25deb691ff98cf5c9072ee0605dc2acfca98af70c2d1b1bc75190d/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa", size = 143184 },
|
|
49
|
+
{ url = "https://files.pythonhosted.org/packages/3e/a2/513f6cbe752421f16d969e32f3583762bfd583848b763913ddab8d9bfd4f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d", size = 145268 },
|
|
50
|
+
{ url = "https://files.pythonhosted.org/packages/74/94/8a5277664f27c3c438546f3eb53b33f5b19568eb7424736bdc440a88a31f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616", size = 147601 },
|
|
51
|
+
{ url = "https://files.pythonhosted.org/packages/7c/5f/6d352c51ee763623a98e31194823518e09bfa48be2a7e8383cf691bbb3d0/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b", size = 141098 },
|
|
52
|
+
{ url = "https://files.pythonhosted.org/packages/78/d4/f5704cb629ba5ab16d1d3d741396aec6dc3ca2b67757c45b0599bb010478/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d", size = 149520 },
|
|
53
|
+
{ url = "https://files.pythonhosted.org/packages/c5/96/64120b1d02b81785f222b976c0fb79a35875457fa9bb40827678e54d1bc8/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a", size = 152852 },
|
|
54
|
+
{ url = "https://files.pythonhosted.org/packages/84/c9/98e3732278a99f47d487fd3468bc60b882920cef29d1fa6ca460a1fdf4e6/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9", size = 150488 },
|
|
55
|
+
{ url = "https://files.pythonhosted.org/packages/13/0e/9c8d4cb99c98c1007cc11eda969ebfe837bbbd0acdb4736d228ccaabcd22/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1", size = 146192 },
|
|
56
|
+
{ url = "https://files.pythonhosted.org/packages/b2/21/2b6b5b860781a0b49427309cb8670785aa543fb2178de875b87b9cc97746/charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35", size = 95550 },
|
|
57
|
+
{ url = "https://files.pythonhosted.org/packages/21/5b/1b390b03b1d16c7e382b561c5329f83cc06623916aab983e8ab9239c7d5c/charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f", size = 102785 },
|
|
58
|
+
{ url = "https://files.pythonhosted.org/packages/38/94/ce8e6f63d18049672c76d07d119304e1e2d7c6098f0841b51c666e9f44a0/charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda", size = 195698 },
|
|
59
|
+
{ url = "https://files.pythonhosted.org/packages/24/2e/dfdd9770664aae179a96561cc6952ff08f9a8cd09a908f259a9dfa063568/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313", size = 140162 },
|
|
60
|
+
{ url = "https://files.pythonhosted.org/packages/24/4e/f646b9093cff8fc86f2d60af2de4dc17c759de9d554f130b140ea4738ca6/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9", size = 150263 },
|
|
61
|
+
{ url = "https://files.pythonhosted.org/packages/5e/67/2937f8d548c3ef6e2f9aab0f6e21001056f692d43282b165e7c56023e6dd/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b", size = 142966 },
|
|
62
|
+
{ url = "https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11", size = 144992 },
|
|
63
|
+
{ url = "https://files.pythonhosted.org/packages/96/2c/d49710a6dbcd3776265f4c923bb73ebe83933dfbaa841c5da850fe0fd20b/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f", size = 147162 },
|
|
64
|
+
{ url = "https://files.pythonhosted.org/packages/b4/41/35ff1f9a6bd380303dea55e44c4933b4cc3c4850988927d4082ada230273/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd", size = 140972 },
|
|
65
|
+
{ url = "https://files.pythonhosted.org/packages/fb/43/c6a0b685fe6910d08ba971f62cd9c3e862a85770395ba5d9cad4fede33ab/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2", size = 149095 },
|
|
66
|
+
{ url = "https://files.pythonhosted.org/packages/4c/ff/a9a504662452e2d2878512115638966e75633519ec11f25fca3d2049a94a/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886", size = 152668 },
|
|
67
|
+
{ url = "https://files.pythonhosted.org/packages/6c/71/189996b6d9a4b932564701628af5cee6716733e9165af1d5e1b285c530ed/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601", size = 150073 },
|
|
68
|
+
{ url = "https://files.pythonhosted.org/packages/e4/93/946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd", size = 145732 },
|
|
69
|
+
{ url = "https://files.pythonhosted.org/packages/cd/e5/131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091/charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407", size = 95391 },
|
|
70
|
+
{ url = "https://files.pythonhosted.org/packages/27/f2/4f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0/charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971", size = 102702 },
|
|
71
|
+
{ url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 },
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "customtkinter"
|
|
76
|
+
version = "5.2.2"
|
|
77
|
+
source = { registry = "https://pypi.org/simple" }
|
|
78
|
+
dependencies = [
|
|
79
|
+
{ name = "darkdetect" },
|
|
80
|
+
{ name = "packaging" },
|
|
81
|
+
]
|
|
82
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cf/48/c5a9d44188c44702e1e3db493c741e9c779596835a761b819fe15431d163/customtkinter-5.2.2.tar.gz", hash = "sha256:fd8db3bafa961c982ee6030dba80b4c2e25858630756b513986db19113d8d207", size = 261999 }
|
|
83
|
+
wheels = [
|
|
84
|
+
{ url = "https://files.pythonhosted.org/packages/3b/b1/b43b33001a77256b335511e75f257d001082350b8506c8807f30c98db052/customtkinter-5.2.2-py3-none-any.whl", hash = "sha256:14ad3e7cd3cb3b9eb642b9d4e8711ae80d3f79fb82545ad11258eeffb2e6b37c", size = 296062 },
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "customtkinter-templates"
|
|
89
|
+
version = "0.1.0"
|
|
90
|
+
source = { virtual = "." }
|
|
91
|
+
dependencies = [
|
|
92
|
+
{ name = "customtkinter" },
|
|
93
|
+
{ name = "requests" },
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[package.metadata]
|
|
97
|
+
requires-dist = [
|
|
98
|
+
{ name = "customtkinter", specifier = ">=5.2.2" },
|
|
99
|
+
{ name = "requests", specifier = ">=2.32.3" },
|
|
100
|
+
]
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "darkdetect"
|
|
104
|
+
version = "0.8.0"
|
|
105
|
+
source = { registry = "https://pypi.org/simple" }
|
|
106
|
+
sdist = { url = "https://files.pythonhosted.org/packages/45/77/7575be73bf12dee231d0c6e60ce7fb7a7be4fcd58823374fc59a6e48262e/darkdetect-0.8.0.tar.gz", hash = "sha256:b5428e1170263eb5dea44c25dc3895edd75e6f52300986353cd63533fe7df8b1", size = 7681 }
|
|
107
|
+
wheels = [
|
|
108
|
+
{ url = "https://files.pythonhosted.org/packages/f2/f2/728f041460f1b9739b85ee23b45fa5a505962ea11fd85bdbe2a02b021373/darkdetect-0.8.0-py3-none-any.whl", hash = "sha256:a7509ccf517eaad92b31c214f593dbcf138ea8a43b2935406bbd565e15527a85", size = 8955 },
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "idna"
|
|
113
|
+
version = "3.10"
|
|
114
|
+
source = { registry = "https://pypi.org/simple" }
|
|
115
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 }
|
|
116
|
+
wheels = [
|
|
117
|
+
{ url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 },
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "packaging"
|
|
122
|
+
version = "24.2"
|
|
123
|
+
source = { registry = "https://pypi.org/simple" }
|
|
124
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 }
|
|
125
|
+
wheels = [
|
|
126
|
+
{ url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 },
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "requests"
|
|
131
|
+
version = "2.32.3"
|
|
132
|
+
source = { registry = "https://pypi.org/simple" }
|
|
133
|
+
dependencies = [
|
|
134
|
+
{ name = "certifi" },
|
|
135
|
+
{ name = "charset-normalizer" },
|
|
136
|
+
{ name = "idna" },
|
|
137
|
+
{ name = "urllib3" },
|
|
138
|
+
]
|
|
139
|
+
sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 }
|
|
140
|
+
wheels = [
|
|
141
|
+
{ url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 },
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "urllib3"
|
|
146
|
+
version = "2.3.0"
|
|
147
|
+
source = { registry = "https://pypi.org/simple" }
|
|
148
|
+
sdist = { url = "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d", size = 307268 }
|
|
149
|
+
wheels = [
|
|
150
|
+
{ url = "https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df", size = 128369 },
|
|
151
|
+
]
|