upyog


Nameupyog JSON
Version 0.7.9 PyPI version JSON
download
home_page
SummaryMyriad Utilities
upload_time2023-08-28 05:50:19
maintainer
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": "",
    "name": "upyog",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "<4,>=3.7",
    "maintainer_email": "",
    "keywords": "utilities",
    "author": "Rahul Somani",
    "author_email": "rsomani95@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c6/29/e27589758c85f908630630ef09265e86a7aedc2cb4a8c9d957d7b47a65b2/upyog-0.7.9.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.9",
    "project_urls": null,
    "split_keywords": [
        "utilities"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "577275c44aead83e174ed2fadb5a78f3ebd229ee13525594ab515d322a98d792",
                "md5": "92ec8fce0cc87ee06c817d0482f28f05",
                "sha256": "30e6106f8965795109fdb63370357e1fa6dcb786c79db00a7c38b3951a143760"
            },
            "downloads": -1,
            "filename": "upyog-0.7.9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "92ec8fce0cc87ee06c817d0482f28f05",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.7",
            "size": 198065,
            "upload_time": "2023-08-28T05:50:11",
            "upload_time_iso_8601": "2023-08-28T05:50:11.098241Z",
            "url": "https://files.pythonhosted.org/packages/57/72/75c44aead83e174ed2fadb5a78f3ebd229ee13525594ab515d322a98d792/upyog-0.7.9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c629e27589758c85f908630630ef09265e86a7aedc2cb4a8c9d957d7b47a65b2",
                "md5": "8aa05f30f48ac39ca46294c0ece2ff9d",
                "sha256": "d065d56aaea3d186c8cce660597e9983de5e19ec443f2986faec0e0acc72dfa9"
            },
            "downloads": -1,
            "filename": "upyog-0.7.9.tar.gz",
            "has_sig": false,
            "md5_digest": "8aa05f30f48ac39ca46294c0ece2ff9d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.7",
            "size": 210926,
            "upload_time": "2023-08-28T05:50:19",
            "upload_time_iso_8601": "2023-08-28T05:50:19.903888Z",
            "url": "https://files.pythonhosted.org/packages/c6/29/e27589758c85f908630630ef09265e86a7aedc2cb4a8c9d957d7b47a65b2/upyog-0.7.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-28 05:50:19",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "upyog"
}
        
Elapsed time: 0.11907s