zxing-cpp


Namezxing-cpp JSON
Version 2.2.0 PyPI version JSON
download
home_pagehttps://github.com/zxing-cpp/zxing-cpp
SummaryPython bindings for the zxing-cpp barcode library
upload_time2023-12-08 20:37:18
maintainer
docs_urlNone
authorZXing-C++ Community
requires_python>=3.6
licenseApache License 2.0
keywords barcode
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Python bindings for zxing-cpp

[![Build + Deploy](https://github.com/zxing-cpp/zxing-cpp/actions/workflows/python-build.yml/badge.svg)](https://github.com/zxing-cpp/zxing-cpp/actions/workflows/python-build.yml)
[![PyPI](https://img.shields.io/pypi/v/zxing-cpp.svg)](https://pypi.org/project/zxing-cpp/)

## Installation

```bash
pip install zxing-cpp
```
or

```bash
python setup.py install
```

[Note: To install via `setup.py` (or via `pip install` in case there is no pre-build wheel available for your platfor or python version), you need a suitable [build environment](https://github.com/zxing-cpp/zxing-cpp#build-instructions) including a c++ compiler.]

## Usage

```python
import cv2, zxingcpp

img = cv2.imread('test.png')
results = zxingcpp.read_barcodes(img)
for result in results:
	print('Found barcode:'
		f'\n Text:    "{result.text}"'
		f'\n Format:   {result.format}'
		f'\n Content:  {result.content_type}'
		f'\n Position: {result.position}')
if len(results) == 0:
	print("Could not find any barcode.")
```

To get a full list of available parameters for `read_barcodes` and `write_barcode` as well as the properties of the result objects, have a look at the `PYBIND11_MODULE` definition in [this c++ source file](https://github.com/zxing-cpp/zxing-cpp/blob/master/wrappers/python/zxing.cpp).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zxing-cpp/zxing-cpp",
    "name": "zxing-cpp",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "barcode",
    "author": "ZXing-C++ Community",
    "author_email": "zxingcpp@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a7/8f/77828ef6e7bcad2ed17da58a4af833fce52e2afb6e72214e0403fa0ef197/zxing-cpp-2.2.0.tar.gz",
    "platform": null,
    "description": "# Python bindings for zxing-cpp\n\n[![Build + Deploy](https://github.com/zxing-cpp/zxing-cpp/actions/workflows/python-build.yml/badge.svg)](https://github.com/zxing-cpp/zxing-cpp/actions/workflows/python-build.yml)\n[![PyPI](https://img.shields.io/pypi/v/zxing-cpp.svg)](https://pypi.org/project/zxing-cpp/)\n\n## Installation\n\n```bash\npip install zxing-cpp\n```\nor\n\n```bash\npython setup.py install\n```\n\n[Note: To install via `setup.py` (or via `pip install` in case there is no pre-build wheel available for your platfor or python version), you need a suitable [build environment](https://github.com/zxing-cpp/zxing-cpp#build-instructions) including a c++ compiler.]\n\n## Usage\n\n```python\nimport cv2, zxingcpp\n\nimg = cv2.imread('test.png')\nresults = zxingcpp.read_barcodes(img)\nfor result in results:\n\tprint('Found barcode:'\n\t\tf'\\n Text:    \"{result.text}\"'\n\t\tf'\\n Format:   {result.format}'\n\t\tf'\\n Content:  {result.content_type}'\n\t\tf'\\n Position: {result.position}')\nif len(results) == 0:\n\tprint(\"Could not find any barcode.\")\n```\n\nTo get a full list of available parameters for `read_barcodes` and `write_barcode` as well as the properties of the result objects, have a look at the `PYBIND11_MODULE` definition in [this c++ source file](https://github.com/zxing-cpp/zxing-cpp/blob/master/wrappers/python/zxing.cpp).\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Python bindings for the zxing-cpp barcode library",
    "version": "2.2.0",
    "project_urls": {
        "Homepage": "https://github.com/zxing-cpp/zxing-cpp"
    },
    "split_keywords": [
        "barcode"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11b12c58169b415b2e3a472ddb26150d95e717e5247c78abbc552718ed549884",
                "md5": "2595a6bc07c5dcd4dfee49e3418bd37e",
                "sha256": "eb8ede507dad76d0ed606c17be943cfe554909cdb517f7650da076e8dc9648c0"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2595a6bc07c5dcd4dfee49e3418bd37e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 1500775,
            "upload_time": "2023-12-08T20:35:57",
            "upload_time_iso_8601": "2023-12-08T20:35:57.708312Z",
            "url": "https://files.pythonhosted.org/packages/11/b1/2c58169b415b2e3a472ddb26150d95e717e5247c78abbc552718ed549884/zxing_cpp-2.2.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64e478913f55bde52a80e282f98a3ff1ba21ae534dc6a2a865fae1fbaf408203",
                "md5": "64c5bb685747378fed7990a342d5004a",
                "sha256": "5e8bae00edea7f6350ced4f954ca2c3386afbf6d85d3303126f9cf8584cec454"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "64c5bb685747378fed7990a342d5004a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 962999,
            "upload_time": "2023-12-08T20:36:01",
            "upload_time_iso_8601": "2023-12-08T20:36:01.764558Z",
            "url": "https://files.pythonhosted.org/packages/64/e4/78913f55bde52a80e282f98a3ff1ba21ae534dc6a2a865fae1fbaf408203/zxing_cpp-2.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5747dad02f727f908045e2abd8e0e930e7f20e6d1566e30e64fb0578a42af0a9",
                "md5": "92cbfe67a83dbb23b9e31485edeac6ba",
                "sha256": "8256ed05d0978e87847e91e2aff03b21c19cf4256dcb8af8a335de8361f027be"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92cbfe67a83dbb23b9e31485edeac6ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 940030,
            "upload_time": "2023-12-08T20:36:05",
            "upload_time_iso_8601": "2023-12-08T20:36:05.997883Z",
            "url": "https://files.pythonhosted.org/packages/57/47/dad02f727f908045e2abd8e0e930e7f20e6d1566e30e64fb0578a42af0a9/zxing_cpp-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "22f209e03bbc2317de1b0916e0162871f40e6b4769c367ac7144f80e08d4a8d5",
                "md5": "85fcc982feaef79bc0b33198e2242841",
                "sha256": "5e788ec26d10ac057f5027357ab404b1de2dd3ce216c1d0be20437dcd37f1afc"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "85fcc982feaef79bc0b33198e2242841",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 628574,
            "upload_time": "2023-12-08T20:36:09",
            "upload_time_iso_8601": "2023-12-08T20:36:09.711080Z",
            "url": "https://files.pythonhosted.org/packages/22/f2/09e03bbc2317de1b0916e0162871f40e6b4769c367ac7144f80e08d4a8d5/zxing_cpp-2.2.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc0b483db6155ca3ff6f70a9d4e29ba88dd4e67801517cdf330a97c370ede32d",
                "md5": "b50afde1e97d74c904ceaedd2e8fee4b",
                "sha256": "b69dcee874b59201a586e8fc77a7f83a92cd09d029d22a8b7b4f7112db2c675f"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b50afde1e97d74c904ceaedd2e8fee4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 692016,
            "upload_time": "2023-12-08T20:36:13",
            "upload_time_iso_8601": "2023-12-08T20:36:13.317616Z",
            "url": "https://files.pythonhosted.org/packages/bc/0b/483db6155ca3ff6f70a9d4e29ba88dd4e67801517cdf330a97c370ede32d/zxing_cpp-2.2.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20dc4f301d215b77b7a256b1b98a3ca9449f13417f96d5489a2ecff0a7dacbb4",
                "md5": "faacfa86bc1f3cb9807ab1db71032ece",
                "sha256": "f7d63385278ed2c674c756fe3448769b813351584e111cb61e6901a5e3dbf646"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "faacfa86bc1f3cb9807ab1db71032ece",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 1503237,
            "upload_time": "2023-12-08T20:36:18",
            "upload_time_iso_8601": "2023-12-08T20:36:18.370963Z",
            "url": "https://files.pythonhosted.org/packages/20/dc/4f301d215b77b7a256b1b98a3ca9449f13417f96d5489a2ecff0a7dacbb4/zxing_cpp-2.2.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "24a8393de9c47df6bdfca7cbc64a591ce26550bd176b09b22eb180bf99c3a3d4",
                "md5": "10a264d995921a6427bb436c578adc6c",
                "sha256": "7d9e7369bba46727e4a7fa1b5bd2b630696ec042df60063c13f2d844887950b1"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "10a264d995921a6427bb436c578adc6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 964092,
            "upload_time": "2023-12-08T20:36:22",
            "upload_time_iso_8601": "2023-12-08T20:36:22.095221Z",
            "url": "https://files.pythonhosted.org/packages/24/a8/393de9c47df6bdfca7cbc64a591ce26550bd176b09b22eb180bf99c3a3d4/zxing_cpp-2.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cbc1dcd5e242c252ca3ea84acf8cf6e533b4cc90a1171c9d1a7457f24ca19aca",
                "md5": "af4c099d54dc756491600f7be7dac3ff",
                "sha256": "8602d7cad833007df497b8db7c1216fc7d21e077eb02206b45f4fc061b082913"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af4c099d54dc756491600f7be7dac3ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 941408,
            "upload_time": "2023-12-08T20:36:25",
            "upload_time_iso_8601": "2023-12-08T20:36:25.052439Z",
            "url": "https://files.pythonhosted.org/packages/cb/c1/dcd5e242c252ca3ea84acf8cf6e533b4cc90a1171c9d1a7457f24ca19aca/zxing_cpp-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acfaf4c855c57c8b9bdf9c9bcce891b5da6cffb09331adf38e086c2908d83f41",
                "md5": "8d5145f525aed0a2afa42074b9143424",
                "sha256": "e2059fb6d47eb80122856d1524611339bffe27ad7e4cf59bdb6d642989e238b4"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "8d5145f525aed0a2afa42074b9143424",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 628452,
            "upload_time": "2023-12-08T20:36:27",
            "upload_time_iso_8601": "2023-12-08T20:36:27.962226Z",
            "url": "https://files.pythonhosted.org/packages/ac/fa/f4c855c57c8b9bdf9c9bcce891b5da6cffb09331adf38e086c2908d83f41/zxing_cpp-2.2.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "688a22c3d653c31cba5866c36877e6ef80786af8f4aea375c3f258a66539995f",
                "md5": "de42540307863e72846c14dee841d4e2",
                "sha256": "70f9f13c4c91cb0747c0dc7ef247b39e19d38d07efd695fac17d11832f93d44a"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "de42540307863e72846c14dee841d4e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 692361,
            "upload_time": "2023-12-08T20:36:30",
            "upload_time_iso_8601": "2023-12-08T20:36:30.568565Z",
            "url": "https://files.pythonhosted.org/packages/68/8a/22c3d653c31cba5866c36877e6ef80786af8f4aea375c3f258a66539995f/zxing_cpp-2.2.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad030244ec65840eb58698dc820877c30388a54ac90ea26b72f0a80565da2280",
                "md5": "2d3b460db7a75ac44fb76ea5a85cceda",
                "sha256": "177d5ed00c505e1728a90dc4742c6f0a4d9c2db56101809762f10f98fb822fa2"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2d3b460db7a75ac44fb76ea5a85cceda",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 1504810,
            "upload_time": "2023-12-08T20:36:34",
            "upload_time_iso_8601": "2023-12-08T20:36:34.401470Z",
            "url": "https://files.pythonhosted.org/packages/ad/03/0244ec65840eb58698dc820877c30388a54ac90ea26b72f0a80565da2280/zxing_cpp-2.2.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69df59e2016085a61868570f071f2a40e050cf65e7c8267c86bfe935be3b17d1",
                "md5": "a1bdc61c3de3f520b046cd2bb06b0c51",
                "sha256": "a9868fbb9770ef2a2b72b6fe67d7528b9e4858ba6a130e59969ecb2e71271cd1"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a1bdc61c3de3f520b046cd2bb06b0c51",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 962759,
            "upload_time": "2023-12-08T20:36:37",
            "upload_time_iso_8601": "2023-12-08T20:36:37.170907Z",
            "url": "https://files.pythonhosted.org/packages/69/df/59e2016085a61868570f071f2a40e050cf65e7c8267c86bfe935be3b17d1/zxing_cpp-2.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a2411d8dc758a044cb921f5f34d3136fee5f0896f37b9eab7ee3f9d47f8ad46",
                "md5": "54a6bb9f576bbe94eb350d0e855b5d58",
                "sha256": "c0b35274af536ac9091d446ba0f69840feba62525feddf24b7b8991d924d6543"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "54a6bb9f576bbe94eb350d0e855b5d58",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 939677,
            "upload_time": "2023-12-08T20:36:40",
            "upload_time_iso_8601": "2023-12-08T20:36:40.170513Z",
            "url": "https://files.pythonhosted.org/packages/5a/24/11d8dc758a044cb921f5f34d3136fee5f0896f37b9eab7ee3f9d47f8ad46/zxing_cpp-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b8e33c867704d8b7fd366e3d1cc2b3e4ad0cad0816a437ebba1f1eda8cbdb91",
                "md5": "cd9a3af6e56efd0c0d35d2baf3a8cd0b",
                "sha256": "c2ff0059eef121ae7769ba4baeee52172438ca770cb4054e1d114beeda66226d"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "cd9a3af6e56efd0c0d35d2baf3a8cd0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 628886,
            "upload_time": "2023-12-08T20:36:43",
            "upload_time_iso_8601": "2023-12-08T20:36:43.115514Z",
            "url": "https://files.pythonhosted.org/packages/6b/8e/33c867704d8b7fd366e3d1cc2b3e4ad0cad0816a437ebba1f1eda8cbdb91/zxing_cpp-2.2.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe8991f417cbd62bbb1b3d2be8dd8b4162b33f1a6fbd44a35ce94dca4c10de07",
                "md5": "861f07b22b829cda5e64cfafec71a377",
                "sha256": "e3cdd28dd42176f59aa7fcbd052ec1d60c1fa29363b3fa5a8e41ecf8ce6e9be7"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "861f07b22b829cda5e64cfafec71a377",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.6",
            "size": 692340,
            "upload_time": "2023-12-08T20:36:46",
            "upload_time_iso_8601": "2023-12-08T20:36:46.107383Z",
            "url": "https://files.pythonhosted.org/packages/fe/89/91f417cbd62bbb1b3d2be8dd8b4162b33f1a6fbd44a35ce94dca4c10de07/zxing_cpp-2.2.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2469dd0559da28e142fdaa66faa4c0f6ae2e0cc6597386f624c86431447ceba9",
                "md5": "6be8951f96e3ef56a27ecf17a1edd363",
                "sha256": "7a7a616f6c8e02a92f8ab38d91bc14fecfbb3bc6bf2b69c4e5d7bb54eeaea141"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "6be8951f96e3ef56a27ecf17a1edd363",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 1500648,
            "upload_time": "2023-12-08T20:36:49",
            "upload_time_iso_8601": "2023-12-08T20:36:49.848725Z",
            "url": "https://files.pythonhosted.org/packages/24/69/dd0559da28e142fdaa66faa4c0f6ae2e0cc6597386f624c86431447ceba9/zxing_cpp-2.2.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d24e05c8873372e6db88f6129c7111eaa1e386addff64c45340d4946c3f9bbd8",
                "md5": "2954ca03413408e15254914febfc61b8",
                "sha256": "a16148c7a7926f2f897c69c695f4b334cd1a777bbfa0269204245fad288b47cf"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2954ca03413408e15254914febfc61b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 962777,
            "upload_time": "2023-12-08T20:36:52",
            "upload_time_iso_8601": "2023-12-08T20:36:52.187478Z",
            "url": "https://files.pythonhosted.org/packages/d2/4e/05c8873372e6db88f6129c7111eaa1e386addff64c45340d4946c3f9bbd8/zxing_cpp-2.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e85646bc2988ee8e89f26a5abd520c6dc44987b1043fc93b87b493d0ab469974",
                "md5": "ebe80af33fda9a9c9ea61b61b0ab3c77",
                "sha256": "25d0dae34bdd8745103cd93c0cb315a0de4bb2876e564a35704be971ac07fcd4"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ebe80af33fda9a9c9ea61b61b0ab3c77",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 940057,
            "upload_time": "2023-12-08T20:36:55",
            "upload_time_iso_8601": "2023-12-08T20:36:55.160013Z",
            "url": "https://files.pythonhosted.org/packages/e8/56/46bc2988ee8e89f26a5abd520c6dc44987b1043fc93b87b493d0ab469974/zxing_cpp-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "047dfee0f94f1521e9ac9968438a5fc234b3321d58f8847a14272a75602bf4e0",
                "md5": "08b92a3132b1f5b2670d44ee273c99a4",
                "sha256": "3297daded419c87b2720ce9620817db4742814d7e31bfddeeb6329266a61f54f"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "08b92a3132b1f5b2670d44ee273c99a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 628531,
            "upload_time": "2023-12-08T20:36:57",
            "upload_time_iso_8601": "2023-12-08T20:36:57.945431Z",
            "url": "https://files.pythonhosted.org/packages/04/7d/fee0f94f1521e9ac9968438a5fc234b3321d58f8847a14272a75602bf4e0/zxing_cpp-2.2.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "527d7eff89f67d8358c91c93a8694f721c7a27b06bfb30e9436e02cd8ff4d282",
                "md5": "fe73f70865d81c813e94445b4d7538c1",
                "sha256": "7d620de9309d6f8d79dcb87b5c32bc8d72a1dbdc54369c31552a5ab277e25e78"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fe73f70865d81c813e94445b4d7538c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 692354,
            "upload_time": "2023-12-08T20:37:00",
            "upload_time_iso_8601": "2023-12-08T20:37:00.636257Z",
            "url": "https://files.pythonhosted.org/packages/52/7d/7eff89f67d8358c91c93a8694f721c7a27b06bfb30e9436e02cd8ff4d282/zxing_cpp-2.2.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ce88175748598c5efff117cb29ab1e7341948e93e7f77dd24e36cb757b5d6ca",
                "md5": "ecf083e01d43f9b531772f84527c4c68",
                "sha256": "55a3f24aeb3e71a2090f3ded10d3b44865e60b640cebcb9c5f10e188158314ea"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ecf083e01d43f9b531772f84527c4c68",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 1500869,
            "upload_time": "2023-12-08T20:37:04",
            "upload_time_iso_8601": "2023-12-08T20:37:04.176684Z",
            "url": "https://files.pythonhosted.org/packages/3c/e8/8175748598c5efff117cb29ab1e7341948e93e7f77dd24e36cb757b5d6ca/zxing_cpp-2.2.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbcfaa1edc64b4d280e1e916ef64be8e87fe72b4542744ec7c97fdc54893b827",
                "md5": "243402c31b217b1c5c762a9c2eafb1c4",
                "sha256": "4303e904a174df3c3f7f1817cf42a10521514865d9cdfcc9205e5ff0243c16fa"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "243402c31b217b1c5c762a9c2eafb1c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 963517,
            "upload_time": "2023-12-08T20:37:07",
            "upload_time_iso_8601": "2023-12-08T20:37:07.696236Z",
            "url": "https://files.pythonhosted.org/packages/fb/cf/aa1edc64b4d280e1e916ef64be8e87fe72b4542744ec7c97fdc54893b827/zxing_cpp-2.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6408d4c682502edc0103aa45e0b21efa57ec4a7de72a24b4548a0206ebdf5dbf",
                "md5": "7b68b893d8eda38af4fe90e6a2f7664f",
                "sha256": "70026b8370fc34c257fa76d84a07374a78a8a46cb00d36f285d32c60e9fbf6dd"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b68b893d8eda38af4fe90e6a2f7664f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 940447,
            "upload_time": "2023-12-08T20:37:11",
            "upload_time_iso_8601": "2023-12-08T20:37:11.048327Z",
            "url": "https://files.pythonhosted.org/packages/64/08/d4c682502edc0103aa45e0b21efa57ec4a7de72a24b4548a0206ebdf5dbf/zxing_cpp-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "945669570d7b89883e78dec35629bd4e8f5951b3a3e5312cdcea63725576c3db",
                "md5": "a27b631eccd3e78b6d48fb96d4080a5a",
                "sha256": "92acc610eb6100cc5dd4c0f583de22e137c051a0f6e653dba6aef07e8c32810f"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "a27b631eccd3e78b6d48fb96d4080a5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 628585,
            "upload_time": "2023-12-08T20:37:13",
            "upload_time_iso_8601": "2023-12-08T20:37:13.687450Z",
            "url": "https://files.pythonhosted.org/packages/94/56/69570d7b89883e78dec35629bd4e8f5951b3a3e5312cdcea63725576c3db/zxing_cpp-2.2.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6372d1dd6d09209df457d4652405ef261af68c9ecc4068a0aacbf794b537c7d5",
                "md5": "ac7eccb80d1d3b70ef3ff51cab4c1791",
                "sha256": "0bcd8855da4a9ef9e92799446353b5b8fa3eb5da21346089f0f09dcbb8bef1b6"
            },
            "downloads": -1,
            "filename": "zxing_cpp-2.2.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ac7eccb80d1d3b70ef3ff51cab4c1791",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 689875,
            "upload_time": "2023-12-08T20:37:16",
            "upload_time_iso_8601": "2023-12-08T20:37:16.246617Z",
            "url": "https://files.pythonhosted.org/packages/63/72/d1dd6d09209df457d4652405ef261af68c9ecc4068a0aacbf794b537c7d5/zxing_cpp-2.2.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a78f77828ef6e7bcad2ed17da58a4af833fce52e2afb6e72214e0403fa0ef197",
                "md5": "d35d3a6b8dc95e899db3d3b6a104121b",
                "sha256": "11884ef9d1a61e47ad89836339da9e1040cb28b083fb37462bc58e8d46f135bc"
            },
            "downloads": -1,
            "filename": "zxing-cpp-2.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d35d3a6b8dc95e899db3d3b6a104121b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 652847,
            "upload_time": "2023-12-08T20:37:18",
            "upload_time_iso_8601": "2023-12-08T20:37:18.985203Z",
            "url": "https://files.pythonhosted.org/packages/a7/8f/77828ef6e7bcad2ed17da58a4af833fce52e2afb6e72214e0403fa0ef197/zxing-cpp-2.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-08 20:37:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zxing-cpp",
    "github_project": "zxing-cpp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "zxing-cpp"
}
        
Elapsed time: 0.14751s