Metadata-Version: 2.1
Name: EasyTkValidations
Version: 0.0.2
Summary: To Make Easy Tkinter Entry Validations
Author: DKVG
Author-email: gadellidk@gmail.com
Keywords: Validations EntryValidations TkValidations EasyTk EasyValidations EasyTkValidations
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt

To Make Easy Tkinter Entry Validations

Example :

from tkinter import *

from EasyTkValidations.Validations import EntryValidation

root = Tk()

root.geometry('500x450')

e1 = Entry(root)

e1.place(x=0, y=0)

EntryValidation(entry_widget=e1, entry_placeholder='Enter Value', s=1)

s = 1 : Accept String Values is True.

root.mainloop()
