Metadata-Version: 2.1
Name: irene_pro
Version: 0.0.80
Summary: Use customized GUI
Author: Irene coldsober
Author-email: <irene.study.2023@gmail.com>
Keywords: tkinter,widget,gui
Classifier: Development Status :: 5 - Production/Stable
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
License-File: LICENSE


# 'irene-pro'



This is my customized user interface which is rooted from tkinter package.

nothing big that I did from here that is different from what already in tkinter, but I rather set my default parameters and 

styles for those rooted to ttk, example Combobox.



this is the first version, and later I will keep making extra-improvement including adding default icons to buttons and other

cool stuffs until it will be large package or framework in coming years.



=========how to use the package======

from irene-pro import widgets, logic



# create button

button = widgets.btn(master = root, text = 'send')

button.pack(side = LEFT)



# create table gui

table = widgets.Table_gui(parent = root)



