Metadata-Version: 2.4
Name: FlashGui
Version: 0.1.1
Summary: DEMO VERSION: 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 a powerful but super-simple tool built on top of the `wxPython` engine. If you know basic Python and want to create real windows, buttons, and apps without getting lost in complicated code, this is for you! 

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.0.dev1`  
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.0 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

# 1. Create the main window
app = WINDOW(title="My First App")

# 2. Add some text to it
app.AddLabel(text="Hello, FlashGUI! This is awesome.")

# 3. Run the app!
app.run()
