Metadata-Version: 2.4
Name: termux-zk
Version: 0.1.0
Summary: The Ultimate Termux Scripting Framework - Make your Termux scripts beautiful and powerful.
Home-page: https://github.com/zethkaretjir-del/zk-shell
Author: RianModss (Zeth Karetji)
Author-email: zethkaretjir@gmail.com
Project-URL: Bug Reports, https://github.com/zethkaretjir-del/zk-shell/issues
Project-URL: Source, https://github.com/zethkaretjir-del/zk-shell
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Android
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: black; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

 HEAD
# 🐚 ZK-Shell - The Ultimate Termux Scripting Framework

**ZK-Shell** is a lightweight, pure Python framework designed to make your Termux scripting experience **beautiful**, **easy**, and **powerful**. It wraps common Termux:API functions and provides elegant terminal utilities.

## 🔥 Features

- 🎨 **Beautiful Colors:** Pre-defined color codes and print functions (`print_success`, `print_error`).
- 📊 **Elegant Progress:** `ProgressBar` and `Spinner` classes to make your CLI scripts look professional.
- 📱 **Termux:API Wrapper:** Simple Python functions for SMS, notifications, camera, battery, and more!
- 🌐 **Network Utils:** Check internet, get local/public IP.
- ⚡ **Pure Python:** No heavy dependencies. Perfect for Termux.

## 📦 Installation

```bash
pip install zk-shell
```

🚀 Quick Start

```python
from zk_shell import print_success, get_battery, ProgressBar

# Print a success message
print_success("ZK-Shell is ready!")

# Get battery level
battery = get_battery()
print(f"Battery: {battery}%")

# Use a progress bar
import time
pb = ProgressBar(100, prefix="Processing")
pb.start()
for i in range(100):
    time.sleep(0.01)
    pb.update(i+1)
pb.finish()
```

📚 Documentation

More documentation coming soon! For now, explore the source code—it's clean and well-commented.

🛡️ Author

RianModss (Zeth Karetji)

· GitHub: @zethkaretjir-del

📝 License

MIT License - See LICENSE file.

# zk-shell
 d616d7e6baf16a4e6065c058d02f30ab307ef024
