{"id":44914955,"url":"https://github.com/atbuy/pybarcodes","last_synced_at":"2026-05-02T21:06:39.716Z","repository":{"id":51346114,"uuid":"367236836","full_name":"atbuy/pybarcodes","owner":"atbuy","description":"A library to read and write barcodes and QR codes","archived":false,"fork":false,"pushed_at":"2025-02-08T18:00:18.000Z","size":6342,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-23T05:38:27.805Z","etag":null,"topics":["barcode","barcode-reader","barcode-scanner","barcodes","python","python3","qrcode","qrcode-generator","qrcode-reader","qrcode-scanner"],"latest_commit_sha":null,"homepage":"https://pybarcodes.readthedocs.io/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atbuy.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-05-14T03:16:41.000Z","updated_at":"2025-03-25T08:29:47.000Z","dependencies_parsed_at":"2025-02-04T19:33:00.679Z","dependency_job_id":"4a0d8a24-35cb-44c5-a44f-36e4880ef59d","html_url":"https://github.com/atbuy/pybarcodes","commit_stats":null,"previous_names":["vitaman02/pybarcodes"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/atbuy/pybarcodes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbuy%2Fpybarcodes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbuy%2Fpybarcodes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbuy%2Fpybarcodes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbuy%2Fpybarcodes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atbuy","download_url":"https://codeload.github.com/atbuy/pybarcodes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atbuy%2Fpybarcodes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29565027,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T00:47:08.760Z","status":"ssl_error","status_checked_at":"2026-02-18T00:45:26.718Z","response_time":100,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["barcode","barcode-reader","barcode-scanner","barcodes","python","python3","qrcode","qrcode-generator","qrcode-reader","qrcode-scanner"],"created_at":"2026-02-18T01:19:27.380Z","updated_at":"2026-05-02T21:06:39.711Z","avatar_url":"https://github.com/atbuy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"pybarcodes\n==========\n\n.. image:: https://readthedocs.org/projects/pybarcodes/badge/?version=latest\n    :target: https://pybarcodes.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n\n\n.. image:: https://img.shields.io/pypi/v/pybarcodes.svg\n    :target: https://pypi.python.org/pypi/pybarcodes\n    :alt: PyPI version info\n\n\n.. image:: https://img.shields.io/pypi/pyversions/pybarcodes.svg\n    :target: https://pypi.python.org/pypi/pybarcodes\n    :alt: PyPI supported Python versions\n\n\nThis is a Python package to create barcodes.\nYou can create file-like objects, text files and images from just a barcode number.\nImage generation is fast so it can be used to create images in bulk.\n\n\nSupported Barcode Types\n------------------------\n\n- EAN13\n- EAN8\n- EAN14\n- JAN\n- CODE39\n\nMore types will soon be supported.\nPRs are welcome :)\n\n\nInstalling\n-----------\n\n**Python 3.10 or higher is required**\n\nTo install the library you can run the following command:\n\n.. code:: bash\n\n    pip install pybarcodes\n\n\nQuick Example\n--------------\n\nYou can see what barcodes are supported\n\n.. code:: py\n\n    \u003e\u003e\u003e import pybarcodes\n    \u003e\u003e\u003e pybarcodes.SUPPORTED_BARCODES\n    ['EAN13', 'EAN8', 'EAN14', 'JAN', 'CODE39']\n\n\n\nAnd you can use this to view the barcode that was generated:\n\n.. code:: py\n\n    from pybarcodes import EAN13\n\n    CODE = \"012345678905\"\n    barcode = EAN13(CODE)\n    barcode.show()\n\nThis is pretty much all the code you need to generate a barcode.\n\n\nSaving an image of the barcode is pretty straightforward.\n\n.. code:: py\n\n    from pybarcodes import EAN14\n\n    barcode = EAN14(\"40700719670720\")\n\n    # Saves the image in PNG format\n    barcode.save(\"myimage.png\")\n\n    # You can also resize it.\n    barcode.save(\"myimage2.png\", size=(100000, 1000000))\n\n\n\n\nEAN13 output from example 2:\n\n.. image:: https://i.imgur.com/wd7jyIx.png\n    :target: https://i.imgur.com/wd7jyIx.png\n    :alt: Image of Barcode\n\n\nLinks\n------\n\n- `Documentation \u003chttps://pybarcodes.readthedocs.io/en/latest/index.html\u003e`_\n- `PyPi \u003chttps://pypi.org/project/pybarcodes/\u003e`_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatbuy%2Fpybarcodes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatbuy%2Fpybarcodes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatbuy%2Fpybarcodes/lists"}