pycimg


Namepycimg JSON
Version 2.0.2 PyPI version JSON
download
home_pagehttps://github.com/d0m3nik/pycimg
SummaryPython extension for the CImg library.
upload_time2023-03-20 17:20:24
maintainer
docs_urlNone
authorDominik Brugger
requires_python
licenseGPL-3.0
keywords image processing library
VCS
bugtrack_url
requirements numpy wheel sphinx_rtd_theme twine conan pytest pytest-cov pybind11
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://github.com/d0m3nik/pycimg/workflows/Build/badge.svg
  :target: https://github.com/d0m3nik/pycimg/actions
  :alt: Build Status
.. image:: https://codecov.io/gh/d0m3nik/pycimg/branch/feature_pybind/graph/badge.svg?token=FGVRN9LTIK
  :target: https://codecov.io/gh/d0m3nik/pycimg
  :alt: Coverage Status
.. image:: https://readthedocs.org/projects/pycimg/badge/?version=latest
  :target: http://pycimg.readthedocs.io/en/latest/?badge=latest
  :alt: Documentation Status
.. image:: https://badge.fury.io/py/pycimg.svg
  :target: https://badge.fury.io/py/pycimg
  :alt: PyPI version

README
======
**pycimg** is a python extension for the CImg_ library.

The package contains a single class CImg that provides access to the
image processing methods of the CImg_ library. 

Pixel data of CImg objects can be accessed as a numpy_ array.

Vice versa new CImg objects can be created from pixel data in a numpy_ array 
or an image file. Supported file formats are png_, jpeg_, tiff_, bmp, and cimg.

.. code-block:: python

     from pycimg import CImg
     import numpy as np

     # Load image from file
     img = CImg('test/test.png')
     img.display()

     # Access pixel data as numpy array
     arr = img.asarray()
     # Set pixels in upper left 100 x 100 px rectangle
     arr[:,:,0:99,0:99] = 0
     # Pixel data is shared with the image instance
     img.display()

     # Create image from numpy array
     img = CImg(np.random.randn(100,100))

Features
--------
- Access pixel data as a numpy_ array.
- Builtin support for reading/writing png_, jpeg_, and tiff_ image formats.

Installation
------------
Install pycimg by running:

.. code-block:: bash

   pip install pycimg

Documentation
-------------
See readthedocs_.

License
-------
The project is licensed under the GPL3 license.

.. _CImg: http://www.cimg.eu
.. _numpy: http://www.numpy.org/
.. _jpeg: https://github.com/libjpeg-turbo/libjpeg-turbo
.. _png: https://github.com/glennrp/libpng/
.. _tiff: https://gitlab.com/libtiff/libtiff
.. _readthedocs: http://pycimg.readthedocs.io/en/latest/ 

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/d0m3nik/pycimg",
    "name": "pycimg",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "image processing library",
    "author": "Dominik Brugger",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/53/da/bd5b03942bba5a84dadf492fe6524a4c741a3ffa186d0764bf6d58a81bb4/pycimg-2.0.2.tar.gz",
    "platform": null,
    "description": ".. image:: https://github.com/d0m3nik/pycimg/workflows/Build/badge.svg\n  :target: https://github.com/d0m3nik/pycimg/actions\n  :alt: Build Status\n.. image:: https://codecov.io/gh/d0m3nik/pycimg/branch/feature_pybind/graph/badge.svg?token=FGVRN9LTIK\n  :target: https://codecov.io/gh/d0m3nik/pycimg\n  :alt: Coverage Status\n.. image:: https://readthedocs.org/projects/pycimg/badge/?version=latest\n  :target: http://pycimg.readthedocs.io/en/latest/?badge=latest\n  :alt: Documentation Status\n.. image:: https://badge.fury.io/py/pycimg.svg\n  :target: https://badge.fury.io/py/pycimg\n  :alt: PyPI version\n\nREADME\n======\n**pycimg** is a python extension for the CImg_ library.\n\nThe package contains a single class CImg that provides access to the\nimage processing methods of the CImg_ library. \n\nPixel data of CImg objects can be accessed as a numpy_ array.\n\nVice versa new CImg objects can be created from pixel data in a numpy_ array \nor an image file. Supported file formats are png_, jpeg_, tiff_, bmp, and cimg.\n\n.. code-block:: python\n\n     from pycimg import CImg\n     import numpy as np\n\n     # Load image from file\n     img = CImg('test/test.png')\n     img.display()\n\n     # Access pixel data as numpy array\n     arr = img.asarray()\n     # Set pixels in upper left 100 x 100 px rectangle\n     arr[:,:,0:99,0:99] = 0\n     # Pixel data is shared with the image instance\n     img.display()\n\n     # Create image from numpy array\n     img = CImg(np.random.randn(100,100))\n\nFeatures\n--------\n- Access pixel data as a numpy_ array.\n- Builtin support for reading/writing png_, jpeg_, and tiff_ image formats.\n\nInstallation\n------------\nInstall pycimg by running:\n\n.. code-block:: bash\n\n   pip install pycimg\n\nDocumentation\n-------------\nSee readthedocs_.\n\nLicense\n-------\nThe project is licensed under the GPL3 license.\n\n.. _CImg: http://www.cimg.eu\n.. _numpy: http://www.numpy.org/\n.. _jpeg: https://github.com/libjpeg-turbo/libjpeg-turbo\n.. _png: https://github.com/glennrp/libpng/\n.. _tiff: https://gitlab.com/libtiff/libtiff\n.. _readthedocs: http://pycimg.readthedocs.io/en/latest/ \n",
    "bugtrack_url": null,
    "license": "GPL-3.0",
    "summary": "Python extension for the CImg library.",
    "version": "2.0.2",
    "split_keywords": [
        "image",
        "processing",
        "library"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9f39c1c1311835f3ec9e9613d1bc51d02197e253fb0e2077d81a740c89662f2",
                "md5": "4c04c4d11b3c053696741e6c23fee843",
                "sha256": "35ee00bf9cd02085cfd62eeaf6dd5e8953524c49f679f1da01b195615b695f69"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp310-cp310-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c04c4d11b3c053696741e6c23fee843",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 5922092,
            "upload_time": "2023-03-20T17:19:52",
            "upload_time_iso_8601": "2023-03-20T17:19:52.619135Z",
            "url": "https://files.pythonhosted.org/packages/e9/f3/9c1c1311835f3ec9e9613d1bc51d02197e253fb0e2077d81a740c89662f2/pycimg-2.0.2-cp310-cp310-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "921af15cb879142c20c278ad4ecb28027f893b400d39e84f719e6cfccd14f452",
                "md5": "59a124fcadb9d8f016e2a8aed86dd5b4",
                "sha256": "fcdc957d7a8cf4ca2a2131f34160d9cd4c7ae695c6c54ff8b3a958f296aeceb7"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59a124fcadb9d8f016e2a8aed86dd5b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3733574,
            "upload_time": "2023-03-20T17:19:54",
            "upload_time_iso_8601": "2023-03-20T17:19:54.570526Z",
            "url": "https://files.pythonhosted.org/packages/92/1a/f15cb879142c20c278ad4ecb28027f893b400d39e84f719e6cfccd14f452/pycimg-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e226f8ed6870a67b58ee14be759596e71871e7fdde8c18e7597fd476844768fb",
                "md5": "2989c90fcfbb6bab1e4d125ddd5fd014",
                "sha256": "3dc1a8a54f320be342036113dcab3045f600d11e97e551bd27a175711fa0ae58"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2989c90fcfbb6bab1e4d125ddd5fd014",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2206930,
            "upload_time": "2023-03-20T17:19:56",
            "upload_time_iso_8601": "2023-03-20T17:19:56.488549Z",
            "url": "https://files.pythonhosted.org/packages/e2/26/f8ed6870a67b58ee14be759596e71871e7fdde8c18e7597fd476844768fb/pycimg-2.0.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25bb4b23231e6b6528ce77cf1841a1a36e1b8abf82fadd81042c4e4b3199096c",
                "md5": "0a336fa0e0ad0242c9acc50cd159ab8f",
                "sha256": "0ce147a399e2990507f051d9ebdd50097f512c0198ff1f4864f290ecc97591b1"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp311-cp311-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a336fa0e0ad0242c9acc50cd159ab8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 5922214,
            "upload_time": "2023-03-20T17:19:58",
            "upload_time_iso_8601": "2023-03-20T17:19:58.506513Z",
            "url": "https://files.pythonhosted.org/packages/25/bb/4b23231e6b6528ce77cf1841a1a36e1b8abf82fadd81042c4e4b3199096c/pycimg-2.0.2-cp311-cp311-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "276cbdd38e7e2f2f7b30eb09dd3c63ca4ef45f9c2c90d2932e9d0808b7199d7d",
                "md5": "09a52f573631cd44da55d3fea2cc8dbe",
                "sha256": "7d4bc47d8cf9ed1f3273684af7c58fe78c395e0ff6e8143d910469d7bd26bad4"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09a52f573631cd44da55d3fea2cc8dbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3733654,
            "upload_time": "2023-03-20T17:20:00",
            "upload_time_iso_8601": "2023-03-20T17:20:00.459637Z",
            "url": "https://files.pythonhosted.org/packages/27/6c/bdd38e7e2f2f7b30eb09dd3c63ca4ef45f9c2c90d2932e9d0808b7199d7d/pycimg-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "88a7a76724df61a82735db9f8ffae2daac3604d9706ac541203204d8fca8d398",
                "md5": "22a9b4d9f503c341e128d686a53dd37b",
                "sha256": "8e25ffe1f2f09f9c6a1a6269c8e8348e7dfc15640d06a9ed4d76d4fc7b3a0187"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "22a9b4d9f503c341e128d686a53dd37b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2207137,
            "upload_time": "2023-03-20T17:20:01",
            "upload_time_iso_8601": "2023-03-20T17:20:01.898588Z",
            "url": "https://files.pythonhosted.org/packages/88/a7/a76724df61a82735db9f8ffae2daac3604d9706ac541203204d8fca8d398/pycimg-2.0.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab77f048fcc2bfed5bb5338d2ade9cad883ab1ec3e73b3fed385295b4b5802fa",
                "md5": "165fcfc56ea4eaeab2c536de3e266ac6",
                "sha256": "8f1d1535bb5975d76157ba1ecfbe0db06f0cf058d54accdd4a776e1f823a927d"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp36-cp36m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "165fcfc56ea4eaeab2c536de3e266ac6",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 5900538,
            "upload_time": "2023-03-20T17:20:04",
            "upload_time_iso_8601": "2023-03-20T17:20:04.163460Z",
            "url": "https://files.pythonhosted.org/packages/ab/77/f048fcc2bfed5bb5338d2ade9cad883ab1ec3e73b3fed385295b4b5802fa/pycimg-2.0.2-cp36-cp36m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee9bcd0efee8f1d86582640cf7be6652976f36677b1fc5a72de7b223741c48dd",
                "md5": "6cfe94ee1221be2519f47b8f495cdbe4",
                "sha256": "905b154d0396d8e82d8dd99263a9ddb91578f70d6faafaf385b13a648cf8cd20"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6cfe94ee1221be2519f47b8f495cdbe4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3764725,
            "upload_time": "2023-03-20T17:20:06",
            "upload_time_iso_8601": "2023-03-20T17:20:06.253367Z",
            "url": "https://files.pythonhosted.org/packages/ee/9b/cd0efee8f1d86582640cf7be6652976f36677b1fc5a72de7b223741c48dd/pycimg-2.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1f538f58461654023940f2bb1db7be138324ebd514abff93d1f1f1922dc6251",
                "md5": "8a84a43ccb2aa8617976f2b9bd587ba2",
                "sha256": "0e1a6a5e5d051fde7bf4d91e7286195f3ce634774117ee7bb7b039cb0a175dc2"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8a84a43ccb2aa8617976f2b9bd587ba2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2235116,
            "upload_time": "2023-03-20T17:20:07",
            "upload_time_iso_8601": "2023-03-20T17:20:07.664937Z",
            "url": "https://files.pythonhosted.org/packages/d1/f5/38f58461654023940f2bb1db7be138324ebd514abff93d1f1f1922dc6251/pycimg-2.0.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d7b0cbc5b255c5e67aaa73d58d70b9eb52ea5bbaa0e7d7b40d9d78d450a3572",
                "md5": "e2dd2d6ee3181c908f15b8932aa4a630",
                "sha256": "63757d558c5e15b8ca17fcbd5b7c3d9186722287b7850b8da466ecd766836063"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e2dd2d6ee3181c908f15b8932aa4a630",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 5900428,
            "upload_time": "2023-03-20T17:20:09",
            "upload_time_iso_8601": "2023-03-20T17:20:09.195477Z",
            "url": "https://files.pythonhosted.org/packages/2d/7b/0cbc5b255c5e67aaa73d58d70b9eb52ea5bbaa0e7d7b40d9d78d450a3572/pycimg-2.0.2-cp37-cp37m-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2752ec727a07ddb84ca2bd247c4b1c82d37d5ba6b60b1208c11e8d28e6b779d7",
                "md5": "01ff95e49b2fce92a1586ea929f141c6",
                "sha256": "7a5f4019d784bba512cf0ce80081b70b795a594c590bc5e6036fc23dd8381f19"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "01ff95e49b2fce92a1586ea929f141c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3764712,
            "upload_time": "2023-03-20T17:20:11",
            "upload_time_iso_8601": "2023-03-20T17:20:11.263044Z",
            "url": "https://files.pythonhosted.org/packages/27/52/ec727a07ddb84ca2bd247c4b1c82d37d5ba6b60b1208c11e8d28e6b779d7/pycimg-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a11d32fdd6cf8690b19b5305ff35cb1db3de7b81760ac9a8cbf5ceb3c85dcc3c",
                "md5": "2ad4ff32711a7ca0b380875ca9d1b476",
                "sha256": "842c30a7f688866dc1230e64d7168935ac4949cd46cbeb886f7c2d9e384e8c00"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2ad4ff32711a7ca0b380875ca9d1b476",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2231702,
            "upload_time": "2023-03-20T17:20:12",
            "upload_time_iso_8601": "2023-03-20T17:20:12.672505Z",
            "url": "https://files.pythonhosted.org/packages/a1/1d/32fdd6cf8690b19b5305ff35cb1db3de7b81760ac9a8cbf5ceb3c85dcc3c/pycimg-2.0.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "972eb3e883b75d6edd02cd55eaa6066fc3a674b4af49c0f59819c70ab4302e90",
                "md5": "44f0cc8bf0bf9792f4a6f5d0062c68fd",
                "sha256": "71da441cad142d255d4ac2cb9b447d2ed673e37bef09de48f7f5fc0c76a861ef"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44f0cc8bf0bf9792f4a6f5d0062c68fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 5922136,
            "upload_time": "2023-03-20T17:20:15",
            "upload_time_iso_8601": "2023-03-20T17:20:15.085815Z",
            "url": "https://files.pythonhosted.org/packages/97/2e/b3e883b75d6edd02cd55eaa6066fc3a674b4af49c0f59819c70ab4302e90/pycimg-2.0.2-cp38-cp38-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cda251ae440245a84a1219eab7f55f3f5be7c9cdf5a5191b5c11917c644fb12",
                "md5": "ce599d2142fcc0c6d4307a6b701829e6",
                "sha256": "441906530a8a251311e9ca5c6fa5ada84282c1f5c3b32af35704febeacf1bf9f"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce599d2142fcc0c6d4307a6b701829e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3727844,
            "upload_time": "2023-03-20T17:20:17",
            "upload_time_iso_8601": "2023-03-20T17:20:17.331532Z",
            "url": "https://files.pythonhosted.org/packages/3c/da/251ae440245a84a1219eab7f55f3f5be7c9cdf5a5191b5c11917c644fb12/pycimg-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8b0de93c0a05f978cff14b376dfb5c192657109800ee952e55c60130bab55b1",
                "md5": "5113e3e0b0dc6338d25dc88f27c9e5e8",
                "sha256": "c9d4777c6477fa0366fe71a7b3379e5f5454594a18edfc7ebb540f1079e9f0c9"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5113e3e0b0dc6338d25dc88f27c9e5e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2207096,
            "upload_time": "2023-03-20T17:20:18",
            "upload_time_iso_8601": "2023-03-20T17:20:18.829918Z",
            "url": "https://files.pythonhosted.org/packages/a8/b0/de93c0a05f978cff14b376dfb5c192657109800ee952e55c60130bab55b1/pycimg-2.0.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89311362e1e12e18a0b7ca3b3e5792c56fb6e8a48807769603f57a3081168389",
                "md5": "002b6cb36c3912e19865cbc830d5af35",
                "sha256": "2066d78dbda1c882ce9b0b07efceda96ed8abad90256d3fa842af3422477a631"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "002b6cb36c3912e19865cbc830d5af35",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 5922233,
            "upload_time": "2023-03-20T17:20:20",
            "upload_time_iso_8601": "2023-03-20T17:20:20.192315Z",
            "url": "https://files.pythonhosted.org/packages/89/31/1362e1e12e18a0b7ca3b3e5792c56fb6e8a48807769603f57a3081168389/pycimg-2.0.2-cp39-cp39-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "560e7e7cbeed238f96b92c31f46ab3cc4cf8e8ec2adb4069d06d354a59418c78",
                "md5": "34e344ef519befec1a09508b2cd8dd25",
                "sha256": "f917e9fa77a2fd4b9614408767f6801973b9c08c6331049f271ce4c031bc3c76"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34e344ef519befec1a09508b2cd8dd25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3728971,
            "upload_time": "2023-03-20T17:20:21",
            "upload_time_iso_8601": "2023-03-20T17:20:21.581040Z",
            "url": "https://files.pythonhosted.org/packages/56/0e/7e7cbeed238f96b92c31f46ab3cc4cf8e8ec2adb4069d06d354a59418c78/pycimg-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3347c5ed864fb692671aa22ca9992290a2d41da7eb273aa9ca6a2aa0ad45a6e7",
                "md5": "8c33cdba685879490be5a1fbb771972c",
                "sha256": "dda87b6f716f92f83c4afb89dfc38d9be01517924be071dc309f1d521a73fd80"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8c33cdba685879490be5a1fbb771972c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2269985,
            "upload_time": "2023-03-20T17:20:22",
            "upload_time_iso_8601": "2023-03-20T17:20:22.891220Z",
            "url": "https://files.pythonhosted.org/packages/33/47/c5ed864fb692671aa22ca9992290a2d41da7eb273aa9ca6a2aa0ad45a6e7/pycimg-2.0.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53dabd5b03942bba5a84dadf492fe6524a4c741a3ffa186d0764bf6d58a81bb4",
                "md5": "1d3132281b1f9011d326acc653c66475",
                "sha256": "5d03eeddc5d29144d1817161ededdd63a7b82230368ee10b10351e2197b7c228"
            },
            "downloads": -1,
            "filename": "pycimg-2.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "1d3132281b1f9011d326acc653c66475",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 14577,
            "upload_time": "2023-03-20T17:20:24",
            "upload_time_iso_8601": "2023-03-20T17:20:24.255832Z",
            "url": "https://files.pythonhosted.org/packages/53/da/bd5b03942bba5a84dadf492fe6524a4c741a3ffa186d0764bf6d58a81bb4/pycimg-2.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-20 17:20:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "d0m3nik",
    "github_project": "pycimg",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.11.0"
                ]
            ]
        },
        {
            "name": "wheel",
            "specs": [
                [
                    ">=",
                    "0.30.0"
                ]
            ]
        },
        {
            "name": "sphinx_rtd_theme",
            "specs": [
                [
                    ">=",
                    "0.2.4"
                ]
            ]
        },
        {
            "name": "twine",
            "specs": []
        },
        {
            "name": "conan",
            "specs": [
                [
                    "==",
                    "1.59.0"
                ]
            ]
        },
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "pytest-cov",
            "specs": []
        },
        {
            "name": "pybind11",
            "specs": []
        }
    ],
    "lcname": "pycimg"
}
        
Elapsed time: 0.15520s