m-you-tk 0.1.2__tar.gz → 0.1.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.
- m_you_tk-0.1.3/PKG-INFO +74 -0
- m_you_tk-0.1.3/README.md +63 -0
- m_you_tk-0.1.3/m_you_tk.egg-info/PKG-INFO +74 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/pyproject.toml +1 -1
- m_you_tk-0.1.2/PKG-INFO +0 -29
- m_you_tk-0.1.2/README.md +0 -18
- m_you_tk-0.1.2/m_you_tk.egg-info/PKG-INFO +0 -29
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/LICENSE +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/MANIFEST.in +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/__init__.py +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/assets/material.ttf +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/button.py +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/checkbox.py +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/dropdown.py +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/input.py +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/radiobutton.py +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/slider.py +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/switch.py +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you/toast.py +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you_tk.egg-info/SOURCES.txt +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you_tk.egg-info/dependency_links.txt +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you_tk.egg-info/requires.txt +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/m_you_tk.egg-info/top_level.txt +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/setup.cfg +0 -0
- {m_you_tk-0.1.2 → m_you_tk-0.1.3}/setup.py +0 -0
m_you_tk-0.1.3/PKG-INFO
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: m-you-tk
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: Material You components for Tkinter
|
|
5
|
+
Author-email: logic-break <abibasqabiba@email.com>
|
|
6
|
+
Requires-Python: >=3.7
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Requires-Dist: Pillow>=9.0.0
|
|
10
|
+
Dynamic: license-file
|
|
11
|
+
|
|
12
|
+
# About
|
|
13
|
+
|
|
14
|
+
A modern Material You (Material Design 3) UI library for Tkinter with smooth LERP animations.
|
|
15
|
+
It was made for black theme, for best look use #1C1B1F background
|
|
16
|
+
|
|
17
|
+
## Documentation
|
|
18
|
+
|
|
19
|
+
The full documentation for this library is provided as a **standalone Windows application** for your convenience.
|
|
20
|
+
|
|
21
|
+
### How to open:
|
|
22
|
+
1. Locate `docs.exe` in the root directory.
|
|
23
|
+
2. Run it to view the documentation in a dedicated window (no browser needed).
|
|
24
|
+
|
|
25
|
+
> On linux, use wine (bad idea) or go to docs folder and open index.html
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## 🛠 Quick Installation
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install m-you-tk
|
|
33
|
+
```
|
|
34
|
+
# Usage
|
|
35
|
+
```python
|
|
36
|
+
from m_you import (
|
|
37
|
+
MaterialInput,
|
|
38
|
+
MaterialButton,
|
|
39
|
+
MaterialDropdown,
|
|
40
|
+
MaterialSwitch,
|
|
41
|
+
MaterialToast,
|
|
42
|
+
MaterialCheckbox,
|
|
43
|
+
MaterialSlider,
|
|
44
|
+
MaterialRadioButton
|
|
45
|
+
)
|
|
46
|
+
""" or use this:
|
|
47
|
+
from m_you import MaterialInput
|
|
48
|
+
from m_you import MaterialButton
|
|
49
|
+
from m_you import MaterialDropdown
|
|
50
|
+
from m_you import MaterialSwitch
|
|
51
|
+
from m_you import MaterialToast
|
|
52
|
+
from m_you import MaterialSlider
|
|
53
|
+
from m_you import MaterialCheckbox
|
|
54
|
+
from m_you import MaterialRadioButton
|
|
55
|
+
"""
|
|
56
|
+
import tkinter as tk
|
|
57
|
+
|
|
58
|
+
root = tk.Tk()
|
|
59
|
+
root.geometry("400x300")
|
|
60
|
+
root.configure(bg="#1C1B1F")
|
|
61
|
+
btn = MaterialButton(root, text="Click Me!", command=lambda: print("Hello!"))
|
|
62
|
+
btn.pack(pady=20)
|
|
63
|
+
|
|
64
|
+
root.mainloop()
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Icons avaible:
|
|
68
|
+
edit, settings, home, search, favorite, delete, add, check, close, menu, person, share, sound, wifi, baterry, camera, folder, email, clock
|
|
69
|
+
|
|
70
|
+
### Changelog:
|
|
71
|
+
0.1.0 - first release
|
|
72
|
+
0.1.1 - bug fixes
|
|
73
|
+
0.1.2 - added README file
|
|
74
|
+
0.1.3 - now docs are standalone .exe for windows users
|
m_you_tk-0.1.3/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# About
|
|
2
|
+
|
|
3
|
+
A modern Material You (Material Design 3) UI library for Tkinter with smooth LERP animations.
|
|
4
|
+
It was made for black theme, for best look use #1C1B1F background
|
|
5
|
+
|
|
6
|
+
## Documentation
|
|
7
|
+
|
|
8
|
+
The full documentation for this library is provided as a **standalone Windows application** for your convenience.
|
|
9
|
+
|
|
10
|
+
### How to open:
|
|
11
|
+
1. Locate `docs.exe` in the root directory.
|
|
12
|
+
2. Run it to view the documentation in a dedicated window (no browser needed).
|
|
13
|
+
|
|
14
|
+
> On linux, use wine (bad idea) or go to docs folder and open index.html
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## 🛠 Quick Installation
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install m-you-tk
|
|
22
|
+
```
|
|
23
|
+
# Usage
|
|
24
|
+
```python
|
|
25
|
+
from m_you import (
|
|
26
|
+
MaterialInput,
|
|
27
|
+
MaterialButton,
|
|
28
|
+
MaterialDropdown,
|
|
29
|
+
MaterialSwitch,
|
|
30
|
+
MaterialToast,
|
|
31
|
+
MaterialCheckbox,
|
|
32
|
+
MaterialSlider,
|
|
33
|
+
MaterialRadioButton
|
|
34
|
+
)
|
|
35
|
+
""" or use this:
|
|
36
|
+
from m_you import MaterialInput
|
|
37
|
+
from m_you import MaterialButton
|
|
38
|
+
from m_you import MaterialDropdown
|
|
39
|
+
from m_you import MaterialSwitch
|
|
40
|
+
from m_you import MaterialToast
|
|
41
|
+
from m_you import MaterialSlider
|
|
42
|
+
from m_you import MaterialCheckbox
|
|
43
|
+
from m_you import MaterialRadioButton
|
|
44
|
+
"""
|
|
45
|
+
import tkinter as tk
|
|
46
|
+
|
|
47
|
+
root = tk.Tk()
|
|
48
|
+
root.geometry("400x300")
|
|
49
|
+
root.configure(bg="#1C1B1F")
|
|
50
|
+
btn = MaterialButton(root, text="Click Me!", command=lambda: print("Hello!"))
|
|
51
|
+
btn.pack(pady=20)
|
|
52
|
+
|
|
53
|
+
root.mainloop()
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Icons avaible:
|
|
57
|
+
edit, settings, home, search, favorite, delete, add, check, close, menu, person, share, sound, wifi, baterry, camera, folder, email, clock
|
|
58
|
+
|
|
59
|
+
### Changelog:
|
|
60
|
+
0.1.0 - first release
|
|
61
|
+
0.1.1 - bug fixes
|
|
62
|
+
0.1.2 - added README file
|
|
63
|
+
0.1.3 - now docs are standalone .exe for windows users
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: m-you-tk
|
|
3
|
+
Version: 0.1.3
|
|
4
|
+
Summary: Material You components for Tkinter
|
|
5
|
+
Author-email: logic-break <abibasqabiba@email.com>
|
|
6
|
+
Requires-Python: >=3.7
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Requires-Dist: Pillow>=9.0.0
|
|
10
|
+
Dynamic: license-file
|
|
11
|
+
|
|
12
|
+
# About
|
|
13
|
+
|
|
14
|
+
A modern Material You (Material Design 3) UI library for Tkinter with smooth LERP animations.
|
|
15
|
+
It was made for black theme, for best look use #1C1B1F background
|
|
16
|
+
|
|
17
|
+
## Documentation
|
|
18
|
+
|
|
19
|
+
The full documentation for this library is provided as a **standalone Windows application** for your convenience.
|
|
20
|
+
|
|
21
|
+
### How to open:
|
|
22
|
+
1. Locate `docs.exe` in the root directory.
|
|
23
|
+
2. Run it to view the documentation in a dedicated window (no browser needed).
|
|
24
|
+
|
|
25
|
+
> On linux, use wine (bad idea) or go to docs folder and open index.html
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## 🛠 Quick Installation
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
pip install m-you-tk
|
|
33
|
+
```
|
|
34
|
+
# Usage
|
|
35
|
+
```python
|
|
36
|
+
from m_you import (
|
|
37
|
+
MaterialInput,
|
|
38
|
+
MaterialButton,
|
|
39
|
+
MaterialDropdown,
|
|
40
|
+
MaterialSwitch,
|
|
41
|
+
MaterialToast,
|
|
42
|
+
MaterialCheckbox,
|
|
43
|
+
MaterialSlider,
|
|
44
|
+
MaterialRadioButton
|
|
45
|
+
)
|
|
46
|
+
""" or use this:
|
|
47
|
+
from m_you import MaterialInput
|
|
48
|
+
from m_you import MaterialButton
|
|
49
|
+
from m_you import MaterialDropdown
|
|
50
|
+
from m_you import MaterialSwitch
|
|
51
|
+
from m_you import MaterialToast
|
|
52
|
+
from m_you import MaterialSlider
|
|
53
|
+
from m_you import MaterialCheckbox
|
|
54
|
+
from m_you import MaterialRadioButton
|
|
55
|
+
"""
|
|
56
|
+
import tkinter as tk
|
|
57
|
+
|
|
58
|
+
root = tk.Tk()
|
|
59
|
+
root.geometry("400x300")
|
|
60
|
+
root.configure(bg="#1C1B1F")
|
|
61
|
+
btn = MaterialButton(root, text="Click Me!", command=lambda: print("Hello!"))
|
|
62
|
+
btn.pack(pady=20)
|
|
63
|
+
|
|
64
|
+
root.mainloop()
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Icons avaible:
|
|
68
|
+
edit, settings, home, search, favorite, delete, add, check, close, menu, person, share, sound, wifi, baterry, camera, folder, email, clock
|
|
69
|
+
|
|
70
|
+
### Changelog:
|
|
71
|
+
0.1.0 - first release
|
|
72
|
+
0.1.1 - bug fixes
|
|
73
|
+
0.1.2 - added README file
|
|
74
|
+
0.1.3 - now docs are standalone .exe for windows users
|
m_you_tk-0.1.2/PKG-INFO
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: m-you-tk
|
|
3
|
-
Version: 0.1.2
|
|
4
|
-
Summary: Material You components for Tkinter
|
|
5
|
-
Author-email: logic-break <abibasqabiba@email.com>
|
|
6
|
-
Requires-Python: >=3.7
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
8
|
-
License-File: LICENSE
|
|
9
|
-
Requires-Dist: Pillow>=9.0.0
|
|
10
|
-
Dynamic: license-file
|
|
11
|
-
|
|
12
|
-
# 🎨 M-YOU-TK
|
|
13
|
-
|
|
14
|
-
A modern Material You (Material Design 3) UI library for Tkinter with smooth LERP animations.
|
|
15
|
-
|
|
16
|
-
## 📖 Documentation
|
|
17
|
-
|
|
18
|
-
The full documentation for this library, including component references, installation guides, and code examples, is available in the **offline HTML documentation** file.
|
|
19
|
-
|
|
20
|
-
### 🚀 How to open:
|
|
21
|
-
1. Locate the `documentation.html` file in the root directory.
|
|
22
|
-
2. Double-click to open it in your preferred web browser.
|
|
23
|
-
|
|
24
|
-
---
|
|
25
|
-
|
|
26
|
-
## 🛠 Quick Installation
|
|
27
|
-
|
|
28
|
-
```bash
|
|
29
|
-
pip install m-you-tk
|
m_you_tk-0.1.2/README.md
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# 🎨 M-YOU-TK
|
|
2
|
-
|
|
3
|
-
A modern Material You (Material Design 3) UI library for Tkinter with smooth LERP animations.
|
|
4
|
-
|
|
5
|
-
## 📖 Documentation
|
|
6
|
-
|
|
7
|
-
The full documentation for this library, including component references, installation guides, and code examples, is available in the **offline HTML documentation** file.
|
|
8
|
-
|
|
9
|
-
### 🚀 How to open:
|
|
10
|
-
1. Locate the `documentation.html` file in the root directory.
|
|
11
|
-
2. Double-click to open it in your preferred web browser.
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
## 🛠 Quick Installation
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
pip install m-you-tk
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: m-you-tk
|
|
3
|
-
Version: 0.1.2
|
|
4
|
-
Summary: Material You components for Tkinter
|
|
5
|
-
Author-email: logic-break <abibasqabiba@email.com>
|
|
6
|
-
Requires-Python: >=3.7
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
8
|
-
License-File: LICENSE
|
|
9
|
-
Requires-Dist: Pillow>=9.0.0
|
|
10
|
-
Dynamic: license-file
|
|
11
|
-
|
|
12
|
-
# 🎨 M-YOU-TK
|
|
13
|
-
|
|
14
|
-
A modern Material You (Material Design 3) UI library for Tkinter with smooth LERP animations.
|
|
15
|
-
|
|
16
|
-
## 📖 Documentation
|
|
17
|
-
|
|
18
|
-
The full documentation for this library, including component references, installation guides, and code examples, is available in the **offline HTML documentation** file.
|
|
19
|
-
|
|
20
|
-
### 🚀 How to open:
|
|
21
|
-
1. Locate the `documentation.html` file in the root directory.
|
|
22
|
-
2. Double-click to open it in your preferred web browser.
|
|
23
|
-
|
|
24
|
-
---
|
|
25
|
-
|
|
26
|
-
## 🛠 Quick Installation
|
|
27
|
-
|
|
28
|
-
```bash
|
|
29
|
-
pip install m-you-tk
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|