upyog


Nameupyog JSON
Version 0.7.14 PyPI version JSON
download
home_pageNone
SummaryMyriad Utilities
upload_time2024-09-05 03:30:57
maintainerNone
docs_urlNone
authorRahul Somani
requires_python<4,>=3.7
licenseMIT
keywords utilities
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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)
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "upyog",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.7",
    "maintainer_email": null,
    "keywords": "utilities",
    "author": "Rahul Somani",
    "author_email": "rsomani95@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c4/07/21379b6dc4699eb731e51bb7ad3747abc77b24ce73a1bd2d86262c9ef70f/upyog-0.7.14.tar.gz",
    "platform": null,
    "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\n\nEnable math like operations for joining PIL Images\n\n```python\nfrom upyog.image import *\n\nimg1 = Image.open(...)\nimg2 = Image.open(...)\n\nhorizontal_join = img1 | img2\nvertical_join = img1 // img2\n\n```\nTo do this over a list of images, use:\n\n```\nimg_join_horizontal(img_list)\nimg_join_vertical(img_list)\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Myriad Utilities",
    "version": "0.7.14",
    "project_urls": null,
    "split_keywords": [
        "utilities"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bd8d96c8aab5f3827a9c78344d55366b687f295c9f98d165d88eaf71d7ddc48",
                "md5": "c235785ce76a8eef689daf9c1c604bc0",
                "sha256": "b325297d435a08cf643857da50a865ae3f1dcac305ff218e45f0da7a0cfcc050"
            },
            "downloads": -1,
            "filename": "upyog-0.7.14-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c235785ce76a8eef689daf9c1c604bc0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.7",
            "size": 205825,
            "upload_time": "2024-09-05T03:30:55",
            "upload_time_iso_8601": "2024-09-05T03:30:55.775120Z",
            "url": "https://files.pythonhosted.org/packages/2b/d8/d96c8aab5f3827a9c78344d55366b687f295c9f98d165d88eaf71d7ddc48/upyog-0.7.14-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c40721379b6dc4699eb731e51bb7ad3747abc77b24ce73a1bd2d86262c9ef70f",
                "md5": "a90812606466554f0b42c49ccb01b186",
                "sha256": "ab799cc068df1c07fc358cc26073f6c07790f6c1c58dc920783d7710db2a8063"
            },
            "downloads": -1,
            "filename": "upyog-0.7.14.tar.gz",
            "has_sig": false,
            "md5_digest": "a90812606466554f0b42c49ccb01b186",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.7",
            "size": 217445,
            "upload_time": "2024-09-05T03:30:57",
            "upload_time_iso_8601": "2024-09-05T03:30:57.596501Z",
            "url": "https://files.pythonhosted.org/packages/c4/07/21379b6dc4699eb731e51bb7ad3747abc77b24ce73a1bd2d86262c9ef70f/upyog-0.7.14.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-05 03:30:57",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "upyog"
}
        
Elapsed time: 0.32008s