Metadata-Version: 2.4
Name: shakalizer
Version: 0.1.2
Summary: A lightweight library for deep-frying images and reducing quality
Author: wh0amitg
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: Pillow>=9.0.0

# 📉 Shakalizer

> A lightweight Python library for quickly "deep frying" images: reducing bitrate, adding heavy JPEG artifacts, and scaling down resolution in the style of classic internet memes.

[![PyPI version](https://img.shields.io/pypi/v/shakalizer.svg)](https://pypi.org/project/shakalizer/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

---

## 📦 Installation

Install the library using `pip`:

```bash
pip install shakalizer

```

## 🚀 Quick Start

Just one line of code to turn a crisp image into a compressed masterpiece:

```python
from shakalizer import deep_fry

deep_fry("input.jpg", output_path="output.jpg", quality=5, scale=0.3)

```

## 🛠️ Script Example

```python
from shakalizer import deep_fry

deep_fry(
    image_path="meme.jpg", 
    output_path="meme_shakal.jpg", 
    quality=2, 
    scale=0.2
)

print("Image successfully deep-fried!")

```
