Metadata-Version: 2.4
Name: ascii_art_python
Version: 0.1.1
Summary: A Python library for converting images and videos into ASCII art.
Author-email: Guillem Prieur <prieurguillem38@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: pillow
Requires-Dist: tqdm
Requires-Dist: opencv-python
Dynamic: license-file

# Ascii Art Python

A Python library that makes it easy to convert images and videos to ASCII Art.

## Installation

You can install the library locally or (if you plan to publish it later) via pip:

```bash
pip install ascii-art-python
```

## Dependencies

This project uses the following libraries:

- Pillow (image manipulation)
- opencv-python (video reading and writing)
- tqdm (progress bar)
- requests

## Usage

Here is a basic example of how to use the library:

```python
from ascii_art_python.new_school import ImageAscii
from PIL import Image

# Load an image with Pillow
img = Image.open("mon_image.jpg")

# Convert to ASCII
ascii_converter = ImageAscii(img)
ascii_converter.export("mon_export", export_type="txt")
```
