Skip to main content

This module is called GUIS which means GUI Simplified / Graphial User Interface Simplified. This module helps you in making your Tkinter GUI, Fast and Easy, and our module doesn't need .pack at the end :O

Project description

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...

You can also get this module from github:

www.github.com/Coding-bros/GUIS

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()

For any help contact us:

bkp.karthi@gmail.com
jaideep1163@gmail.com

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

guis-0.0.6.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

guis-0.0.6-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page