Metadata-Version: 2.4
Name: eazyctk
Version: 0.0.1
Summary: A simple wrapper for customtkinter
Author-email: Marius <negoitamarius2015.2@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: customtkinter
Dynamic: license-file

# eazyctk

`eazyctk` is a simplified wrapper for `customtkinter`, designed to make building GUI applications in Python faster and easier.

## Features
* **Simplified UI creation**: Quickly create labels, buttons, and entries with less code.
* **State Management**: Automatically keeps track of your widgets in simple dictionaries.
* **Built-in Examples**: Includes helper functions like `exampleWindow()` to get you started immediately.

## Quick Example
Here is how easy it is to create a calculator using `eazyctk`:

```python
from eazyctk import *

createWindow("400x400", "My App")
createLabel("lbl1", "Hello World!", 20, 20)
createButton("btn1", "Click Me", lambda: print("Clicked!"), 20, 60)
start()
