img

A python library to display images in the terminal


Project maintained by AnonymouX47 Hosted on GitHub Pages — Theme by mattgraham

Img

Display Images in your terminal with python

Installation

The package can be installed via pip

pip install terminal-img  

Quick Start

The library is really simple to get started with. Here’s is an example of how you display an image

from image import DrawImage

image = DrawImage("image.png")

You can also use a url if you dont have the file locally stored

image = DrawImage.from_url("url")