Metadata-Version: 2.1
Name: terminal-img
Version: 0.0.1
Summary: Display images in the terminal
Home-page: https://github.com/pranavbaburaj/img
Author: Pranav Baburaj
Author-email: i.am.pranav.baburaj@gmail.com
License: MIT
Description: <div align="center">
        <h1><b>Img</b></h1>
        Display Images in your terminal with python
        
        <hr>
        <img src="https://i.imgur.com/O1zIgca.png">
        <hr>
        </div>
        
        ## Installation
        
        The package can be installed via `pip`
        ```py
        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
        
        ```py
        from image import DraImage
        
        image = DrawImage("image.png")
        ```
        
        > You can also use a url if you dont have the file locally stored
        
        ```py
        image = DrawImage.from_url("url")
        ```
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
