A python module to easily transform image in ascii art.
$ pip install image-to-ascii-pyaoponto
from image_to_ascii import ImageToAscii
obj = ImageToAscii()
# Image path
obj.image_path("link.png")
# print on screen
obj.plot()
# save in a txt file
obj.save_to_file()