Metadata-Version: 2.4
Name: FlashGui
Version: 0.1.3
Summary: ALPHA: A fast and simple GUI library for Python beginners
Author-email: Robert Opris <flashguilib@gmail.com>
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: wxPython>=4.2.1
Requires-Dist: charset-normalizer>=3.0.0

# FlashGUI ⚡
**The easiest way to build Python desktop apps. Perfect for beginners and students!**

📖 **[Read the Documentation](https://flashguilib-debug.github.io/FlushGui/)**

💡 FlashGUI is designed to be extremely simple and educational, especially for young beginners and students. It even includes built-in ready-to-use commands that let you instantly create full applications like a calculator or a window with just a few lines of code—without needing to build everything from scratch.

It serves as the perfect bridge to take you from the text terminal (CLI) to real graphical interfaces (GUI) in minutes.

---

## ⚠️ Alpha Release
**Version:** `0.1.2`  
This is an early version (Alpha) intended for educational testing. We are using it in classrooms and coding bootcamps to make it even easier to learn. Features might improve as we head towards the 1.2 release!

---

## ✨ Why use FlashGUI?

* **🚀 Write Less, Create More:** Simple commands that let you focus on making your app do cool things, rather than worrying about the boring setup.
* **🛠️ Ready-to-Play Examples:** Includes pre-built working modules like `NOTEPAD`, `PAINT`, and `CALCULATOR`. You can open them, study the code, and see exactly how they work!
* **🎒 Classroom Ready:** Zero complex configuration. Install it, write three lines of code, and your app is running.
* **📚 Beginner-Friendly Docs:** Step-by-step guides and easy examples available at our official documentation.
* **💪 Real Power Under the Hood:** Even though it's easy, it uses the professional cross-platform stability of `wxPython`.

---

## 🚀 Your First App in 4 Lines of Code

FlashGUI makes creating an app this simple:

```python
from FlashGUI import WINDOW

app = WINDOW(title="FlashGui")
app.AddLabel(text="Hello, FlashGUI! This is awesome.")
app.run()
