Metadata-Version: 2.1
Name: insta-webhook-utils-modernization
Version: 0.2.6
Summary: This package contains the utility functions for Instagram Webhook
Home-page: https://github.com/LocoBuzz-Solutions-Pvt-Ltd/insta_webhook_utils_modernization
Author: Sheikh Muhammed Shoaib
Author-email: shoaib.sheikh@locobuzz.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: Cython
Requires-Dist: jsonschema
Requires-Dist: pytz
Requires-Dist: requests
Requires-Dist: aiohttp

# Basic helper classes for Instagram Webhook

This code provides the common code for the instagram webhook classes that are required for the modification of the data at different services
## Installation

Install the package using pip:

```sh
pip install insta-webhook-utils-modernization
```
# Usage
## Basic Usage
To identify the event type received from the webhook use the following function, it returns the Enum 
```python
from insta_webhook_utils_modernization.indentifier_code import classify_instagram_event, InstagramEventType

event_type: InstagramEventType = classify_instagram_event(event dict|str)

```
