splashscreen-engine 2.0.2__tar.gz → 2.0.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.
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/PKG-INFO +8 -5
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/README.md +6 -2
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/setup.py +3 -4
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/splashscreen_engine.egg-info/PKG-INFO +8 -5
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/splashscreen_engine.egg-info/requires.txt +0 -1
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/setup.cfg +0 -0
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/splashscreen_engine.egg-info/SOURCES.txt +0 -0
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/splashscreen_engine.egg-info/dependency_links.txt +0 -0
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/splashscreen_engine.egg-info/top_level.txt +0 -0
- {splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/splashscreen_engine.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: splashscreen-engine
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: A module for making Splash Screens with videos, images, loading bars, text rendering, and threaded rendering support for Applications.
|
|
5
5
|
Home-page: https://github.com/NamanChhabra21/splashscreen-engine
|
|
6
6
|
Author: Naman Chhabra
|
|
@@ -8,7 +8,7 @@ License: MIT
|
|
|
8
8
|
Project-URL: Source, https://github.com/NamanChhabra21/splashscreen-engine
|
|
9
9
|
Project-URL: Issues, https://github.com/NamanChhabra21/splashscreen-engine/issues
|
|
10
10
|
Project-URL: Discussions, https://github.com/NamanChhabra21/splashscreen-engine/discussions
|
|
11
|
-
Keywords: pygame,splash-screen,loading-screen,python,gui,video,splashscreen,pygame-gui,window,animation,loading,open-cv,naman,chhabra,splash,pypi,github,screen,how to,module,api,example,documentation,README,tkinter,customtkinter,opencv-python,code,2.0.
|
|
11
|
+
Keywords: pygame,splash-screen,loading-screen,python,gui,video,splashscreen,pygame-gui,window,animation,loading,open-cv,naman,chhabra,splash,pypi,github,screen,how to,module,api,example,documentation,README,tkinter,customtkinter,opencv-python,code,2.0.3,player,tutorial
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
Classifier: License :: OSI Approved :: MIT License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
@@ -20,7 +20,6 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
Requires-Dist: pygame
|
|
21
21
|
Requires-Dist: opencv-python
|
|
22
22
|
Requires-Dist: numpy
|
|
23
|
-
Requires-Dist: tkinter
|
|
24
23
|
Dynamic: author
|
|
25
24
|
Dynamic: classifier
|
|
26
25
|
Dynamic: description
|
|
@@ -60,7 +59,7 @@ pip install splashscreen-engine
|
|
|
60
59
|
```
|
|
61
60
|
OR
|
|
62
61
|
```bash
|
|
63
|
-
pip install splashscreen-engine==2.0.
|
|
62
|
+
pip install splashscreen-engine==2.0.3
|
|
64
63
|
```
|
|
65
64
|
|
|
66
65
|
## Example
|
|
@@ -134,7 +133,7 @@ instead of `screen.stop()`
|
|
|
134
133
|
|
|
135
134
|
# Main Screen Example
|
|
136
135
|
|
|
137
|
-
import tkinter #
|
|
136
|
+
import tkinter # Used as main screen for example.
|
|
138
137
|
main_screen = tkinter.Tk()
|
|
139
138
|
|
|
140
139
|
main_screen.geometry("750x500")
|
|
@@ -236,6 +235,10 @@ It usually contains:
|
|
|
236
235
|
screen = splash.Screen(title_bar=True)
|
|
237
236
|
```
|
|
238
237
|
#### Functions for Title Bar
|
|
238
|
+
##### Adding an Icon
|
|
239
|
+
```python
|
|
240
|
+
screen.set_icon("YourIcon.png")
|
|
241
|
+
```
|
|
239
242
|
##### To Check if the user clicked on `X` button
|
|
240
243
|
```python
|
|
241
244
|
screen.is_quit()
|
|
@@ -25,7 +25,7 @@ pip install splashscreen-engine
|
|
|
25
25
|
```
|
|
26
26
|
OR
|
|
27
27
|
```bash
|
|
28
|
-
pip install splashscreen-engine==2.0.
|
|
28
|
+
pip install splashscreen-engine==2.0.3
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
## Example
|
|
@@ -99,7 +99,7 @@ instead of `screen.stop()`
|
|
|
99
99
|
|
|
100
100
|
# Main Screen Example
|
|
101
101
|
|
|
102
|
-
import tkinter #
|
|
102
|
+
import tkinter # Used as main screen for example.
|
|
103
103
|
main_screen = tkinter.Tk()
|
|
104
104
|
|
|
105
105
|
main_screen.geometry("750x500")
|
|
@@ -201,6 +201,10 @@ It usually contains:
|
|
|
201
201
|
screen = splash.Screen(title_bar=True)
|
|
202
202
|
```
|
|
203
203
|
#### Functions for Title Bar
|
|
204
|
+
##### Adding an Icon
|
|
205
|
+
```python
|
|
206
|
+
screen.set_icon("YourIcon.png")
|
|
207
|
+
```
|
|
204
208
|
##### To Check if the user clicked on `X` button
|
|
205
209
|
```python
|
|
206
210
|
screen.is_quit()
|
|
@@ -6,15 +6,14 @@ with open("README.md", "r", encoding="utf-8") as f:
|
|
|
6
6
|
setup(
|
|
7
7
|
name="splashscreen-engine",
|
|
8
8
|
|
|
9
|
-
version="2.0.
|
|
9
|
+
version="2.0.3",
|
|
10
10
|
|
|
11
11
|
py_modules=["splashscreen_engine"],
|
|
12
12
|
|
|
13
13
|
install_requires=[
|
|
14
14
|
"pygame",
|
|
15
15
|
"opencv-python",
|
|
16
|
-
"numpy"
|
|
17
|
-
"tkinter"
|
|
16
|
+
"numpy"
|
|
18
17
|
],
|
|
19
18
|
|
|
20
19
|
author="Naman Chhabra",
|
|
@@ -64,7 +63,7 @@ setup(
|
|
|
64
63
|
"customtkinter",
|
|
65
64
|
"opencv-python",
|
|
66
65
|
"code",
|
|
67
|
-
"2.0.
|
|
66
|
+
"2.0.3",
|
|
68
67
|
"player",
|
|
69
68
|
"tutorial"
|
|
70
69
|
|
{splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/splashscreen_engine.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: splashscreen-engine
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: A module for making Splash Screens with videos, images, loading bars, text rendering, and threaded rendering support for Applications.
|
|
5
5
|
Home-page: https://github.com/NamanChhabra21/splashscreen-engine
|
|
6
6
|
Author: Naman Chhabra
|
|
@@ -8,7 +8,7 @@ License: MIT
|
|
|
8
8
|
Project-URL: Source, https://github.com/NamanChhabra21/splashscreen-engine
|
|
9
9
|
Project-URL: Issues, https://github.com/NamanChhabra21/splashscreen-engine/issues
|
|
10
10
|
Project-URL: Discussions, https://github.com/NamanChhabra21/splashscreen-engine/discussions
|
|
11
|
-
Keywords: pygame,splash-screen,loading-screen,python,gui,video,splashscreen,pygame-gui,window,animation,loading,open-cv,naman,chhabra,splash,pypi,github,screen,how to,module,api,example,documentation,README,tkinter,customtkinter,opencv-python,code,2.0.
|
|
11
|
+
Keywords: pygame,splash-screen,loading-screen,python,gui,video,splashscreen,pygame-gui,window,animation,loading,open-cv,naman,chhabra,splash,pypi,github,screen,how to,module,api,example,documentation,README,tkinter,customtkinter,opencv-python,code,2.0.3,player,tutorial
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
Classifier: License :: OSI Approved :: MIT License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
@@ -20,7 +20,6 @@ Description-Content-Type: text/markdown
|
|
|
20
20
|
Requires-Dist: pygame
|
|
21
21
|
Requires-Dist: opencv-python
|
|
22
22
|
Requires-Dist: numpy
|
|
23
|
-
Requires-Dist: tkinter
|
|
24
23
|
Dynamic: author
|
|
25
24
|
Dynamic: classifier
|
|
26
25
|
Dynamic: description
|
|
@@ -60,7 +59,7 @@ pip install splashscreen-engine
|
|
|
60
59
|
```
|
|
61
60
|
OR
|
|
62
61
|
```bash
|
|
63
|
-
pip install splashscreen-engine==2.0.
|
|
62
|
+
pip install splashscreen-engine==2.0.3
|
|
64
63
|
```
|
|
65
64
|
|
|
66
65
|
## Example
|
|
@@ -134,7 +133,7 @@ instead of `screen.stop()`
|
|
|
134
133
|
|
|
135
134
|
# Main Screen Example
|
|
136
135
|
|
|
137
|
-
import tkinter #
|
|
136
|
+
import tkinter # Used as main screen for example.
|
|
138
137
|
main_screen = tkinter.Tk()
|
|
139
138
|
|
|
140
139
|
main_screen.geometry("750x500")
|
|
@@ -236,6 +235,10 @@ It usually contains:
|
|
|
236
235
|
screen = splash.Screen(title_bar=True)
|
|
237
236
|
```
|
|
238
237
|
#### Functions for Title Bar
|
|
238
|
+
##### Adding an Icon
|
|
239
|
+
```python
|
|
240
|
+
screen.set_icon("YourIcon.png")
|
|
241
|
+
```
|
|
239
242
|
##### To Check if the user clicked on `X` button
|
|
240
243
|
```python
|
|
241
244
|
screen.is_quit()
|
|
File without changes
|
{splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/splashscreen_engine.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{splashscreen_engine-2.0.2 → splashscreen_engine-2.0.3}/splashscreen_engine.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|