Metadata-Version: 2.4
Name: RvLProMaster
Version: 0.2.1
Summary: A Telegram Bot API for Python
Author-email: Yudho Patrianto <kydh01123@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/YudhoPRJKT-Teams/RvLProMaster
Project-URL: Source, https://github.com/YudhoPRJKT-Teams/RvLProMaster
Project-URL: Issues, https://github.com/YudhoPRJKT-Teams/RvLProMaster/issues
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp[speedups]
Requires-Dist: python-dotenv
Requires-Dist: telegraph
Requires-Dist: openai
Requires-Dist: google-genai
Requires-Dist: markdown
Requires-Dist: yt-dlp
Requires-Dist: Pillow
Requires-Dist: aiofiles
Dynamic: license-file

## Hi Welcome To RvLProMaster 

##### First You Need Make Virtual Environment
```bash
python3 -m venv .venv
```

##### You Need Activate Virtual Environment
```bash
source .venv/bin/activate
```

##### Install This Project
```bash
pip install RvLProMaster
```

##### Create File Main.py To Use Bots
```python
from RvLProMaster import RunBOT, Message, bot
import asyncio


@bot.command("/start")
async def command_start():
  await bot.Methods.sendMessage(
  Message.chat.id,
  f"*Hi I'm Bots*",
  "MarkdownV2",
  reply_message=True,
)

if __name__ == __main__:
  try:
  asyncio.run(RunBOT(always_run=True, save_polling=True))
  except KeyboardInterrupt:
    print("\nBot Stopped")
```

### Notes:
The first time the bot is run, you will be asked for a `token` and `endpoint`, so fill it in with the `token` and `endpoint` of your choice.


#### Contact Me
<a href="https://t.me/YudhoPatrianto"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white" /></a>
