Metadata-Version: 2.4
Name: vipzenoxnet
Version: 0.0.2
Summary: Lightweight Rubika Bot library (Bot Token based)
Home-page: https://github.com/yourusername/vipzenoxnet
Author: mahdi bashiru
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 🤖 vipzenoxnet
**Lightweight & Fast Rubika Bot Library using Bot Token**

[![PyPI](https://img.shields.io/pypi/v/vipzenoxnet?color=blue)](https://pypi.org/project/vipzenoxnet/)
[![Python Version](https://img.shields.io/pypi/pyversions/vipzenoxnet)](https://pypi.org/project/vipzenoxnet/)

## 🚀 Features
✅ Simple `@bot.on_message` handler  
✅ `bot.send_message()` & `message.reply()`  
✅ Auto polling (no async)  
✅ Clean and fast

## 🧠 Example
```python
from vipzenoxnet import Bot

bot = Bot("YOUR_BOT_TOKEN")

@bot.on_message
def main(message):
    if message.text == "/start":
        message.reply("🔥 VIP bot activated!")
    else:
        message.reply(f"You said: {message.text}")

bot.start_polling()
```
