Metadata-Version: 2.1
Name: gifgen
Version: 0.9.0
Summary: A package to convert images in folders to GIFs
Home-page: https://github.com/rusty3699/gifgen
Author: Anish Tipnis
Author-email: rusty3699@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: Pillow

# gifgen

gifgen is a Python package for converting images in specified folders into GIFs. It provides a simple interface to create GIF animations from sets of images.

## Features

- Convert images in multiple folders into GIFs.
- Customize GIF duration per frame.
- Simple and easy-to-use interface.

## Installation

You can install gifgen using pip:

```bash
pip install gifgen
```
## Alternate installation
- git clone https://github.com/yourusername/gifgen.git
- cd gifgen
- python setup.py install

## Usage
```
from gifgen.converter import convert_images_to_gif

image_folders = ['path/to/folder1', 'path/to/folder2']
output_folder = 'path/to/output'
convert_images_to_gif(image_folders, output_folder)
```




