Metadata-Version: 2.1
Name: autoimgrenamer
Version: 0.1.1
Summary: A simple tool to rename image files in a folder.
Author: Md. Ismiel Hossen Abir
Author-email: ismielabir1971@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: License

# AutoimgRenamer

AutoimgRenamer is a Python tool to rename image files in a folder with a specified base name and incremental index.

## Installation

You can install AutoimgRenamer from PyPI:

```bash
pip install autoimgrenamer
```

## Usage
```bash
from autoimgrenamer import autoimgrenamer

directory_path = "/path/to/your/images"
new_img_name = 'base'
autoimgrenamer(directory_path, new_img_name)
```
This will rename all supported image files in the directory using the base name (base_0000.PNG, base_0001.PNG, etc.).

Supported Image Formats: JPG, JPEG, PNG, GIF, BMP, WebP
