Metadata-Version: 2.1
Name: ASCII-art-tool
Version: 1.0.0
Summary: The ASCII art tool is a simple library to generate ASCII art from regular images.
Home-page: https://github.com/Nabil-Lahssini/ASCII_art_tool
Author: Nabil Lahssini
Author-email: NabilLahssini@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown

# ascii_art
The ascii_art is an open-source library that helps you convert any image into an ASCII-art text file.

## How to get it ?
The ascii_art is a python package that you can simply install using the following command:
```
pip install ascii_art
```
## How to use it ?
To use our library in your code, you need to import it and intialize it, that's all. It's easy !
```
## Import the library
from ascii_art import ascii_generator

## Declaring the path of the input file and the output
input = "C:/Users/Default/Desktop/image.jpg"
output = "./ascii_art.txt"

## Intialize an instance of the library
instance = ascii_generator.Generator(input=input, output=output)

## Execute the art 
instance.execute()
```

