Skip to content

Coding-bros/GUIS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 

Repository files navigation

What Does GUIS Mean?

GUIS is GUI / Graphical User Interface Simplified

This is a module based on Tkinter, This helps you make you Tkinter code Fast, Easy, and our Module doesn't need .pack() for Labels, Buttons, etc...

Installation

pip install guis

or

pip3 install guis

Use of GUIS

Using guis

import guis

guis.makeWindow("Window-Title", "200x200", "orange")

guis.makeLabel("This is a Label", "black", "white")

guis.makeButton("Click me", "white", "black")

guis.mainloop()

Using Tkinter

from tkinter import *

Window = Tk()

window.title("Window-Title")

window.geometry("200x200")

window.configure(bg = "orange")

Label(text = "This is a Label", bg = "black", fg = "white").pack()

Button(text = "Click me", bg = "white", fg = "black").pack()


window.mainloop()

If any problems, Feel Free to Contact Us:

----------Thank You--------

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages