Metadata-Version: 2.4
Name: imgif
Version: 0.2.1
Summary: 🎬 A playful Python library for converting image sequences into animated GIFs
Project-URL: Homepage, https://github.com/atick-faisal/img2gif
Project-URL: Documentation, https://imgif.readthedocs.io
Project-URL: Repository, https://github.com/atick-faisal/img2gif
Project-URL: Issues, https://github.com/atick-faisal/img2gif/issues
Author-email: Atick Faisal <atickfaisal@gmail.com>
License: MIT
License-File: LICENSE
Keywords: animation,converter,gif,image,pillow
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.13
Classifier: Topic :: Multimedia :: Graphics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: click>=8.1.0
Requires-Dist: pillow>=10.0.0
Requires-Dist: rich>=13.7.0
Description-Content-Type: text/markdown

<div align="center"><a href="https://donate.unrwa.org/int/en/general"><img src="https://raw.githubusercontent.com/Safouene1/support-palestine-banner/master/banner-support.svg" alt="Support Palestine" style="width: 100%;"></a></div>
<img width="100%" alt="imgif_banner" src="https://github.com/user-attachments/assets/a8637f6f-70d6-4ec5-b827-c3d836543256" />



<p align="center">
    <img src="https://img.shields.io/badge/Python-3.9%2B-blue?style=for-the-badge&colorA=363a4f&colorB=8aadf4&logo=python&logoColor=white"/>
    <img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge&colorA=363a4f&colorB=a6da95&logo=opensourceinitiative&logoColor=white"/>
    <img src="https://img.shields.io/badge/Tests-Passing-success?style=for-the-badge&colorA=363a4f&colorB=a6da95&logo=githubactions&logoColor=white"/>
    <img src="https://img.shields.io/badge/Coverage-82%25-brightgreen?style=for-the-badge&colorA=363a4f&colorB=eed49f&logo=codecov&logoColor=white"/>
</p>

> ✨ A playful Python library for converting image sequences into animated GIFs with ease!

Turn your image sequences into delightful animated GIFs with just a few lines of code. Whether you're creating animations from screenshots, visualizing data, or just having fun, `imgif` makes it simple and enjoyable! 🚀

## 🌟 Features

- 🎨 **Simple API** - Convert images to GIF in just 3 lines of code
- ⚡ **Fast & Efficient** - Built on Pillow for optimal performance
- 🎛️ **Highly Configurable** - Control duration, quality, size, and more
- 💻 **CLI Interface** - Use directly from the command line
- 📝 **Fully Typed** - Complete type annotations for great IDE support
- 🧪 **100% Test Coverage** - Reliable and well-tested
- 🎭 **Rich Output** - Beautiful progress indicators and error messages

## 📦 Installation

```bash
# Using pip
pip install imgif

# Using uv (recommended for development)
uv pip install imgif
```

## 🚀 Quick Start

### Python API

```python
from img2gif import ImageToGifConverter

# Create converter
converter = ImageToGifConverter()

# Convert images to GIF
converter.convert(
    input_dir="./my_images",
    output_path="./output.gif",
    duration=0.5,  # seconds per frame
)

print("🎉 GIF created successfully!")
```

### Command Line

```bash
# Basic usage
imgif ./my_images output.gif

# With options
imgif ./my_images output.gif --duration 0.5 --loop 0

# See all options
imgif --help
```

## 📖 Documentation

Full documentation is available at [imgif.readthedocs.io](https://imgif.readthedocs.io) (coming soon!)

## 🛠️ Development

### Setup

```bash
# Clone the repository
git clone https://github.com/atick-faisal/img2gif.git
cd img2gif

# Install dependencies using uv
uv sync

# Install pre-commit hooks
pre-commit install
```

### Running Tests

```bash
# Run tests on default Python version
hatch run test:all

# Run tests on all supported Python versions
hatch run test:all

# Run with coverage
hatch run test:cov
```

### Linting & Formatting

```bash
# Check code
ruff check .

# Format code
ruff format .
```

## 🤝 Contributing

Contributions are welcome! Please check out our [Contributing Guide](CONTRIBUTING.md) for details.

## 📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

- Built with [Pillow](https://pillow.readthedocs.io/) 📸
- CLI powered by [click](https://click.palletsprojects.com/) 🖱️
- Beautiful output by [rich](https://rich.readthedocs.io/) 💎

---

Made with ❤️ and Python 🐍
