Metadata-Version: 2.4
Name: upyog
Version: 0.7.16
Summary: Myriad Utilities
Author: Rahul Somani
Author-email: rsomani95@gmail.com
License: MIT
Keywords: utilities
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
Requires-Dist: fastcore==1.5.33
Requires-Dist: rich
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: pyarrow
Requires-Dist: pyperclip
Requires-Dist: matplotlib
Requires-Dist: loguru
Requires-Dist: aggdraw
Requires-Dist: typing_extensions
Requires-Dist: exif
Requires-Dist: tabulate
Requires-Dist: pytz
Requires-Dist: seaborn
Requires-Dist: tqdm
Provides-Extra: all
Provides-Extra: dev
Requires-Dist: black<21,>=20.8b1; extra == "dev"
Requires-Dist: pytest<7,>=6; extra == "dev"
Requires-Dist: jupyter<2,>=1.0.0; extra == "dev"
Requires-Dist: pre-commit<3,>=2.8.2; extra == "dev"

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)
```
