dbr


Namedbr JSON
Version 9.6.40.2 PyPI version JSON
download
home_pagehttps://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi
SummaryBarcode scanning SDK for Python
upload_time2024-07-16 06:32:20
maintainerNone
docs_urlNone
authorDynamsoft
requires_pythonNone
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Dynamsoft Python Barcode SDK
====================================================
|version| |python| |pypi| 

.. |version| image:: https://img.shields.io/pypi/v/dbr?color=orange
.. |python| image:: https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue
.. |pypi| image:: https://img.shields.io/pypi/dm/dbr


What You Should Know About Dynamsoft Barcode Reader
---------------------------------------------------
|trial|

.. |trial| image:: https://img.shields.io/badge/Get-30--day%20FREE%20Trial-blue
            :target: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr

`Dynamsoft Barcode Reader SDK <https://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi>`_ 
enables you to efficiently embed barcode reading functionality in your
web, desktop or mobile application using just a few lines of code.
Saving you months of added development time and resources, our SDK can
create high-speed and reliable barcode scanner software applications to
meet your business needs.

About Python Barcode SDK
-------------------------
The Python Barcode SDK is a wrapper for Dynamsoft C++ Barcode SDK. It comes with all the general
features of Dynamsoft Barcode Reader, bringing convenience for Python developers.


Version
-------

-  9.6.40.2

Supported Platforms
-------------------

- Windows x64

- Linux(x64, ARM32, ARM64)

- macOS(10.15+)

Supported Python Versions
-------------------------

-  Python3.6

-  Python3.7

-  Python3.8

-  Python3.9

-  Python3.10

-  Python3.11

-  Python3.12

Installation
------------

   pip install dbr

Supported Symbologies
---------------------

-  Linear Barcodes (1D) :

   -  Code 39 *(including Code 39 Extended)*
   -  Code 93
   -  Code 128
   -  Codabar
   -  Interleaved 2 of 5
   -  EAN-8
   -  EAN-13
   -  UPC-A
   -  UPC-E
   -  Industrial 2 of 5
   -  MSI Code
   -  Code 11

-  2D Barcodes :

   -  QR Code *(including Micro QR Code)*
   -  Data Matrix
   -  PDF417 *(including Micro PDF417)*
   -  Aztec Code
   -  MaxiCode *(mode 2-5)*
   -  DotCode

-  Patch Code

-  Pharmacode

-  GS1 Composite Code

-  GS1 DataBar :

   -  Omnidirectional
   -  Truncated
   -  Stacked
   -  Stacked Omnidirectional
   -  Limited
   -  Expanded
   -  Expanded Stacked

-  Postal Codes :

   -  USPS Intelligent Mail
   -  Postnet
   -  Planet
   -  Australian Post
   -  UK Royal Mail

Quick Start
-----------
.. code-block:: python

   from dbr import *

   # Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
   license_key = "Input your own license"
   image = r"Please input your own image path"

   BarcodeReader.init_license(license_key)

   reader = BarcodeReader()

   try:
      text_results = reader.decode_file(image)

      if text_results != None:
         for text_result in text_results:
               print("Barcode Format : ")
               print(text_result.barcode_format_string)
               print("Barcode Text : ")
               print(text_result.barcode_text)
               print("Localization Points : ")
               print(text_result.localization_result.localization_points)
               print("Exception : ")
               print(text_result.exception)
               print("-------------")
   except BarcodeReaderError as bre:
      print(bre)


Sample Code
------------
https://github.com/Dynamsoft/barcode-reader-python-samples

Documentation
-----------------

- `API <https://www.dynamsoft.com/barcode-reader/programming/python/api-reference/?utm_source=pypi>`_
- `User Guide <https://www.dynamsoft.com/barcode-reader/programming/python/user-guide.html?utm_source=pypi>`_
- `Release Notes <https://www.dynamsoft.com/barcode-reader/programming/python/release-notes/python-9.html?utm_source=pypi>`_


Contact Us
----------

support@dynamsoft.com

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi",
    "name": "dbr",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Dynamsoft",
    "author_email": null,
    "download_url": null,
    "platform": null,
    "description": "Dynamsoft Python Barcode SDK\n====================================================\n|version| |python| |pypi| \n\n.. |version| image:: https://img.shields.io/pypi/v/dbr?color=orange\n.. |python| image:: https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue\n.. |pypi| image:: https://img.shields.io/pypi/dm/dbr\n\n\nWhat You Should Know About Dynamsoft Barcode Reader\n---------------------------------------------------\n|trial|\n\n.. |trial| image:: https://img.shields.io/badge/Get-30--day%20FREE%20Trial-blue\n            :target: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr\n\n`Dynamsoft Barcode Reader SDK <https://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi>`_ \nenables you to efficiently embed barcode reading functionality in your\nweb, desktop or mobile application using just a few lines of code.\nSaving you months of added development time and resources, our SDK can\ncreate high-speed and reliable barcode scanner software applications to\nmeet your business needs.\n\nAbout Python Barcode SDK\n-------------------------\nThe Python Barcode SDK is a wrapper for Dynamsoft C++ Barcode SDK. It comes with all the general\nfeatures of Dynamsoft Barcode Reader, bringing convenience for Python developers.\n\n\nVersion\n-------\n\n-  9.6.40.2\n\nSupported Platforms\n-------------------\n\n- Windows x64\n\n- Linux(x64, ARM32, ARM64)\n\n- macOS(10.15+)\n\nSupported Python Versions\n-------------------------\n\n-  Python3.6\n\n-  Python3.7\n\n-  Python3.8\n\n-  Python3.9\n\n-  Python3.10\n\n-  Python3.11\n\n-  Python3.12\n\nInstallation\n------------\n\n   pip install dbr\n\nSupported Symbologies\n---------------------\n\n-  Linear Barcodes (1D) :\n\n   -  Code 39 *(including Code 39 Extended)*\n   -  Code 93\n   -  Code 128\n   -  Codabar\n   -  Interleaved 2 of 5\n   -  EAN-8\n   -  EAN-13\n   -  UPC-A\n   -  UPC-E\n   -  Industrial 2 of 5\n   -  MSI Code\n   -  Code 11\n\n-  2D Barcodes :\n\n   -  QR Code *(including Micro QR Code)*\n   -  Data Matrix\n   -  PDF417 *(including Micro PDF417)*\n   -  Aztec Code\n   -  MaxiCode *(mode 2-5)*\n   -  DotCode\n\n-  Patch Code\n\n-  Pharmacode\n\n-  GS1 Composite Code\n\n-  GS1 DataBar :\n\n   -  Omnidirectional\n   -  Truncated\n   -  Stacked\n   -  Stacked Omnidirectional\n   -  Limited\n   -  Expanded\n   -  Expanded Stacked\n\n-  Postal Codes :\n\n   -  USPS Intelligent Mail\n   -  Postnet\n   -  Planet\n   -  Australian Post\n   -  UK Royal Mail\n\nQuick Start\n-----------\n.. code-block:: python\n\n   from dbr import *\n\n   # Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github\n   license_key = \"Input your own license\"\n   image = r\"Please input your own image path\"\n\n   BarcodeReader.init_license(license_key)\n\n   reader = BarcodeReader()\n\n   try:\n      text_results = reader.decode_file(image)\n\n      if text_results != None:\n         for text_result in text_results:\n               print(\"Barcode Format : \")\n               print(text_result.barcode_format_string)\n               print(\"Barcode Text : \")\n               print(text_result.barcode_text)\n               print(\"Localization Points : \")\n               print(text_result.localization_result.localization_points)\n               print(\"Exception : \")\n               print(text_result.exception)\n               print(\"-------------\")\n   except BarcodeReaderError as bre:\n      print(bre)\n\n\nSample Code\n------------\nhttps://github.com/Dynamsoft/barcode-reader-python-samples\n\nDocumentation\n-----------------\n\n- `API <https://www.dynamsoft.com/barcode-reader/programming/python/api-reference/?utm_source=pypi>`_\n- `User Guide <https://www.dynamsoft.com/barcode-reader/programming/python/user-guide.html?utm_source=pypi>`_\n- `Release Notes <https://www.dynamsoft.com/barcode-reader/programming/python/release-notes/python-9.html?utm_source=pypi>`_\n\n\nContact Us\n----------\n\nsupport@dynamsoft.com\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Barcode scanning SDK for Python",
    "version": "9.6.40.2",
    "project_urls": {
        "Homepage": "https://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39dd5a4eca6159043b9c1096801943f73ad9e4671bf369a45629f17f6434ef2c",
                "md5": "336ffb2dd89d91d1bd099561e755e52f",
                "sha256": "7e7b32d126bff86b3cdf05235be21bb807a414c30fdc89a91f25b565449b7437"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp310-cp310-macosx_12_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "336ffb2dd89d91d1bd099561e755e52f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 18061464,
            "upload_time": "2024-07-16T06:32:20",
            "upload_time_iso_8601": "2024-07-16T06:32:20.769924Z",
            "url": "https://files.pythonhosted.org/packages/39/dd/5a4eca6159043b9c1096801943f73ad9e4671bf369a45629f17f6434ef2c/dbr-9.6.40.2-cp310-cp310-macosx_12_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae4566bfa74865fda6e2b7d007332452417fe43cd7fe0e94b9c4e7b0c897d059",
                "md5": "8636227c4849b98066bb6af6ee2e3679",
                "sha256": "f84da0ab70b7ecafa478b2691a71873fc36bd6261d33866db55f401e8af1663a"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8636227c4849b98066bb6af6ee2e3679",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 11012387,
            "upload_time": "2024-07-16T06:32:58",
            "upload_time_iso_8601": "2024-07-16T06:32:58.889532Z",
            "url": "https://files.pythonhosted.org/packages/ae/45/66bfa74865fda6e2b7d007332452417fe43cd7fe0e94b9c4e7b0c897d059/dbr-9.6.40.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "260cd6dde43355a36fb9faf1c24d2641e0fb36cceda0a18c0a54adbbb4a85c5c",
                "md5": "d67bbe7b055b32ad7b5b12e5fb13ca0a",
                "sha256": "2b5c6694d8d30e9e5bb8647a1c52ce421ad129da2f0edc4c41306c8c10952434"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d67bbe7b055b32ad7b5b12e5fb13ca0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 11809244,
            "upload_time": "2024-07-16T06:33:38",
            "upload_time_iso_8601": "2024-07-16T06:33:38.661258Z",
            "url": "https://files.pythonhosted.org/packages/26/0c/d6dde43355a36fb9faf1c24d2641e0fb36cceda0a18c0a54adbbb4a85c5c/dbr-9.6.40.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46b0b082ac78427a4367cca10ef5d0d02f68d2e916fb76b60d9d4302db4af65b",
                "md5": "90d164541d98ae581364a2d9257b3d6b",
                "sha256": "c28400f700e94bbd767d763580f5ce4452a8bd85e87ebaade8dd6a2ffa37b548"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "90d164541d98ae581364a2d9257b3d6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 10698265,
            "upload_time": "2024-07-16T06:34:14",
            "upload_time_iso_8601": "2024-07-16T06:34:14.747936Z",
            "url": "https://files.pythonhosted.org/packages/46/b0/b082ac78427a4367cca10ef5d0d02f68d2e916fb76b60d9d4302db4af65b/dbr-9.6.40.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1324fdf75300925deb198bcf7c80a5e196b2dbd7356251c2a4ff1d0194526f3c",
                "md5": "3e784bded8cb369c827542ac63150491",
                "sha256": "9f51560ffacff1b71b145ee15eeb202b305ac0138f55119bd9958300f7643e35"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp311-cp311-macosx_12_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "3e784bded8cb369c827542ac63150491",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 18061461,
            "upload_time": "2024-07-16T06:35:09",
            "upload_time_iso_8601": "2024-07-16T06:35:09.034270Z",
            "url": "https://files.pythonhosted.org/packages/13/24/fdf75300925deb198bcf7c80a5e196b2dbd7356251c2a4ff1d0194526f3c/dbr-9.6.40.2-cp311-cp311-macosx_12_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e597f67b2ab91cdce012624a924d860d5e3f41e880bf727c6dffcee5fd369fa",
                "md5": "c9387ac5074ee5c1b14e5cfa4a25e96b",
                "sha256": "f65ee230af57a3cbf1a432e73d0a28a925f108bfb35e42609d12517c4da8e4ad"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c9387ac5074ee5c1b14e5cfa4a25e96b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11012680,
            "upload_time": "2024-07-16T06:35:42",
            "upload_time_iso_8601": "2024-07-16T06:35:42.931908Z",
            "url": "https://files.pythonhosted.org/packages/7e/59/7f67b2ab91cdce012624a924d860d5e3f41e880bf727c6dffcee5fd369fa/dbr-9.6.40.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1e529f129ae04c6b1409319f958a279075c65318a200e6a2f04713d40bcc513",
                "md5": "4124f44c07d89c895af0befa121d514a",
                "sha256": "4853fe3c921644d824fc87a0d183b548dde9b8f0ade5c984f5ced16c0c470351"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4124f44c07d89c895af0befa121d514a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 11809522,
            "upload_time": "2024-07-16T06:36:20",
            "upload_time_iso_8601": "2024-07-16T06:36:20.302524Z",
            "url": "https://files.pythonhosted.org/packages/d1/e5/29f129ae04c6b1409319f958a279075c65318a200e6a2f04713d40bcc513/dbr-9.6.40.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21594fca989e50569057359adb875f702f76a2f3f0a71ac27cc6911aeaec5298",
                "md5": "a94156d32c5e1e35a5f3c783ddc4c712",
                "sha256": "2bda714c9dbe6d4324a9981c3a3df2cf628842199f459cdef62df5abbe841184"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a94156d32c5e1e35a5f3c783ddc4c712",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 10698269,
            "upload_time": "2024-07-16T06:36:51",
            "upload_time_iso_8601": "2024-07-16T06:36:51.268802Z",
            "url": "https://files.pythonhosted.org/packages/21/59/4fca989e50569057359adb875f702f76a2f3f0a71ac27cc6911aeaec5298/dbr-9.6.40.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a4f4214954461d5293e89000f544847dddccb385682ebd42222548e8a80858a",
                "md5": "e8b7ce2010d4d1a76cb5eed9557203eb",
                "sha256": "e34a588bd71eef36f786fb58ef0c33657e5eb0a54b59a254df2720998a77427a"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp312-cp312-macosx_12_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "e8b7ce2010d4d1a76cb5eed9557203eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 18057605,
            "upload_time": "2024-07-16T06:37:54",
            "upload_time_iso_8601": "2024-07-16T06:37:54.565539Z",
            "url": "https://files.pythonhosted.org/packages/6a/4f/4214954461d5293e89000f544847dddccb385682ebd42222548e8a80858a/dbr-9.6.40.2-cp312-cp312-macosx_12_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5295071cd0961470382c086274f1e5e96978f533fc6a98b430352da5539a530a",
                "md5": "63c454d851bc9de6ab6182c38c9c64a6",
                "sha256": "034d654c68ee1b6974b32e5f046f4c07b8128d2a929ab5e2321e0a615a009a74"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "63c454d851bc9de6ab6182c38c9c64a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 11017994,
            "upload_time": "2024-07-16T06:38:31",
            "upload_time_iso_8601": "2024-07-16T06:38:31.275457Z",
            "url": "https://files.pythonhosted.org/packages/52/95/071cd0961470382c086274f1e5e96978f533fc6a98b430352da5539a530a/dbr-9.6.40.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4fce343f33d70c7be117249596a0461a2ac775dc483133a997eb2cdbe1263ff1",
                "md5": "dea3fd81892190265422769ad1393dd0",
                "sha256": "e22f56e91d8a2198c786b028309d35c640fb7ea369e67bdb0c66242f8a6255ed"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dea3fd81892190265422769ad1393dd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 11817238,
            "upload_time": "2024-07-16T06:39:06",
            "upload_time_iso_8601": "2024-07-16T06:39:06.731855Z",
            "url": "https://files.pythonhosted.org/packages/4f/ce/343f33d70c7be117249596a0461a2ac775dc483133a997eb2cdbe1263ff1/dbr-9.6.40.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "344c3e1aac484706a0d7439f6c1423d41944907e4bfb98f5792d3826135b9e64",
                "md5": "f7e227a7e395ceab73fa0571eddc3a16",
                "sha256": "fd0eff51b18a0400edb7e74032b79c5cf9e4c989ffc5806e6095ba76e7a8380c"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f7e227a7e395ceab73fa0571eddc3a16",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 10698452,
            "upload_time": "2024-07-16T06:40:08",
            "upload_time_iso_8601": "2024-07-16T06:40:08.952879Z",
            "url": "https://files.pythonhosted.org/packages/34/4c/3e1aac484706a0d7439f6c1423d41944907e4bfb98f5792d3826135b9e64/dbr-9.6.40.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af7529c5ad74fca3e4ff1e70639f77d50c14ab35c967dfa4655df8e9e78713aa",
                "md5": "aaf7986936e07f6bc414c0b61c2937a6",
                "sha256": "3bee96619f5bf021e3f6a54c4d9e48dd75715634baddb5dfe7ac7e303d3462f2"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp36-cp36m-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aaf7986936e07f6bc414c0b61c2937a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 9803894,
            "upload_time": "2024-07-16T06:41:00",
            "upload_time_iso_8601": "2024-07-16T06:41:00.256463Z",
            "url": "https://files.pythonhosted.org/packages/af/75/29c5ad74fca3e4ff1e70639f77d50c14ab35c967dfa4655df8e9e78713aa/dbr-9.6.40.2-cp36-cp36m-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f44348837fc1e58ebf00589a90ded3ded4bdcf8b35137c06650ce6efdac321c",
                "md5": "52e60f2a965b5da8a632a39a3178e521",
                "sha256": "bf13264f7629682d24f41aedbf28409d853256896ed18e51ce4361e2fc92d764"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "52e60f2a965b5da8a632a39a3178e521",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 11000569,
            "upload_time": "2024-07-16T06:41:45",
            "upload_time_iso_8601": "2024-07-16T06:41:45.151107Z",
            "url": "https://files.pythonhosted.org/packages/9f/44/348837fc1e58ebf00589a90ded3ded4bdcf8b35137c06650ce6efdac321c/dbr-9.6.40.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75b3993e11f1cad0ca6f4c7f64b447840631bda2f87e42c01313b99d793605b6",
                "md5": "408c8adf0bdf3dcd66c30757bc6a1913",
                "sha256": "51590e21ec2f7dab859a5a8bdf2e7106659dc82e1e2c293a51c31b4dc814bf03"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "408c8adf0bdf3dcd66c30757bc6a1913",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 11797012,
            "upload_time": "2024-07-16T06:42:29",
            "upload_time_iso_8601": "2024-07-16T06:42:29.339915Z",
            "url": "https://files.pythonhosted.org/packages/75/b3/993e11f1cad0ca6f4c7f64b447840631bda2f87e42c01313b99d793605b6/dbr-9.6.40.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6a45f1496cbc30256d61c2d0f46a930365b9b948be36f0fc4985828a5cbea90",
                "md5": "0f80517502f5d4f3a90b89049b6e1f1c",
                "sha256": "9fbcf2fe24176364d0afde3cb98efa147b3b17ab1e24792e5a7b84d0171a9064"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0f80517502f5d4f3a90b89049b6e1f1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 10699774,
            "upload_time": "2024-07-16T06:44:52",
            "upload_time_iso_8601": "2024-07-16T06:44:52.662234Z",
            "url": "https://files.pythonhosted.org/packages/f6/a4/5f1496cbc30256d61c2d0f46a930365b9b948be36f0fc4985828a5cbea90/dbr-9.6.40.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82e6ac3477014b4786014a791e57200ff240a36ae2d15736056dcee3680d8e83",
                "md5": "df6d7636c74507076e7a50b264f42138",
                "sha256": "19cde5aa6dfab767e7c9a4bbbf087be38cf2b70e30d145a7e66dec382a8d7633"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp37-cp37m-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "df6d7636c74507076e7a50b264f42138",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 9804100,
            "upload_time": "2024-07-16T06:45:21",
            "upload_time_iso_8601": "2024-07-16T06:45:21.209950Z",
            "url": "https://files.pythonhosted.org/packages/82/e6/ac3477014b4786014a791e57200ff240a36ae2d15736056dcee3680d8e83/dbr-9.6.40.2-cp37-cp37m-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbcbe40a430781ac5756c8786f0338d6cf9ae52559102092d747a52270434b9a",
                "md5": "9fd4b5a7c628aa0bba0d8ff4b720114b",
                "sha256": "a643b6931883fcaf0ea87acd1c8915f8f40f30451dde60a842f793d6b410dde7"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9fd4b5a7c628aa0bba0d8ff4b720114b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 11000564,
            "upload_time": "2024-07-16T06:45:53",
            "upload_time_iso_8601": "2024-07-16T06:45:53.469972Z",
            "url": "https://files.pythonhosted.org/packages/fb/cb/e40a430781ac5756c8786f0338d6cf9ae52559102092d747a52270434b9a/dbr-9.6.40.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d56c81676610688bfd39a0681532044e792725f866a4b6c989f8f3d31c0d5f8f",
                "md5": "8247d46655a1c82f42f1de69e3c62670",
                "sha256": "f1e8a83c6d39fda090145f24aca2a62653fbb87cbe50eb5eaa0cead112374979"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8247d46655a1c82f42f1de69e3c62670",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 11797024,
            "upload_time": "2024-07-16T06:46:26",
            "upload_time_iso_8601": "2024-07-16T06:46:26.933102Z",
            "url": "https://files.pythonhosted.org/packages/d5/6c/81676610688bfd39a0681532044e792725f866a4b6c989f8f3d31c0d5f8f/dbr-9.6.40.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7820744ec458739dd68966def5b88ed50641170f9c05baf7c4ad9e6e728e0410",
                "md5": "611e8893fcb28ac4d059a6b22cf20213",
                "sha256": "b0f837b8bfe823d1848d2060d77891f3247dd4634f6a9fa9ea52f49be13e9230"
            },
            "downloads": -1,
            "filename": "dbr-9.6.40.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "611e8893fcb28ac4d059a6b22cf20213",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 10697575,
            "upload_time": "2024-07-16T06:47:00",
            "upload_time_iso_8601": "2024-07-16T06:47:00.658112Z",
            "url": "https://files.pythonhosted.org/packages/78/20/744ec458739dd68966def5b88ed50641170f9c05baf7c4ad9e6e728e0410/dbr-9.6.40.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-16 06:32:20",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "dbr"
}
        
Elapsed time: 0.30875s