Metadata-Version: 2.1
Name: upyog
Version: 0.3.0
Summary: Myriad Utilities
Home-page: UNKNOWN
Author: Rahul Somani
Author-email: rsomani95@gmail.com
License: MIT
Description: This package is a collection of utilities that I find myself using across the various projects I've worked on in the past. Some have been extracted from packages, some from blog posts / stack overflow solutions, and some my own. Wherever possible, I have cited the source. Please do let me know if I missed out
        
        Enable math like operations for joining PIL Images
        
        ```python
        from upyog.image import *
        
        img1 = Image.open(...)
        img2 = Image.open(...)
        
        horizontal_join = img1 | img2
        vertical_join = img1 // img2
        
        ```
        To do this over a list of images, use:
        
        ```
        img_join_horizontal(img_list)
        img_join_vertical(img_list)
        ```
        
Keywords: utilities
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: <4,>=3.7
Description-Content-Type: text/markdown
Provides-Extra: all
Provides-Extra: dev
