Metadata-Version: 2.4
Name: apkpy
Version: 0.1.0
Summary: A simple framework to build Android apps using Python and CSS-like styling
Home-page: https://github.com/teu-usuario/apkpy
Author: Teu Nome
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: click
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# APKPy ðŸš€

A lightweight Python framework to build Android apps with a simple syntax and CSS-like styling. 

APKPy allows you to create mobile interfaces using Python functions and style them with a CSS-inspired syntax, providing a real-time preview on Windows before compiling to Android.

## Installation

```bash
pip install apkpy
Quick Start
Create a file named writehere.py:

Python
from apkpy_lib.ui import button, input_field, run

# Define your styles
style = """
main_button {
    background-color: blue;
    color: white;
}
"""

# Build your UI
input_field(placeholder="Enter your name")
button("Click Me", id="main_button")

# Run the Windows preview
run()
How to Run
To see your app preview on Windows, simply run:

Bash
python writehere.py
To build your Android project (APK structure):

Bash
apkpy build
Features
Python-based UI: No need to learn complex XML.

CSS Styling: Easy styling with a familiar syntax.

Instant Preview: See how your app looks on Windows immediately.

Android Ready: Transpiles your Python code into native Java code.
