Metadata-Version: 2.4
Name: mehta
Version: 1.0.8
Summary: A telegram and instagram SDK with clean and beginner-friendly command decorators.
Author: Ankit Mehta
Author-email: starexx.m@gmail.com
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
License-File: LICENSE
Requires-Dist: pyTeleBot
Requires-Dist: telebot
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

**Note**: This package requires pyTeleBot for Telegram features and instabot for Instagram functionality. These dependencies will be automatically installed with Mehta. Make sure to use Instagram automation responsibly to avoid account restrictions from the platform.


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

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

bot = telegram()

@bot.commands(['start'])
def welcome(message):
    return {
        'type': 'text',
        'text': 'Hello World!'
    } 

bot.run("BOT_TOKEN")
```

## Instagram Setup
```python
from mehta import instagram

bot = instagram()

@bot.commands(['start'])
def welcome(message):
    return {
        'type': 'dm',
        'text': 'Hello World!'
    }

bot.run(username="your_username", password="your_password")
```
