Metadata-Version: 2.4
Name: mehta
Version: 1.1.5
Summary: A beginner-friendly telegram sdk providing intuitive command decorators.
Author: Ankit Mehta
Author-email: starexx.m@gmail.com
Maintainer: Ankit Mehta
Maintainer-email: starexx.m@gmail.com
License: MIT
Keywords: telegram bot sdk framework telethon pyTelegramBotAPI telebot bot-development decorator message-handling automation
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyTeleBot>=0.1.0
Requires-Dist: telethon>=1.30.0
Requires-Dist: requests>=2.25.0
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: flake8; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: sphinx-rtd-theme; extra == "docs"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: maintainer
Dynamic: maintainer-email
Dynamic: platform
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

**Note**: This package is a **wrapper** that uses [pyTeleBot](https://github.com/eternnoir/pyTelegramBotAPI) and [Telethon](https://github.com/LonamiWebs/Telethon) for Telegram-related features.  
When you install it, all required dependencies including [pyTeleBot](https://github.com/eternnoir/pyTelegramBotAPI), [Telethon](https://github.com/LonamiWebs/Telethon), and others are automatically installed to ensure full functionality and seamless integration.


## Installation
```sh
pip install mehta
```

## Basic Setup
```python
from mehta import telegram

bot = telegram()

@bot.commands(['start'])
def welcome(message):
    return text("Hello World!")

bot.run("BOT_TOKEN")
```
