CTkScrollableDropdownPP 2.0.0__tar.gz → 2.0.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.
@@ -4,9 +4,8 @@ Original Author: Akash Bora (https://github.com/Akascape)
4
4
  Modified by: PLauncher-Team (https://github.com/PLauncher-Team) with pagination, search, and grouping features.
5
5
 
6
6
  License: MIT
7
- Homepage: https://github.com/ваш-репозиторий/CTkScrollableDropdownPP
7
+ Homepage: https://github.com/PLauncher-Team/CTkScrollableDropdownPP
8
8
  """
9
9
 
10
10
  __version__ = '2.0'
11
-
12
11
  from .ctk_scrollable_dropdown import CTkScrollableDropdown
@@ -1,4 +1,4 @@
1
- import customtkinter
1
+ import customtkinter
2
2
  import sys
3
3
  import re
4
4
 
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.4
2
+ Name: CTkScrollableDropdownPP
3
+ Version: 2.0.2
4
+ Summary: Enhanced CTkScrollableDropdown with pagination, search and groups support
5
+ Author: PLauncher-Team, Akash Bora
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/PLauncher-Team/CTkScrollableDropdownPP
8
+ Project-URL: Original, https://github.com/Akascape/CTkScrollableDropdown
9
+ Keywords: customtkinter,dropdown,pagination,search,groups
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: customtkinter>=5.2.0
16
+ Dynamic: license-file
17
+
18
+ # CTkScrollableDropdownPP
19
+
20
+ **CTkScrollableDropdownPP** is an enhanced dropdown widget for CustomTkinter featuring pagination, live search, and grouping support.
21
+
22
+ > Based on the original [CTkScrollableDropdown](https://github.com/Akascape/CTkScrollableDropdown) project.
23
+
24
+ ## Features
25
+
26
+ * Pagination for large lists
27
+ * Real-time filtering
28
+ * Grouped items (using regex or labels)
29
+ * Autocomplete on typing
30
+ * Fully customizable appearance
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install ctkscrollabledropdownpp
36
+ ```
37
+
38
+ ## Quick Start
39
+
40
+ ```python
41
+ import customtkinter as ctk
42
+ from ctkscrollabledropdownpp import CTkScrollableDropdown
43
+
44
+ app = ctk.CTk()
45
+ btn = ctk.CTkButton(app, text='Select')
46
+ btn.pack(pady=20)
47
+
48
+ values = [f"Item {i}" for i in range(1, 101)]
49
+
50
+ dropdown = CTkScrollableDropdown(
51
+ attach=btn,
52
+ values=values,
53
+ command=lambda v: print("Selected:", v),
54
+ items_per_page=20,
55
+ pagination=True,
56
+ autocomplete=True,
57
+ groups=[('1-50', r'^Item [1-4]'), ('Others', '__OTHERS__')]
58
+ )
59
+
60
+ app.mainloop()
61
+ ```
@@ -1,6 +1,7 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 PLauncher Team
3
+ Copyright (c) 2025 PLauncher Team
4
+ Copyright (c) 2024 Akash Bora (original CTkScrollableDropdown)
4
5
 
5
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
  of this software and associated documentation files (the "Software"), to deal
@@ -9,7 +10,7 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
10
  copies of the Software, and to permit persons to whom the Software is
10
11
  furnished to do so, subject to the following conditions:
11
12
 
12
- The above copyright notice and this permission notice shall be included in all
13
+ The above copyright notices and this permission notice shall be included in all
13
14
  copies or substantial portions of the Software.
14
15
 
15
16
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.4
2
+ Name: CTkScrollableDropdownPP
3
+ Version: 2.0.2
4
+ Summary: Enhanced CTkScrollableDropdown with pagination, search and groups support
5
+ Author: PLauncher-Team, Akash Bora
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/PLauncher-Team/CTkScrollableDropdownPP
8
+ Project-URL: Original, https://github.com/Akascape/CTkScrollableDropdown
9
+ Keywords: customtkinter,dropdown,pagination,search,groups
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Requires-Dist: customtkinter>=5.2.0
16
+ Dynamic: license-file
17
+
18
+ # CTkScrollableDropdownPP
19
+
20
+ **CTkScrollableDropdownPP** is an enhanced dropdown widget for CustomTkinter featuring pagination, live search, and grouping support.
21
+
22
+ > Based on the original [CTkScrollableDropdown](https://github.com/Akascape/CTkScrollableDropdown) project.
23
+
24
+ ## Features
25
+
26
+ * Pagination for large lists
27
+ * Real-time filtering
28
+ * Grouped items (using regex or labels)
29
+ * Autocomplete on typing
30
+ * Fully customizable appearance
31
+
32
+ ## Installation
33
+
34
+ ```bash
35
+ pip install ctkscrollabledropdownpp
36
+ ```
37
+
38
+ ## Quick Start
39
+
40
+ ```python
41
+ import customtkinter as ctk
42
+ from ctkscrollabledropdownpp import CTkScrollableDropdown
43
+
44
+ app = ctk.CTk()
45
+ btn = ctk.CTkButton(app, text='Select')
46
+ btn.pack(pady=20)
47
+
48
+ values = [f"Item {i}" for i in range(1, 101)]
49
+
50
+ dropdown = CTkScrollableDropdown(
51
+ attach=btn,
52
+ values=values,
53
+ command=lambda v: print("Selected:", v),
54
+ items_per_page=20,
55
+ pagination=True,
56
+ autocomplete=True,
57
+ groups=[('1-50', r'^Item [1-4]'), ('Others', '__OTHERS__')]
58
+ )
59
+
60
+ app.mainloop()
61
+ ```
@@ -0,0 +1,44 @@
1
+ # CTkScrollableDropdownPP
2
+
3
+ **CTkScrollableDropdownPP** is an enhanced dropdown widget for CustomTkinter featuring pagination, live search, and grouping support.
4
+
5
+ > Based on the original [CTkScrollableDropdown](https://github.com/Akascape/CTkScrollableDropdown) project.
6
+
7
+ ## Features
8
+
9
+ * Pagination for large lists
10
+ * Real-time filtering
11
+ * Grouped items (using regex or labels)
12
+ * Autocomplete on typing
13
+ * Fully customizable appearance
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ pip install ctkscrollabledropdownpp
19
+ ```
20
+
21
+ ## Quick Start
22
+
23
+ ```python
24
+ import customtkinter as ctk
25
+ from ctkscrollabledropdownpp import CTkScrollableDropdown
26
+
27
+ app = ctk.CTk()
28
+ btn = ctk.CTkButton(app, text='Select')
29
+ btn.pack(pady=20)
30
+
31
+ values = [f"Item {i}" for i in range(1, 101)]
32
+
33
+ dropdown = CTkScrollableDropdown(
34
+ attach=btn,
35
+ values=values,
36
+ command=lambda v: print("Selected:", v),
37
+ items_per_page=20,
38
+ pagination=True,
39
+ autocomplete=True,
40
+ groups=[('1-50', r'^Item [1-4]'), ('Others', '__OTHERS__')]
41
+ )
42
+
43
+ app.mainloop()
44
+ ```
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "CTkScrollableDropdownPP"
7
- version = "2.0.0"
7
+ version = "2.0.2"
8
8
  description = "Enhanced CTkScrollableDropdown with pagination, search and groups support"
9
9
  authors = [
10
10
  {name = "PLauncher-Team"},
@@ -14,7 +14,6 @@ readme = "README.md"
14
14
  license = {text = "MIT"}
15
15
  requires-python = ">=3.8"
16
16
  classifiers = [
17
- "License :: OSI Approved :: MIT License",
18
17
  "Programming Language :: Python :: 3",
19
18
  "Operating System :: OS Independent",
20
19
  ]
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: CTkScrollableDropdownPP
3
- Version: 2.0.0
4
- Summary: Enhanced CTkScrollableDropdown with pagination, search and groups support
5
- Author: PLauncher-Team, Akash Bora
6
- License: MIT
7
- Project-URL: Homepage, https://github.com/PLauncher-Team/CTkScrollableDropdownPP
8
- Project-URL: Original, https://github.com/Akascape/CTkScrollableDropdown
9
- Keywords: customtkinter,dropdown,pagination,search,groups
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Operating System :: OS Independent
13
- Requires-Python: >=3.8
14
- Description-Content-Type: text/markdown
15
- License-File: LICENSE
16
- Requires-Dist: customtkinter>=5.2.0
17
- Dynamic: license-file
18
-
19
- # CTkScrollableDropdownPP
20
- Enhanced CTkScrollableDropdown - A modern, feature-packed upgrade of the original dropdown widget for CustomTkinter with pagination, search, and grouping support.
@@ -1,20 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: CTkScrollableDropdownPP
3
- Version: 2.0.0
4
- Summary: Enhanced CTkScrollableDropdown with pagination, search and groups support
5
- Author: PLauncher-Team, Akash Bora
6
- License: MIT
7
- Project-URL: Homepage, https://github.com/PLauncher-Team/CTkScrollableDropdownPP
8
- Project-URL: Original, https://github.com/Akascape/CTkScrollableDropdown
9
- Keywords: customtkinter,dropdown,pagination,search,groups
10
- Classifier: License :: OSI Approved :: MIT License
11
- Classifier: Programming Language :: Python :: 3
12
- Classifier: Operating System :: OS Independent
13
- Requires-Python: >=3.8
14
- Description-Content-Type: text/markdown
15
- License-File: LICENSE
16
- Requires-Dist: customtkinter>=5.2.0
17
- Dynamic: license-file
18
-
19
- # CTkScrollableDropdownPP
20
- Enhanced CTkScrollableDropdown - A modern, feature-packed upgrade of the original dropdown widget for CustomTkinter with pagination, search, and grouping support.
@@ -1,2 +0,0 @@
1
- # CTkScrollableDropdownPP
2
- Enhanced CTkScrollableDropdown - A modern, feature-packed upgrade of the original dropdown widget for CustomTkinter with pagination, search, and grouping support.