Metadata-Version: 2.4
Name: simplifiedpy
Version: 1.0.0
Summary: A simplified toolkit for GUI, Math, and System tasks.
Author: Mahilini Rajesh
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: customtkinter
Requires-Dist: colorama
Requires-Dist: Pillow
Requires-Dist: plyer

SimplifiedPy v1.0
A simplified toolkit for GUI, Math, and System tasks.

SimplifiedPy is a Python library designed to make coding easier. It combines the power of customtkinter, Pillow, colorama, and plyer into simple, easy-to-use classes. Whether you are building a productivity app, a math blog tool, or a robot controller, SimplifiedPy handles the hard parts for you.

📦 Installation
Once published, you can install it using pip:

Bash
pip install simplifiedpy
🛠 Features
🎨 stkinter (Easy GUIs)
Create modern, dark-mode-ready windows with just a few lines of code.

Simple App Creation: stkinter.create_app()

Automatic Grid Layout: Elements are placed using easy coords=[row, col].

Image Support: Handles Light/Dark mode images automatically.

🔢 smath (Math Made Simple)
Advanced math functions with built-in error checking.

Basic Ops: Add, Subtract, Multiply, Divide.

Logic: isprime(), iscomposite(), isodd(), iseven().

Advanced: Square roots, Exponents, and Percentages.

💻 ssystem & sdatetime
Control your computer and track time effortlessly.

Notifications: Send desktop alerts with ssystem.notification().

File Management: Create, delete, and rename folders easily.

Live Time: Get the date, hour, or even the current second instantly.

🚀 Quick Start Example
Python
from simplifiedpy import stkinter, show

# 1. Create the App
app = stkinter.create_app(name="Mahi App", color_theme="blue")

# 2. Add a Label
stkinter.show_text(app, text="Welcome to SimplifiedPy!", coords=[0, 0])

# 3. Add a Button
stkinter.button(app, text="Click Me", command=lambda: show("Hello!", color="green"), coords=[1, 0])

# 4. Run it!
stkinter.run(app)
📜 License
This project is open-source and free to use!
