Metadata-Version: 2.1
Name: tksplash
Version: 0.0.4
Summary: Creates splash screens for GUIs
Home-page: UNKNOWN
Author: MrHola21 (Gautam Singh)
Author-email: projpy6969@gmail.com
License: UNKNOWN
Keywords: python,Guis,GUI,Gui,splash screen
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown

The tksplash module can be used to make splash screens for all of your GUIs which you make using tkinter 😁

These are some examples on how to use this module 🤨 :

```
import tkinter
import tksplash

window = tkinter.Tk() #making a basic window 

width = window.winfo_screenwidth() # getting the screen width
height = window.winfo_screenheight() # getting the screen height

window.geometry("%dx%d" % (width, height)) # setting the window with respect to the height and width

tksplash.splash_screen(window, "Hello World", width, height, 100) # this impliments the splash_screen

window.mainloop()
````
______________
the `tksplash.splash_screen()` takes in exactly 8 arguments and out of which only 5 are required the other 3 are
optional 😏


`window, text, width, height, font_size`

these are the required values 👆👆

`font_style , text_colour , time_after_which_it_should_destroy`

these are the optional values 👆👆
___
`window`--> you have to provide the name of the window 🖥

`text`--> the text you want to display 📕

`widht`--> the width of the window 

`height`--> the height of the window

`font_size`--> the value for the font size 🔈 🔉 🔊

`font_style`--> which font style do you want ?? 😎

`text_colour`--> the colour of the fonts 🌈

`time_after_which_it_should_destroy` --> the time that the text is being shown 🕛

_________________________

An  example using all the arguments

```
import tkinter
import tksplash

window = tkinter.Tk()
width = window.winfo_screenwidth()
height = window.winfo_screenheight()

window.geometry("%dx%d" % (width, height))

tksplash.splash_screen(window, "Hello World", width, height, 100, font_style="Lucida Grande", text_colour='white',time_after_which_it_should_destroy=3000)

window.mainloop()
```

⚠⚠⚠⚠

**Note**->the `text_colour` can also be written as `#RRGGBB` 🌈

**Note**->The value of `time_after_which_it_should_destroy` should be entered in millisecond(ms), (1 s = 1000ms) 🕛



