psycopg2-binary


Namepsycopg2-binary JSON
Version 2.9.10 PyPI version JSON
download
home_pagehttps://psycopg.org/
Summarypsycopg2 - Python-PostgreSQL Database Adapter
upload_time2024-10-16 11:24:58
maintainerDaniele Varrazzo
docs_urlNone
authorFederico Di Gregorio
requires_python>=3.8
licenseLGPL with exceptions
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Psycopg is the most popular PostgreSQL database adapter for the Python
programming language.  Its main features are the complete implementation of
the Python DB API 2.0 specification and the thread safety (several threads can
share the same connection).  It was designed for heavily multi-threaded
applications that create and destroy lots of cursors and make a large number
of concurrent "INSERT"s or "UPDATE"s.

Psycopg 2 is mostly implemented in C as a libpq wrapper, resulting in being
both efficient and secure.  It features client-side and server-side cursors,
asynchronous communication and notifications, "COPY TO/COPY FROM" support.
Many Python types are supported out-of-the-box and adapted to matching
PostgreSQL data types; adaptation can be extended and customized thanks to a
flexible objects adaptation system.

Psycopg 2 is both Unicode and Python 3 friendly.

.. Note::

    The psycopg2 package is still widely used and actively maintained, but it
    is not expected to receive new features.

    `Psycopg 3`__ is the evolution of psycopg2 and is where `new features are
    being developed`__: if you are starting a new project you should probably
    start from 3!

    .. __: https://pypi.org/project/psycopg/
    .. __: https://www.psycopg.org/psycopg3/docs/index.html


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

Documentation is included in the ``doc`` directory and is `available online`__.

.. __: https://www.psycopg.org/docs/

For any other resource (source code repository, bug tracker, mailing list)
please check the `project homepage`__.

.. __: https://psycopg.org/


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

Building Psycopg requires a few prerequisites (a C compiler, some development
packages): please check the install_ and the faq_ documents in the ``doc`` dir
or online for the details.

If prerequisites are met, you can install psycopg like any other Python
package, using ``pip`` to download it from PyPI_::

    $ pip install psycopg2

or using ``setup.py`` if you have downloaded the source package locally::

    $ python setup.py build
    $ sudo python setup.py install

You can also obtain a stand-alone package, not requiring a compiler or
external libraries, by installing the `psycopg2-binary`_ package from PyPI::

    $ pip install psycopg2-binary

The binary package is a practical choice for development and testing but in
production it is advised to use the package built from sources.

.. _PyPI: https://pypi.org/project/psycopg2/
.. _psycopg2-binary: https://pypi.org/project/psycopg2-binary/
.. _install: https://www.psycopg.org/docs/install.html#install-from-source
.. _faq: https://www.psycopg.org/docs/faq.html#faq-compile

:Linux/OSX: |gh-actions|
:Windows: |appveyor|

.. |gh-actions| image:: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml/badge.svg
    :target: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml
    :alt: Linux and OSX build status

.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/psycopg/psycopg2?branch=master&svg=true
    :target: https://ci.appveyor.com/project/psycopg/psycopg2/branch/master
    :alt: Windows build status

            

Raw data

            {
    "_id": null,
    "home_page": "https://psycopg.org/",
    "name": "psycopg2-binary",
    "maintainer": "Daniele Varrazzo",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "daniele.varrazzo@gmail.com",
    "keywords": null,
    "author": "Federico Di Gregorio",
    "author_email": "fog@initd.org",
    "download_url": "https://files.pythonhosted.org/packages/cb/0e/bdc8274dc0585090b4e3432267d7be4dfbfd8971c0fa59167c711105a6bf/psycopg2-binary-2.9.10.tar.gz",
    "platform": "any",
    "description": "Psycopg is the most popular PostgreSQL database adapter for the Python\nprogramming language.  Its main features are the complete implementation of\nthe Python DB API 2.0 specification and the thread safety (several threads can\nshare the same connection).  It was designed for heavily multi-threaded\napplications that create and destroy lots of cursors and make a large number\nof concurrent \"INSERT\"s or \"UPDATE\"s.\n\nPsycopg 2 is mostly implemented in C as a libpq wrapper, resulting in being\nboth efficient and secure.  It features client-side and server-side cursors,\nasynchronous communication and notifications, \"COPY TO/COPY FROM\" support.\nMany Python types are supported out-of-the-box and adapted to matching\nPostgreSQL data types; adaptation can be extended and customized thanks to a\nflexible objects adaptation system.\n\nPsycopg 2 is both Unicode and Python 3 friendly.\n\n.. Note::\n\n    The psycopg2 package is still widely used and actively maintained, but it\n    is not expected to receive new features.\n\n    `Psycopg 3`__ is the evolution of psycopg2 and is where `new features are\n    being developed`__: if you are starting a new project you should probably\n    start from 3!\n\n    .. __: https://pypi.org/project/psycopg/\n    .. __: https://www.psycopg.org/psycopg3/docs/index.html\n\n\nDocumentation\n-------------\n\nDocumentation is included in the ``doc`` directory and is `available online`__.\n\n.. __: https://www.psycopg.org/docs/\n\nFor any other resource (source code repository, bug tracker, mailing list)\nplease check the `project homepage`__.\n\n.. __: https://psycopg.org/\n\n\nInstallation\n------------\n\nBuilding Psycopg requires a few prerequisites (a C compiler, some development\npackages): please check the install_ and the faq_ documents in the ``doc`` dir\nor online for the details.\n\nIf prerequisites are met, you can install psycopg like any other Python\npackage, using ``pip`` to download it from PyPI_::\n\n    $ pip install psycopg2\n\nor using ``setup.py`` if you have downloaded the source package locally::\n\n    $ python setup.py build\n    $ sudo python setup.py install\n\nYou can also obtain a stand-alone package, not requiring a compiler or\nexternal libraries, by installing the `psycopg2-binary`_ package from PyPI::\n\n    $ pip install psycopg2-binary\n\nThe binary package is a practical choice for development and testing but in\nproduction it is advised to use the package built from sources.\n\n.. _PyPI: https://pypi.org/project/psycopg2/\n.. _psycopg2-binary: https://pypi.org/project/psycopg2-binary/\n.. _install: https://www.psycopg.org/docs/install.html#install-from-source\n.. _faq: https://www.psycopg.org/docs/faq.html#faq-compile\n\n:Linux/OSX: |gh-actions|\n:Windows: |appveyor|\n\n.. |gh-actions| image:: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml/badge.svg\n    :target: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml\n    :alt: Linux and OSX build status\n\n.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/psycopg/psycopg2?branch=master&svg=true\n    :target: https://ci.appveyor.com/project/psycopg/psycopg2/branch/master\n    :alt: Windows build status\n",
    "bugtrack_url": null,
    "license": "LGPL with exceptions",
    "summary": "psycopg2 - Python-PostgreSQL Database Adapter",
    "version": "2.9.10",
    "project_urls": {
        "Changes": "https://www.psycopg.org/docs/news.html",
        "Code": "https://github.com/psycopg/psycopg2",
        "Documentation": "https://www.psycopg.org/docs/",
        "Download": "https://pypi.org/project/psycopg2/",
        "Homepage": "https://psycopg.org/",
        "Issue Tracker": "https://github.com/psycopg/psycopg2/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a81331257dbf2801cdb82105306042f7a1637cc752f65f2bb688188e0de5f0b",
                "md5": "c45870a2df990ed3f4ed62351df33d1b",
                "sha256": "0ea8e3d0ae83564f2fc554955d327fa081d065c8ca5cc6d2abb643e2c9c1200f"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c45870a2df990ed3f4ed62351df33d1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3043397,
            "upload_time": "2024-10-16T11:18:58",
            "upload_time_iso_8601": "2024-10-16T11:18:58.647504Z",
            "url": "https://files.pythonhosted.org/packages/7a/81/331257dbf2801cdb82105306042f7a1637cc752f65f2bb688188e0de5f0b/psycopg2_binary-2.9.10-cp310-cp310-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e79a7f4f2f031010bbfe6a02b4a15c01e12eb6b9b7b358ab33229f28baadbfc1",
                "md5": "dd42c03810062684f942c75d7763e9b6",
                "sha256": "3e9c76f0ac6f92ecfc79516a8034a544926430f7b080ec5a0537bca389ee0906"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dd42c03810062684f942c75d7763e9b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3274806,
            "upload_time": "2024-10-16T11:19:03",
            "upload_time_iso_8601": "2024-10-16T11:19:03.935594Z",
            "url": "https://files.pythonhosted.org/packages/e7/9a/7f4f2f031010bbfe6a02b4a15c01e12eb6b9b7b358ab33229f28baadbfc1/psycopg2_binary-2.9.10-cp310-cp310-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5578ddd4b374fa811a0b0a0f49b6abad1cde9cb34df73ea3348cc283fcd70b4",
                "md5": "79676ee89cb04ce04e9ad2daa934b7aa",
                "sha256": "2ad26b467a405c798aaa1458ba09d7e2b6e5f96b1ce0ac15d82fd9f95dc38a92"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "79676ee89cb04ce04e9ad2daa934b7aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2851361,
            "upload_time": "2024-10-16T11:19:07",
            "upload_time_iso_8601": "2024-10-16T11:19:07.277574Z",
            "url": "https://files.pythonhosted.org/packages/e5/57/8ddd4b374fa811a0b0a0f49b6abad1cde9cb34df73ea3348cc283fcd70b4/psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f966d1e52c20d283f1f3a8e7e5c1e06851d432f123ef57b13043b4f9b21ffa1f",
                "md5": "abb117679af469e1180da44f4399a251",
                "sha256": "270934a475a0e4b6925b5f804e3809dd5f90f8613621d062848dd82f9cd62007"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "abb117679af469e1180da44f4399a251",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3080836,
            "upload_time": "2024-10-16T11:19:11",
            "upload_time_iso_8601": "2024-10-16T11:19:11.033139Z",
            "url": "https://files.pythonhosted.org/packages/f9/66/d1e52c20d283f1f3a8e7e5c1e06851d432f123ef57b13043b4f9b21ffa1f/psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0cb592d44a9546aba78f8a1249021fe7c59d3afb8a0ba51434d6610cc3462b6",
                "md5": "4e514568f77960ccd40660612f992189",
                "sha256": "48b338f08d93e7be4ab2b5f1dbe69dc5e9ef07170fe1f86514422076d9c010d0"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4e514568f77960ccd40660612f992189",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3264552,
            "upload_time": "2024-10-16T11:19:14",
            "upload_time_iso_8601": "2024-10-16T11:19:14.606538Z",
            "url": "https://files.pythonhosted.org/packages/a0/cb/592d44a9546aba78f8a1249021fe7c59d3afb8a0ba51434d6610cc3462b6/psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6433c8548560b94b7617f203d7236d6cdf36fe1a5a3645600ada6efd79da946f",
                "md5": "19cf4cd7033935103852dea0d9e68226",
                "sha256": "7f4152f8f76d2023aac16285576a9ecd2b11a9895373a1f10fd9db54b3ff06b4"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19cf4cd7033935103852dea0d9e68226",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3019789,
            "upload_time": "2024-10-16T11:19:18",
            "upload_time_iso_8601": "2024-10-16T11:19:18.889577Z",
            "url": "https://files.pythonhosted.org/packages/64/33/c8548560b94b7617f203d7236d6cdf36fe1a5a3645600ada6efd79da946f/psycopg2_binary-2.9.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b00ec2da0db5bea88a3be52307f88b75eec72c4de62814cbe9ee600c29c06334",
                "md5": "cd74eed5461d7e9b959152d80510182d",
                "sha256": "32581b3020c72d7a421009ee1c6bf4a131ef5f0a968fab2e2de0c9d2bb4577f1"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd74eed5461d7e9b959152d80510182d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2871776,
            "upload_time": "2024-10-16T11:19:23",
            "upload_time_iso_8601": "2024-10-16T11:19:23.023689Z",
            "url": "https://files.pythonhosted.org/packages/b0/0e/c2da0db5bea88a3be52307f88b75eec72c4de62814cbe9ee600c29c06334/psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15d7774afa1eadb787ddf41aab52d4c62785563e29949613c958955031408ae6",
                "md5": "7423333e0030ae301773510595e03883",
                "sha256": "2ce3e21dc3437b1d960521eca599d57408a695a0d3c26797ea0f72e834c7ffe5"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7423333e0030ae301773510595e03883",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2820959,
            "upload_time": "2024-10-16T11:19:26",
            "upload_time_iso_8601": "2024-10-16T11:19:26.906042Z",
            "url": "https://files.pythonhosted.org/packages/15/d7/774afa1eadb787ddf41aab52d4c62785563e29949613c958955031408ae6/psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5eed440dc3f5991a8c6172a1cde44850ead0e483a375277a1aef7cfcec00af07",
                "md5": "f9f0c6b9dba3deaf3ae5f28126bd90f8",
                "sha256": "e984839e75e0b60cfe75e351db53d6db750b00de45644c5d1f7ee5d1f34a1ce5"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f9f0c6b9dba3deaf3ae5f28126bd90f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2919329,
            "upload_time": "2024-10-16T11:19:30",
            "upload_time_iso_8601": "2024-10-16T11:19:30.027726Z",
            "url": "https://files.pythonhosted.org/packages/5e/ed/440dc3f5991a8c6172a1cde44850ead0e483a375277a1aef7cfcec00af07/psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03be2cc8f4282898306732d2ae7b7378ae14e8df3c1231b53579efa056aae887",
                "md5": "5119047fcb09cc975e3dd74d137872d3",
                "sha256": "3c4745a90b78e51d9ba06e2088a2fe0c693ae19cc8cb051ccda44e8df8a6eb53"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5119047fcb09cc975e3dd74d137872d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2957659,
            "upload_time": "2024-10-16T11:19:32",
            "upload_time_iso_8601": "2024-10-16T11:19:32.864977Z",
            "url": "https://files.pythonhosted.org/packages/03/be/2cc8f4282898306732d2ae7b7378ae14e8df3c1231b53579efa056aae887/psycopg2_binary-2.9.10-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d012fb8e4f485d98c570e00dad5800e9a2349cfe0f71a767c856857160d343a5",
                "md5": "07e50db3189b7137fe24c2f63c37bc7c",
                "sha256": "e5720a5d25e3b99cd0dc5c8a440570469ff82659bb09431c1439b92caf184d3b"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "07e50db3189b7137fe24c2f63c37bc7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1024605,
            "upload_time": "2024-10-16T11:19:35",
            "upload_time_iso_8601": "2024-10-16T11:19:35.462937Z",
            "url": "https://files.pythonhosted.org/packages/d0/12/fb8e4f485d98c570e00dad5800e9a2349cfe0f71a767c856857160d343a5/psycopg2_binary-2.9.10-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "224f217cd2471ecf45d82905dd09085e049af8de6cfdc008b6663c3226dc1c98",
                "md5": "12882e8794d0ce481b76a54dd303f41e",
                "sha256": "3c18f74eb4386bf35e92ab2354a12c17e5eb4d9798e4c0ad3a00783eae7cd9f1"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "12882e8794d0ce481b76a54dd303f41e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1163817,
            "upload_time": "2024-10-16T11:19:37",
            "upload_time_iso_8601": "2024-10-16T11:19:37.384017Z",
            "url": "https://files.pythonhosted.org/packages/22/4f/217cd2471ecf45d82905dd09085e049af8de6cfdc008b6663c3226dc1c98/psycopg2_binary-2.9.10-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c8f9feb01291d0d7a0a4c6a6bab24094135c2b59c6a81943752f632c75896d6",
                "md5": "32c459d16499f8d5f01d11d6bf22a9eb",
                "sha256": "04392983d0bb89a8717772a193cfaac58871321e3ec69514e1c4e0d4957b5aff"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32c459d16499f8d5f01d11d6bf22a9eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3043397,
            "upload_time": "2024-10-16T11:19:40",
            "upload_time_iso_8601": "2024-10-16T11:19:40.033269Z",
            "url": "https://files.pythonhosted.org/packages/9c/8f/9feb01291d0d7a0a4c6a6bab24094135c2b59c6a81943752f632c75896d6/psycopg2_binary-2.9.10-cp311-cp311-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1530346e4683532011561cd9c8dfeac6a8153dd96452fee0b12666058ab7893c",
                "md5": "f809d59ea41036db61d3bfa81312c5f1",
                "sha256": "1a6784f0ce3fec4edc64e985865c17778514325074adf5ad8f80636cd029ef7c"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f809d59ea41036db61d3bfa81312c5f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3274806,
            "upload_time": "2024-10-16T11:19:43",
            "upload_time_iso_8601": "2024-10-16T11:19:43.500317Z",
            "url": "https://files.pythonhosted.org/packages/15/30/346e4683532011561cd9c8dfeac6a8153dd96452fee0b12666058ab7893c/psycopg2_binary-2.9.10-cp311-cp311-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "666e4efebe76f76aee7ec99166b6c023ff8abdc4e183f7b70913d7c047701b79",
                "md5": "bebd615c71d0b6f48df78c2d58997ea8",
                "sha256": "b5f86c56eeb91dc3135b3fd8a95dc7ae14c538a2f3ad77a19645cf55bab1799c"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bebd615c71d0b6f48df78c2d58997ea8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2851370,
            "upload_time": "2024-10-16T11:19:46",
            "upload_time_iso_8601": "2024-10-16T11:19:46.986927Z",
            "url": "https://files.pythonhosted.org/packages/66/6e/4efebe76f76aee7ec99166b6c023ff8abdc4e183f7b70913d7c047701b79/psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ffdff83313f86b50f7ca089b161b8e0a22bb3c319974096093cd50680433fdb",
                "md5": "3142c16cbe07bc0375439cc1465eaee4",
                "sha256": "2b3d2491d4d78b6b14f76881905c7a8a8abcf974aad4a8a0b065273a0ed7a2cb"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3142c16cbe07bc0375439cc1465eaee4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3080780,
            "upload_time": "2024-10-16T11:19:50",
            "upload_time_iso_8601": "2024-10-16T11:19:50.242861Z",
            "url": "https://files.pythonhosted.org/packages/7f/fd/ff83313f86b50f7ca089b161b8e0a22bb3c319974096093cd50680433fdb/psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6c4bfadd202dcda8333a7ccafdc51c541dbdfce7c2c7cda89fa2374455d795f",
                "md5": "6b16b5d3eef439f8a379baa6b656a523",
                "sha256": "2286791ececda3a723d1910441c793be44625d86d1a4e79942751197f4d30341"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6b16b5d3eef439f8a379baa6b656a523",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3264583,
            "upload_time": "2024-10-16T11:19:54",
            "upload_time_iso_8601": "2024-10-16T11:19:54.424117Z",
            "url": "https://files.pythonhosted.org/packages/e6/c4/bfadd202dcda8333a7ccafdc51c541dbdfce7c2c7cda89fa2374455d795f/psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5df109f45ac25e704ac954862581f9f9ae21303cc5ded3d0b775532b407f0e90",
                "md5": "f3962c6179f2cdde1d883107616c7be8",
                "sha256": "512d29bb12608891e349af6a0cccedce51677725a921c07dba6342beaf576f9a"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f3962c6179f2cdde1d883107616c7be8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3019831,
            "upload_time": "2024-10-16T11:19:57",
            "upload_time_iso_8601": "2024-10-16T11:19:57.762119Z",
            "url": "https://files.pythonhosted.org/packages/5d/f1/09f45ac25e704ac954862581f9f9ae21303cc5ded3d0b775532b407f0e90/psycopg2_binary-2.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e2e9beaea078095cc558f215e38f647c7114987d9febfc25cb2beed7c3582a5",
                "md5": "02ebe03b327b4f80051135c993840216",
                "sha256": "5a507320c58903967ef7384355a4da7ff3f28132d679aeb23572753cbf2ec10b"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "02ebe03b327b4f80051135c993840216",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2871822,
            "upload_time": "2024-10-16T11:20:04",
            "upload_time_iso_8601": "2024-10-16T11:20:04.693082Z",
            "url": "https://files.pythonhosted.org/packages/9e/2e/9beaea078095cc558f215e38f647c7114987d9febfc25cb2beed7c3582a5/psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "019eef93c5d93f3dc9fc92786ffab39e323b9aed066ba59fdc34cf85e2722271",
                "md5": "bf93fad565d8ac644f7af00271b392ac",
                "sha256": "6d4fa1079cab9018f4d0bd2db307beaa612b0d13ba73b5c6304b9fe2fb441ff7"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "bf93fad565d8ac644f7af00271b392ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2820975,
            "upload_time": "2024-10-16T11:20:11",
            "upload_time_iso_8601": "2024-10-16T11:20:11.401015Z",
            "url": "https://files.pythonhosted.org/packages/01/9e/ef93c5d93f3dc9fc92786ffab39e323b9aed066ba59fdc34cf85e2722271/psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5f0049e9631e3268fe4c5a387f6fc27e267ebe199acf1bc1bc9cbde4bd6916c",
                "md5": "ce937cfc395463a58159d6667f8a8be2",
                "sha256": "851485a42dbb0bdc1edcdabdb8557c09c9655dfa2ca0460ff210522e073e319e"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ce937cfc395463a58159d6667f8a8be2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2919320,
            "upload_time": "2024-10-16T11:20:17",
            "upload_time_iso_8601": "2024-10-16T11:20:17.959351Z",
            "url": "https://files.pythonhosted.org/packages/a5/f0/049e9631e3268fe4c5a387f6fc27e267ebe199acf1bc1bc9cbde4bd6916c/psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc9abcb8773b88e45fb5a5ea8339e2104d82c863a3b8558fbb2aadfe66df86b3",
                "md5": "0d125894b52b38646400d1f7bcde17f7",
                "sha256": "35958ec9e46432d9076286dda67942ed6d968b9c3a6a2fd62b48939d1d78bf68"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d125894b52b38646400d1f7bcde17f7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2957617,
            "upload_time": "2024-10-16T11:20:24",
            "upload_time_iso_8601": "2024-10-16T11:20:24.711207Z",
            "url": "https://files.pythonhosted.org/packages/dc/9a/bcb8773b88e45fb5a5ea8339e2104d82c863a3b8558fbb2aadfe66df86b3/psycopg2_binary-2.9.10-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e26b144336a9bf08a67d217b3af3246abb1d027095dab726f0687f01f43e8c03",
                "md5": "d2f6541fc92557bc3de321e6749bef00",
                "sha256": "ecced182e935529727401b24d76634a357c71c9275b356efafd8a2a91ec07392"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "d2f6541fc92557bc3de321e6749bef00",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1024618,
            "upload_time": "2024-10-16T11:20:27",
            "upload_time_iso_8601": "2024-10-16T11:20:27.718849Z",
            "url": "https://files.pythonhosted.org/packages/e2/6b/144336a9bf08a67d217b3af3246abb1d027095dab726f0687f01f43e8c03/psycopg2_binary-2.9.10-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61693b3d7bd583c6d3cbe5100802efa5beacaacc86e37b653fc708bf3d6853b8",
                "md5": "4feba746bd4aa47bcee41552eb040458",
                "sha256": "ee0e8c683a7ff25d23b55b11161c2663d4b099770f6085ff0a20d4505778d6b4"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4feba746bd4aa47bcee41552eb040458",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1163816,
            "upload_time": "2024-10-16T11:20:30",
            "upload_time_iso_8601": "2024-10-16T11:20:30.777076Z",
            "url": "https://files.pythonhosted.org/packages/61/69/3b3d7bd583c6d3cbe5100802efa5beacaacc86e37b653fc708bf3d6853b8/psycopg2_binary-2.9.10-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "497d465cc9795cf76f6d329efdafca74693714556ea3891813701ac1fee87545",
                "md5": "f42cd04f09877d122c98d99f4d786bb6",
                "sha256": "880845dfe1f85d9d5f7c412efea7a08946a46894537e4e5d091732eb1d34d9a0"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f42cd04f09877d122c98d99f4d786bb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3044771,
            "upload_time": "2024-10-16T11:20:35",
            "upload_time_iso_8601": "2024-10-16T11:20:35.234241Z",
            "url": "https://files.pythonhosted.org/packages/49/7d/465cc9795cf76f6d329efdafca74693714556ea3891813701ac1fee87545/psycopg2_binary-2.9.10-cp312-cp312-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b316d225b7b641a1a2148e3ed65e1aa74fc86ba3fee850545e27be9e1de893d",
                "md5": "2f57a4c08030116cf4e5312c5de1b015",
                "sha256": "9440fa522a79356aaa482aa4ba500b65f28e5d0e63b801abf6aa152a29bd842a"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2f57a4c08030116cf4e5312c5de1b015",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3275336,
            "upload_time": "2024-10-16T11:20:38",
            "upload_time_iso_8601": "2024-10-16T11:20:38.742971Z",
            "url": "https://files.pythonhosted.org/packages/8b/31/6d225b7b641a1a2148e3ed65e1aa74fc86ba3fee850545e27be9e1de893d/psycopg2_binary-2.9.10-cp312-cp312-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30b7a68c2b4bff1cbb1728e3ec864b2d92327c77ad52edcd27922535a8366f68",
                "md5": "7c30a1ebafa40c2662907cad8e2b329a",
                "sha256": "e3923c1d9870c49a2d44f795df0c889a22380d36ef92440ff618ec315757e539"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7c30a1ebafa40c2662907cad8e2b329a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2851637,
            "upload_time": "2024-10-16T11:20:42",
            "upload_time_iso_8601": "2024-10-16T11:20:42.145817Z",
            "url": "https://files.pythonhosted.org/packages/30/b7/a68c2b4bff1cbb1728e3ec864b2d92327c77ad52edcd27922535a8366f68/psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bb1cfedc0e0e6f9ad61f8657fd173b2f831ce261c02a08c0b09c652b127d813",
                "md5": "edc5c51e5cb1873ef391f15aa61bbd3d",
                "sha256": "7b2c956c028ea5de47ff3a8d6b3cc3330ab45cf0b7c3da35a2d6ff8420896526"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "edc5c51e5cb1873ef391f15aa61bbd3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3082097,
            "upload_time": "2024-10-16T11:20:46",
            "upload_time_iso_8601": "2024-10-16T11:20:46.185583Z",
            "url": "https://files.pythonhosted.org/packages/0b/b1/cfedc0e0e6f9ad61f8657fd173b2f831ce261c02a08c0b09c652b127d813/psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18ed0a8e4153c9b769f59c02fb5e7914f20f0b2483a19dae7bf2db54b743d0d0",
                "md5": "1317b9271d09d2b10f004d48a6170a78",
                "sha256": "f758ed67cab30b9a8d2833609513ce4d3bd027641673d4ebc9c067e4d208eec1"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1317b9271d09d2b10f004d48a6170a78",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3264776,
            "upload_time": "2024-10-16T11:20:50",
            "upload_time_iso_8601": "2024-10-16T11:20:50.879513Z",
            "url": "https://files.pythonhosted.org/packages/18/ed/0a8e4153c9b769f59c02fb5e7914f20f0b2483a19dae7bf2db54b743d0d0/psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10dbd09da68c6a0cdab41566b74e0a6068a425f077169bed0946559b7348ebe9",
                "md5": "053f7dbea7058b442ac4f8d85f4431d0",
                "sha256": "8cd9b4f2cfab88ed4a9106192de509464b75a906462fb846b936eabe45c2063e"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "053f7dbea7058b442ac4f8d85f4431d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3020968,
            "upload_time": "2024-10-16T11:20:56",
            "upload_time_iso_8601": "2024-10-16T11:20:56.819523Z",
            "url": "https://files.pythonhosted.org/packages/10/db/d09da68c6a0cdab41566b74e0a6068a425f077169bed0946559b7348ebe9/psycopg2_binary-2.9.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94284d6f8c255f0dfffb410db2b3f9ac5218d959a66c715c34cac31081e19b95",
                "md5": "124b6a262ada29a8efe2ba5312349155",
                "sha256": "6dc08420625b5a20b53551c50deae6e231e6371194fa0651dbe0fb206452ae1f"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "124b6a262ada29a8efe2ba5312349155",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2872334,
            "upload_time": "2024-10-16T11:21:02",
            "upload_time_iso_8601": "2024-10-16T11:21:02.411099Z",
            "url": "https://files.pythonhosted.org/packages/94/28/4d6f8c255f0dfffb410db2b3f9ac5218d959a66c715c34cac31081e19b95/psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "05f720d7bf796593c4fea95e12119d6cc384ff1f6141a24fbb7df5a668d29d29",
                "md5": "960d37506d60675f808b263f5dac589b",
                "sha256": "d7cd730dfa7c36dbe8724426bf5612798734bff2d3c3857f36f2733f5bfc7c00"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "960d37506d60675f808b263f5dac589b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2822722,
            "upload_time": "2024-10-16T11:21:09",
            "upload_time_iso_8601": "2024-10-16T11:21:09.010239Z",
            "url": "https://files.pythonhosted.org/packages/05/f7/20d7bf796593c4fea95e12119d6cc384ff1f6141a24fbb7df5a668d29d29/psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4de40c407ae919ef626dbdb32835a03b6737013c3cc7240169843965cada2bdf",
                "md5": "224245c75ac11fd625154673f3def27d",
                "sha256": "155e69561d54d02b3c3209545fb08938e27889ff5a10c19de8d23eb5a41be8a5"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "224245c75ac11fd625154673f3def27d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2920132,
            "upload_time": "2024-10-16T11:21:16",
            "upload_time_iso_8601": "2024-10-16T11:21:16.339539Z",
            "url": "https://files.pythonhosted.org/packages/4d/e4/0c407ae919ef626dbdb32835a03b6737013c3cc7240169843965cada2bdf/psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d70aa69c9f69cf09a01da224909ff6ce8b68faeef476f00f7ec377e8f03be70",
                "md5": "f8d4eb2499a914e57e35d6414e3b556d",
                "sha256": "c3cc28a6fd5a4a26224007712e79b81dbaee2ffb90ff406256158ec4d7b52b47"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8d4eb2499a914e57e35d6414e3b556d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2959312,
            "upload_time": "2024-10-16T11:21:25",
            "upload_time_iso_8601": "2024-10-16T11:21:25.584458Z",
            "url": "https://files.pythonhosted.org/packages/2d/70/aa69c9f69cf09a01da224909ff6ce8b68faeef476f00f7ec377e8f03be70/psycopg2_binary-2.9.10-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d3bd213e59854fafe87ba47814bf413ace0dcee33a89c8c8c814faca6bc7cf3c",
                "md5": "9616f60875ec1ffd161b0332d8fa71ba",
                "sha256": "ec8a77f521a17506a24a5f626cb2aee7850f9b69a0afe704586f63a464f3cd64"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "9616f60875ec1ffd161b0332d8fa71ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1025191,
            "upload_time": "2024-10-16T11:21:29",
            "upload_time_iso_8601": "2024-10-16T11:21:29.912295Z",
            "url": "https://files.pythonhosted.org/packages/d3/bd/213e59854fafe87ba47814bf413ace0dcee33a89c8c8c814faca6bc7cf3c/psycopg2_binary-2.9.10-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "922906261ea000e2dc1e22907dbbc483a1093665509ea586b29b8986a0e56733",
                "md5": "8a679d6131f35efdb4a5e96aabcbaa47",
                "sha256": "18c5ee682b9c6dd3696dad6e54cc7ff3a1a9020df6a5c0f861ef8bfd338c3ca0"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8a679d6131f35efdb4a5e96aabcbaa47",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1164031,
            "upload_time": "2024-10-16T11:21:34",
            "upload_time_iso_8601": "2024-10-16T11:21:34.211594Z",
            "url": "https://files.pythonhosted.org/packages/92/29/06261ea000e2dc1e22907dbbc483a1093665509ea586b29b8986a0e56733/psycopg2_binary-2.9.10-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e30d41d3ba765609c0763505d565c4d12d8f3c79793f0d0f044ff5a28bf395b",
                "md5": "8f37a42d41ac6393a8b7600394316469",
                "sha256": "26540d4a9a4e2b096f1ff9cce51253d0504dca5a85872c7f7be23be5a53eb18d"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f37a42d41ac6393a8b7600394316469",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3044699,
            "upload_time": "2024-10-16T11:21:42",
            "upload_time_iso_8601": "2024-10-16T11:21:42.841061Z",
            "url": "https://files.pythonhosted.org/packages/3e/30/d41d3ba765609c0763505d565c4d12d8f3c79793f0d0f044ff5a28bf395b/psycopg2_binary-2.9.10-cp313-cp313-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3544257ddadec7ef04536ba71af6bc6a75ec05c5343004a7ec93006bee66c0bc",
                "md5": "9a7651ab42c18ff11ea57c89c6b8c6e0",
                "sha256": "e217ce4d37667df0bc1c397fdcd8de5e81018ef305aed9415c3b093faaeb10fb"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-macosx_14_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9a7651ab42c18ff11ea57c89c6b8c6e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3275245,
            "upload_time": "2024-10-16T11:21:51",
            "upload_time_iso_8601": "2024-10-16T11:21:51.989760Z",
            "url": "https://files.pythonhosted.org/packages/35/44/257ddadec7ef04536ba71af6bc6a75ec05c5343004a7ec93006bee66c0bc/psycopg2_binary-2.9.10-cp313-cp313-macosx_14_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b1148ea1cd11de67f9efd7262085588790a95d9dfcd9b8a687d46caf7305c1a",
                "md5": "41795b4784b66de01e0c8426251c5946",
                "sha256": "245159e7ab20a71d989da00f280ca57da7641fa2cdcf71749c193cea540a74f7"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "41795b4784b66de01e0c8426251c5946",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2851631,
            "upload_time": "2024-10-16T11:21:57",
            "upload_time_iso_8601": "2024-10-16T11:21:57.584358Z",
            "url": "https://files.pythonhosted.org/packages/1b/11/48ea1cd11de67f9efd7262085588790a95d9dfcd9b8a687d46caf7305c1a/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62e062ce5ee650e6c86719d621a761fe4bc846ab9eff8c1f12b1ed5741bf1c9b",
                "md5": "5e203a08ac35a70d02f0c2c88d268efc",
                "sha256": "3c4ded1a24b20021ebe677b7b08ad10bf09aac197d6943bfe6fec70ac4e4690d"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5e203a08ac35a70d02f0c2c88d268efc",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3082140,
            "upload_time": "2024-10-16T11:22:02",
            "upload_time_iso_8601": "2024-10-16T11:22:02.005436Z",
            "url": "https://files.pythonhosted.org/packages/62/e0/62ce5ee650e6c86719d621a761fe4bc846ab9eff8c1f12b1ed5741bf1c9b/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27ce63f946c098611f7be234c0dd7cb1ad68b0b5744d34f68062bb3c5aa510c8",
                "md5": "e3068814438ab58c662e365ed823c3d1",
                "sha256": "3abb691ff9e57d4a93355f60d4f4c1dd2d68326c968e7db17ea96df3c023ef73"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e3068814438ab58c662e365ed823c3d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3264762,
            "upload_time": "2024-10-16T11:22:06",
            "upload_time_iso_8601": "2024-10-16T11:22:06.412349Z",
            "url": "https://files.pythonhosted.org/packages/27/ce/63f946c098611f7be234c0dd7cb1ad68b0b5744d34f68062bb3c5aa510c8/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4325c603cd81402e69edf7daa59b1602bd41eb9859e2824b8c0855d748366ac9",
                "md5": "8c8b1dd33a4314eb09e47d9019a23e49",
                "sha256": "8608c078134f0b3cbd9f89b34bd60a943b23fd33cc5f065e8d5f840061bd0673"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c8b1dd33a4314eb09e47d9019a23e49",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3020967,
            "upload_time": "2024-10-16T11:22:11",
            "upload_time_iso_8601": "2024-10-16T11:22:11.583904Z",
            "url": "https://files.pythonhosted.org/packages/43/25/c603cd81402e69edf7daa59b1602bd41eb9859e2824b8c0855d748366ac9/psycopg2_binary-2.9.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fd68708d8c6fca531057fa170cdde8df870e8b6a9b136e82b361c65e42b841e",
                "md5": "5feffa4b978a65fbb4bb767b9fdd823d",
                "sha256": "230eeae2d71594103cd5b93fd29d1ace6420d0b86f4778739cb1a5a32f607d1f"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5feffa4b978a65fbb4bb767b9fdd823d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2872326,
            "upload_time": "2024-10-16T11:22:16",
            "upload_time_iso_8601": "2024-10-16T11:22:16.406066Z",
            "url": "https://files.pythonhosted.org/packages/5f/d6/8708d8c6fca531057fa170cdde8df870e8b6a9b136e82b361c65e42b841e/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ceac5b1ea50fc08a9df82de7e1771537557f07c2632231bbab652c7e22597908",
                "md5": "1b19bbc93caad12fd75ebf5a78573f40",
                "sha256": "bb89f0a835bcfc1d42ccd5f41f04870c1b936d8507c6df12b7737febc40f0909"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1b19bbc93caad12fd75ebf5a78573f40",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2822712,
            "upload_time": "2024-10-16T11:22:21",
            "upload_time_iso_8601": "2024-10-16T11:22:21.366375Z",
            "url": "https://files.pythonhosted.org/packages/ce/ac/5b1ea50fc08a9df82de7e1771537557f07c2632231bbab652c7e22597908/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4fc504d4503b2abc4570fac3ca56eb8fed5e437bf9c9ef13f36b6621db8ef00",
                "md5": "88892ed704e31b8cddc0e92d9f4a470f",
                "sha256": "f0c2d907a1e102526dd2986df638343388b94c33860ff3bbe1384130828714b1"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "88892ed704e31b8cddc0e92d9f4a470f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2920155,
            "upload_time": "2024-10-16T11:22:25",
            "upload_time_iso_8601": "2024-10-16T11:22:25.684314Z",
            "url": "https://files.pythonhosted.org/packages/c4/fc/504d4503b2abc4570fac3ca56eb8fed5e437bf9c9ef13f36b6621db8ef00/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2d1323581e9273ad2c0dbd1902f3fb50c441da86e894b6e25a73c3fda32c57e",
                "md5": "4e58804b97263363d825ba8f650ce121",
                "sha256": "f8157bed2f51db683f31306aa497311b560f2265998122abe1dce6428bd86567"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e58804b97263363d825ba8f650ce121",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2959356,
            "upload_time": "2024-10-16T11:22:30",
            "upload_time_iso_8601": "2024-10-16T11:22:30.562457Z",
            "url": "https://files.pythonhosted.org/packages/b2/d1/323581e9273ad2c0dbd1902f3fb50c441da86e894b6e25a73c3fda32c57e/psycopg2_binary-2.9.10-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03a77aa45bea9c790da0ec4765902d714ee7c43b73ccff34916261090849b715",
                "md5": "38dde09818b78cc1ce1279c684b35bbf",
                "sha256": "eb09aa7f9cecb45027683bb55aebaaf45a0df8bf6de68801a6afdc7947bb09d4"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp38-cp38-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38dde09818b78cc1ce1279c684b35bbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3043405,
            "upload_time": "2024-10-16T11:22:35",
            "upload_time_iso_8601": "2024-10-16T11:22:35.998016Z",
            "url": "https://files.pythonhosted.org/packages/03/a7/7aa45bea9c790da0ec4765902d714ee7c43b73ccff34916261090849b715/psycopg2_binary-2.9.10-cp38-cp38-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0eeae0197035d74cc1065e94f2ebf7cdd9fa4aa00bb06b1850091568345441cd",
                "md5": "56beeea422acb6465ab82ae466a86f05",
                "sha256": "b73d6d7f0ccdad7bc43e6d34273f70d587ef62f824d7261c4ae9b8b1b6af90e8"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "56beeea422acb6465ab82ae466a86f05",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2851210,
            "upload_time": "2024-10-16T11:22:41",
            "upload_time_iso_8601": "2024-10-16T11:22:41.573182Z",
            "url": "https://files.pythonhosted.org/packages/0e/ea/e0197035d74cc1065e94f2ebf7cdd9fa4aa00bb06b1850091568345441cd/psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23bf9be0b2dd105299860e6b001ad7519e36208944609c8382d5aa2dfc58294c",
                "md5": "d884fa53fe72d055ff25758e3b85411c",
                "sha256": "ce5ab4bf46a211a8e924d307c1b1fcda82368586a19d0a24f8ae166f5c784864"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d884fa53fe72d055ff25758e3b85411c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3080972,
            "upload_time": "2024-10-16T11:22:46",
            "upload_time_iso_8601": "2024-10-16T11:22:46.431816Z",
            "url": "https://files.pythonhosted.org/packages/23/bf/9be0b2dd105299860e6b001ad7519e36208944609c8382d5aa2dfc58294c/psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0419bd5324737573f1278d65a2abb907332b31b42622421232c42909c8802378",
                "md5": "ef0a82977b83b4215a1c34f0b0aac214",
                "sha256": "056470c3dc57904bbf63d6f534988bafc4e970ffd50f6271fc4ee7daad9498a5"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ef0a82977b83b4215a1c34f0b0aac214",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3264718,
            "upload_time": "2024-10-16T11:22:52",
            "upload_time_iso_8601": "2024-10-16T11:22:52.542085Z",
            "url": "https://files.pythonhosted.org/packages/04/19/bd5324737573f1278d65a2abb907332b31b42622421232c42909c8802378/psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23ace39fa755f7c99aed7a2ff5f0550519248aa8f9d39c2b0705dfc3b4f13a27",
                "md5": "8118ce108f5bb9e4d61b66b3ef85315b",
                "sha256": "73aa0e31fa4bb82578f3a6c74a73c273367727de397a7a0f07bd83cbea696baa"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8118ce108f5bb9e4d61b66b3ef85315b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3019807,
            "upload_time": "2024-10-16T11:23:00",
            "upload_time_iso_8601": "2024-10-16T11:23:00.250877Z",
            "url": "https://files.pythonhosted.org/packages/23/ac/e39fa755f7c99aed7a2ff5f0550519248aa8f9d39c2b0705dfc3b4f13a27/psycopg2_binary-2.9.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "930d4be488917130cde91431d859fce2b004417bce96a5fbb854d813ab9c2bde",
                "md5": "61c9fe3172b40c98505da362a611dc1f",
                "sha256": "8de718c0e1c4b982a54b41779667242bc630b2197948405b7bd8ce16bcecac92"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "61c9fe3172b40c98505da362a611dc1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2871932,
            "upload_time": "2024-10-16T11:23:09",
            "upload_time_iso_8601": "2024-10-16T11:23:09.287602Z",
            "url": "https://files.pythonhosted.org/packages/93/0d/4be488917130cde91431d859fce2b004417bce96a5fbb854d813ab9c2bde/psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fdb45ca7735a461ea2669ee579afa9e23af9d0f9453ca34c357dd648625ed39",
                "md5": "05ea6f50b746cb6655e42d5dd98b1466",
                "sha256": "5c370b1e4975df846b0277b4deba86419ca77dbc25047f535b0bb03d1a544d44"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "05ea6f50b746cb6655e42d5dd98b1466",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2820988,
            "upload_time": "2024-10-16T11:23:19",
            "upload_time_iso_8601": "2024-10-16T11:23:19.016670Z",
            "url": "https://files.pythonhosted.org/packages/6f/db/45ca7735a461ea2669ee579afa9e23af9d0f9453ca34c357dd648625ed39/psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "902b1123431e34df437768fd0d1fbb2ddde36bf44d8b3288cf1512ff66306bc3",
                "md5": "e2dca00529a570c916cf1dfcb2c59219",
                "sha256": "ffe8ed017e4ed70f68b7b371d84b7d4a790368db9203dfc2d222febd3a9c8863"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e2dca00529a570c916cf1dfcb2c59219",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2919351,
            "upload_time": "2024-10-16T11:23:26",
            "upload_time_iso_8601": "2024-10-16T11:23:26.735406Z",
            "url": "https://files.pythonhosted.org/packages/90/2b/1123431e34df437768fd0d1fbb2ddde36bf44d8b3288cf1512ff66306bc3/psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a09dd4ef15458a9b879ea3bdde77c93b16ea49762cc281f44cfd8850bb537050",
                "md5": "3aff3244ee240eb8a427351112a9bf1e",
                "sha256": "8aecc5e80c63f7459a1a2ab2c64df952051df196294d9f739933a9f6687e86b3"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3aff3244ee240eb8a427351112a9bf1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2957589,
            "upload_time": "2024-10-16T11:23:33",
            "upload_time_iso_8601": "2024-10-16T11:23:33.904323Z",
            "url": "https://files.pythonhosted.org/packages/a0/9d/d4ef15458a9b879ea3bdde77c93b16ea49762cc281f44cfd8850bb537050/psycopg2_binary-2.9.10-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2bce77648009b6e61af327c607543f65fdf25bcfb4100f5a6f3bdb62ddac03c",
                "md5": "57957395e60f942f5121a00381680372",
                "sha256": "7a813c8bdbaaaab1f078014b9b0b13f5de757e2b5d9be6403639b298a04d218b"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-macosx_12_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57957395e60f942f5121a00381680372",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3043437,
            "upload_time": "2024-10-16T11:23:42",
            "upload_time_iso_8601": "2024-10-16T11:23:42.946630Z",
            "url": "https://files.pythonhosted.org/packages/a2/bc/e77648009b6e61af327c607543f65fdf25bcfb4100f5a6f3bdb62ddac03c/psycopg2_binary-2.9.10-cp39-cp39-macosx_12_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0e85a12211a1f5b959f3e3ccd342eace60c1f26422f53e06d687821dc268780",
                "md5": "1b2c77d0452aa2a241666eedb78d621c",
                "sha256": "d00924255d7fc916ef66e4bf22f354a940c67179ad3fd7067d7a0a9c84d2fbfc"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b2c77d0452aa2a241666eedb78d621c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2851340,
            "upload_time": "2024-10-16T11:23:50",
            "upload_time_iso_8601": "2024-10-16T11:23:50.038340Z",
            "url": "https://files.pythonhosted.org/packages/e0/e8/5a12211a1f5b959f3e3ccd342eace60c1f26422f53e06d687821dc268780/psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47ed5932b0458a7fc61237b653df050513c8d18a6f4083cc7f90dcef967f7bce",
                "md5": "d691f07b92d8cb6b15d9240c770f2533",
                "sha256": "7559bce4b505762d737172556a4e6ea8a9998ecac1e39b5233465093e8cee697"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d691f07b92d8cb6b15d9240c770f2533",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3080905,
            "upload_time": "2024-10-16T11:23:57",
            "upload_time_iso_8601": "2024-10-16T11:23:57.932510Z",
            "url": "https://files.pythonhosted.org/packages/47/ed/5932b0458a7fc61237b653df050513c8d18a6f4083cc7f90dcef967f7bce/psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71df8047d85c3d23864aca4613c3be1ea0fe61dbe4e050a89ac189f9dce4403e",
                "md5": "a04c92bb0e7201b43752afa131bc722b",
                "sha256": "e8b58f0a96e7a1e341fc894f62c1177a7c83febebb5ff9123b579418fdc8a481"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a04c92bb0e7201b43752afa131bc722b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3264640,
            "upload_time": "2024-10-16T11:24:06",
            "upload_time_iso_8601": "2024-10-16T11:24:06.122230Z",
            "url": "https://files.pythonhosted.org/packages/71/df/8047d85c3d23864aca4613c3be1ea0fe61dbe4e050a89ac189f9dce4403e/psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3de6157e4ef242920e8f2749f7708d5cc8815414bdd4a27a91996e7cd5c80df",
                "md5": "57b6c67df2da9bc71fe4d276de9b028e",
                "sha256": "6b269105e59ac96aba877c1707c600ae55711d9dcd3fc4b5012e4af68e30c648"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57b6c67df2da9bc71fe4d276de9b028e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3019812,
            "upload_time": "2024-10-16T11:24:17",
            "upload_time_iso_8601": "2024-10-16T11:24:17.025192Z",
            "url": "https://files.pythonhosted.org/packages/f3/de/6157e4ef242920e8f2749f7708d5cc8815414bdd4a27a91996e7cd5c80df/psycopg2_binary-2.9.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25f90fc49efd2d4d6db3a8d0a3f5749b33a0d3fdd872cad49fbf5bfce1c50027",
                "md5": "d4f470a2470f4338b28b26bdd0f302d1",
                "sha256": "79625966e176dc97ddabc142351e0409e28acf4660b88d1cf6adb876d20c490d"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d4f470a2470f4338b28b26bdd0f302d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2871933,
            "upload_time": "2024-10-16T11:24:24",
            "upload_time_iso_8601": "2024-10-16T11:24:24.858632Z",
            "url": "https://files.pythonhosted.org/packages/25/f9/0fc49efd2d4d6db3a8d0a3f5749b33a0d3fdd872cad49fbf5bfce1c50027/psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57bc2ed1bd182219065692ed458d218d311b0b220b20662d25d913bc4e8d3549",
                "md5": "0f07c5e252db06c66a70a64b3fc1964a",
                "sha256": "8aabf1c1a04584c168984ac678a668094d831f152859d06e055288fa515e4d30"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0f07c5e252db06c66a70a64b3fc1964a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2820990,
            "upload_time": "2024-10-16T11:24:29",
            "upload_time_iso_8601": "2024-10-16T11:24:29.571549Z",
            "url": "https://files.pythonhosted.org/packages/57/bc/2ed1bd182219065692ed458d218d311b0b220b20662d25d913bc4e8d3549/psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "712a43f77a9b8ee0b10e2de784d97ddc099d9fe0d9eec462a006e4d2cc74756d",
                "md5": "1e14e497ffca97f87fa3e9a6fe127e6c",
                "sha256": "19721ac03892001ee8fdd11507e6a2e01f4e37014def96379411ca99d78aeb2c"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1e14e497ffca97f87fa3e9a6fe127e6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2919352,
            "upload_time": "2024-10-16T11:24:36",
            "upload_time_iso_8601": "2024-10-16T11:24:36.906578Z",
            "url": "https://files.pythonhosted.org/packages/71/2a/43f77a9b8ee0b10e2de784d97ddc099d9fe0d9eec462a006e4d2cc74756d/psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5786d2943df70469e6afab3b5b8e1367fccc61891f46de436b24ddee6f2c8404",
                "md5": "3c6846b782c470f7b901ea9cbb526ae1",
                "sha256": "7f5d859928e635fa3ce3477704acee0f667b3a3d3e4bb109f2b18d4005f38287"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c6846b782c470f7b901ea9cbb526ae1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2957614,
            "upload_time": "2024-10-16T11:24:44",
            "upload_time_iso_8601": "2024-10-16T11:24:44.423033Z",
            "url": "https://files.pythonhosted.org/packages/57/86/d2943df70469e6afab3b5b8e1367fccc61891f46de436b24ddee6f2c8404/psycopg2_binary-2.9.10-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8521195d69371330983aa16139e60ba855d0a18164c9295f3a3696be41bbcd54",
                "md5": "d8afea9190add94eaadce2d8a76d74f8",
                "sha256": "3216ccf953b3f267691c90c6fe742e45d890d8272326b4a8b20850a03d05b7b8"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "d8afea9190add94eaadce2d8a76d74f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1025341,
            "upload_time": "2024-10-16T11:24:48",
            "upload_time_iso_8601": "2024-10-16T11:24:48.056281Z",
            "url": "https://files.pythonhosted.org/packages/85/21/195d69371330983aa16139e60ba855d0a18164c9295f3a3696be41bbcd54/psycopg2_binary-2.9.10-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad5373196ebc19d6fbfc22427b982fbc98698b7b9c361e5e7707e3a3247cf06d",
                "md5": "d3545456f1f5623c14e70377e111d3aa",
                "sha256": "30e34c4e97964805f715206c7b789d54a78b70f3ff19fbe590104b71c45600e5"
            },
            "downloads": -1,
            "filename": "psycopg2_binary-2.9.10-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d3545456f1f5623c14e70377e111d3aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1163958,
            "upload_time": "2024-10-16T11:24:51",
            "upload_time_iso_8601": "2024-10-16T11:24:51.882936Z",
            "url": "https://files.pythonhosted.org/packages/ad/53/73196ebc19d6fbfc22427b982fbc98698b7b9c361e5e7707e3a3247cf06d/psycopg2_binary-2.9.10-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb0ebdc8274dc0585090b4e3432267d7be4dfbfd8971c0fa59167c711105a6bf",
                "md5": "96c2647f95ea5540fe9d05fc510882af",
                "sha256": "4b3df0e6990aa98acda57d983942eff13d824135fe2250e6522edaa782a06de2"
            },
            "downloads": -1,
            "filename": "psycopg2-binary-2.9.10.tar.gz",
            "has_sig": false,
            "md5_digest": "96c2647f95ea5540fe9d05fc510882af",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 385764,
            "upload_time": "2024-10-16T11:24:58",
            "upload_time_iso_8601": "2024-10-16T11:24:58.126574Z",
            "url": "https://files.pythonhosted.org/packages/cb/0e/bdc8274dc0585090b4e3432267d7be4dfbfd8971c0fa59167c711105a6bf/psycopg2-binary-2.9.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-16 11:24:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "psycopg",
    "github_project": "psycopg2",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "psycopg2-binary"
}
        
Elapsed time: 0.58546s