pymssql


Namepymssql JSON
Version 2.2.11 PyPI version JSON
download
home_page
SummaryDB-API interface to Microsoft SQL Server for Python. (new Cython-based version)
upload_time2023-12-04 04:00:06
maintainerMikhail Terekhov
docs_urlNone
authorDamien Churchill
requires_python
licenseLGPL
keywords mssql sql server database db-api
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
pymssql - DB-API interface to Microsoft SQL Server
==================================================

.. image:: https://github.com/pymssql/pymssql/workflows/Linux/badge.svg
        :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Linux%22

.. image:: https://github.com/pymssql/pymssql/workflows/macOS/badge.svg
        :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22macOS%22

.. image:: https://github.com/pymssql/pymssql/workflows/Windows/badge.svg
        :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Windows%22

.. image:: http://img.shields.io/pypi/dm/pymssql.svg
        :target: https://pypi.python.org/pypi/pymssql/

.. image:: http://img.shields.io/pypi/v/pymssql.svg
        :target: https://pypi.python.org/pypi/pymssql/

A simple database interface for `Python`_ that builds on top of `FreeTDS`_ to
provide a Python DB-API (`PEP-249`_) interface to `Microsoft SQL Server`_.

.. _Microsoft SQL Server: http://www.microsoft.com/sqlserver/
.. _Python: http://www.python.org/
.. _PEP-249: http://www.python.org/dev/peps/pep-0249/
.. _FreeTDS: http://www.freetds.org/

Detailed information on pymssql is available on the website:

`pymssql.readthedocs.io <https://pymssql.readthedocs.io/en/stable/>`_

New development is happening on GitHub at:

`github.com/pymssql/pymssql <https://github.com/pymssql/pymssql>`_

There is a Google Group for discussion at:

`groups.google.com <https://groups.google.com/forum/?fromgroups#!forum/pymssql>`_


Getting started
===============

pymssql wheels are available from PyPi. To install it run:

.. code-block:: bash

    pip install -U pip
    pip install pymssql

Most of the times this should be all what's needed.
The official pymssql wheels bundle a static copy of FreeTDS
and have SSL support so they can be used to connect to Azure.

.. note::
   On some Linux distributions `pip` version is too old to support all
   the flavors of manylinux wheels, so upgrading `pip` is necessary.
   An example of such distributions would be Ubuntu 18.04 or
   Python3.6 module in RHEL8 and CentOS8.


Basic example
=============

.. code-block:: python

    conn = pymssql.connect(server, user, password, "tempdb")
    cursor = conn.cursor(as_dict=True)

    cursor.execute('SELECT * FROM persons WHERE salesrep=%s', 'John Doe')
    for row in cursor:
        print("ID=%d, Name=%s" % (row['id'], row['name']))

    conn.close()


Recent Changes
==============

Version 2.2.11 - 2023-12-03  - Mikhail Terekhov
===============================================

General
-------

- Use FreeTDS-1.4.9 for official wheels on PyPi.
- Add workflow for aarch64 wheel. Thanks to juntangc (fix #692, #759, #791, #819, #826, #858).
- Add datetime.date to SQLDATE conversion.
- Add encription parameter to connect (fix  #797).

Bug fixes
---------

- Fix version parsing in development.
- Add missing `charset` parameter when formatting query (fix #650).
- Use four digits for the year in SP args binding (fix #454).
- Fix convert_python_value to work with datetime.date (fix #811).

Version 2.2.10 - 2023-10-20  - Mikhail Terekhov
===============================================

General
-------

- Publish Linux wheels for Python-3.12

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pymssql",
    "maintainer": "Mikhail Terekhov",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "termim@gmail.com",
    "keywords": "mssql,SQL Server,database,DB-API",
    "author": "Damien Churchill",
    "author_email": "damoxc@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/06/b1/19a4463840c541413e58d13c1116b33669412c61528d53e02daf5e5e082b/pymssql-2.2.11.tar.gz",
    "platform": "any",
    "description": "\npymssql - DB-API interface to Microsoft SQL Server\n==================================================\n\n.. image:: https://github.com/pymssql/pymssql/workflows/Linux/badge.svg\n        :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Linux%22\n\n.. image:: https://github.com/pymssql/pymssql/workflows/macOS/badge.svg\n        :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22macOS%22\n\n.. image:: https://github.com/pymssql/pymssql/workflows/Windows/badge.svg\n        :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Windows%22\n\n.. image:: http://img.shields.io/pypi/dm/pymssql.svg\n        :target: https://pypi.python.org/pypi/pymssql/\n\n.. image:: http://img.shields.io/pypi/v/pymssql.svg\n        :target: https://pypi.python.org/pypi/pymssql/\n\nA simple database interface for `Python`_ that builds on top of `FreeTDS`_ to\nprovide a Python DB-API (`PEP-249`_) interface to `Microsoft SQL Server`_.\n\n.. _Microsoft SQL Server: http://www.microsoft.com/sqlserver/\n.. _Python: http://www.python.org/\n.. _PEP-249: http://www.python.org/dev/peps/pep-0249/\n.. _FreeTDS: http://www.freetds.org/\n\nDetailed information on pymssql is available on the website:\n\n`pymssql.readthedocs.io <https://pymssql.readthedocs.io/en/stable/>`_\n\nNew development is happening on GitHub at:\n\n`github.com/pymssql/pymssql <https://github.com/pymssql/pymssql>`_\n\nThere is a Google Group for discussion at:\n\n`groups.google.com <https://groups.google.com/forum/?fromgroups#!forum/pymssql>`_\n\n\nGetting started\n===============\n\npymssql wheels are available from PyPi. To install it run:\n\n.. code-block:: bash\n\n    pip install -U pip\n    pip install pymssql\n\nMost of the times this should be all what's needed.\nThe official pymssql wheels bundle a static copy of FreeTDS\nand have SSL support so they can be used to connect to Azure.\n\n.. note::\n   On some Linux distributions `pip` version is too old to support all\n   the flavors of manylinux wheels, so upgrading `pip` is necessary.\n   An example of such distributions would be Ubuntu 18.04 or\n   Python3.6 module in RHEL8 and CentOS8.\n\n\nBasic example\n=============\n\n.. code-block:: python\n\n    conn = pymssql.connect(server, user, password, \"tempdb\")\n    cursor = conn.cursor(as_dict=True)\n\n    cursor.execute('SELECT * FROM persons WHERE salesrep=%s', 'John Doe')\n    for row in cursor:\n        print(\"ID=%d, Name=%s\" % (row['id'], row['name']))\n\n    conn.close()\n\n\nRecent Changes\n==============\n\nVersion 2.2.11 - 2023-12-03  - Mikhail Terekhov\n===============================================\n\nGeneral\n-------\n\n- Use FreeTDS-1.4.9 for official wheels on PyPi.\n- Add workflow for aarch64 wheel. Thanks to juntangc (fix #692, #759, #791, #819, #826, #858).\n- Add datetime.date to SQLDATE conversion.\n- Add encription parameter to connect (fix  #797).\n\nBug fixes\n---------\n\n- Fix version parsing in development.\n- Add missing `charset` parameter when formatting query (fix #650).\n- Use four digits for the year in SP args binding (fix #454).\n- Fix convert_python_value to work with datetime.date (fix #811).\n\nVersion 2.2.10 - 2023-10-20  - Mikhail Terekhov\n===============================================\n\nGeneral\n-------\n\n- Publish Linux wheels for Python-3.12\n",
    "bugtrack_url": null,
    "license": "LGPL",
    "summary": "DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)",
    "version": "2.2.11",
    "project_urls": {
        "Changelog": "https://github.com/pymssql/pymssql/blob/master/ChangeLog.rst",
        "Documentation": "http://pymssql.readthedocs.io",
        "Source": "https://github.com/pymssql/pymssql"
    },
    "split_keywords": [
        "mssql",
        "sql server",
        "database",
        "db-api"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03c996f5f4b54ded80b4d31bc8aff9a76b969c6759a9a057778ac5b693a0ba53",
                "md5": "a82266820371ff1c20dbd8df1be1a63d",
                "sha256": "692ab328ac290bd2031bc4dd6deae32665dfffda1b12aaa92928d3ebc667d5ad"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a82266820371ff1c20dbd8df1be1a63d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1942354,
            "upload_time": "2023-12-04T03:59:32",
            "upload_time_iso_8601": "2023-12-04T03:59:32.151066Z",
            "url": "https://files.pythonhosted.org/packages/03/c9/96f5f4b54ded80b4d31bc8aff9a76b969c6759a9a057778ac5b693a0ba53/pymssql-2.2.11-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e01b2f7236d076ca9914381f8dd074370028fa5a8c6cd8cdc3c351d81f78cac0",
                "md5": "16f916214f673f45e63536da326989ec",
                "sha256": "723a4612421027a01b51e42e786678a18c4a27613a3ccecf331c026e0cc41353"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "16f916214f673f45e63536da326989ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3257366,
            "upload_time": "2023-12-04T04:14:38",
            "upload_time_iso_8601": "2023-12-04T04:14:38.140182Z",
            "url": "https://files.pythonhosted.org/packages/e0/1b/2f7236d076ca9914381f8dd074370028fa5a8c6cd8cdc3c351d81f78cac0/pymssql-2.2.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7cf068ad1306b9aa64489ef4b3932ebe375d4d2642c9aef05d7b51a76c62a01",
                "md5": "cfde7eaf2d721ccec0d9c016f39f1f56",
                "sha256": "34ab2373ca607174ad7244cfe955c07b6bc77a1e21d3c3143dbe934dec82c3a4"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfde7eaf2d721ccec0d9c016f39f1f56",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3359456,
            "upload_time": "2023-12-04T04:14:18",
            "upload_time_iso_8601": "2023-12-04T04:14:18.288708Z",
            "url": "https://files.pythonhosted.org/packages/a7/cf/068ad1306b9aa64489ef4b3932ebe375d4d2642c9aef05d7b51a76c62a01/pymssql-2.2.11-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d1c42bbfd0ecc2b05d7e9fee82dfac3c93a58386c0849b18521aa3133dc73c5",
                "md5": "1e87d2a53f6da9d5d177c35ffacc9bba",
                "sha256": "e8d9d42a50f6e8e6b356e4e8b2fa1da725344ec0be6f8a6107b7196e5bd74906"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1e87d2a53f6da9d5d177c35ffacc9bba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3749111,
            "upload_time": "2023-12-04T04:22:19",
            "upload_time_iso_8601": "2023-12-04T04:22:19.731708Z",
            "url": "https://files.pythonhosted.org/packages/3d/1c/42bbfd0ecc2b05d7e9fee82dfac3c93a58386c0849b18521aa3133dc73c5/pymssql-2.2.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd0e9ca280589c626390dd8d2176f0389d9b132a0be1114942334ba326e1c42e",
                "md5": "2c6a02b6f42dffc30c949d2d3085b1e1",
                "sha256": "aec64022a2419fad9f496f8e310522635e39d092970e1d55375ea0be86725174"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c6a02b6f42dffc30c949d2d3085b1e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4092822,
            "upload_time": "2023-12-04T04:21:45",
            "upload_time_iso_8601": "2023-12-04T04:21:45.782357Z",
            "url": "https://files.pythonhosted.org/packages/fd/0e/9ca280589c626390dd8d2176f0389d9b132a0be1114942334ba326e1c42e/pymssql-2.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65e510cbb5265ecdb1505accdddb8ae05e861997d7f50268e81380d801d26c8d",
                "md5": "8a8ea05f730821cf45cf87ab0182eabe",
                "sha256": "c389c8041c94d4058827faf5735df5f8e4c1c1eebdd051859536dc393925a667"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a8ea05f730821cf45cf87ab0182eabe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4432566,
            "upload_time": "2023-12-04T04:21:36",
            "upload_time_iso_8601": "2023-12-04T04:21:36.498870Z",
            "url": "https://files.pythonhosted.org/packages/65/e5/10cbb5265ecdb1505accdddb8ae05e861997d7f50268e81380d801d26c8d/pymssql-2.2.11-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b879ac0a7386ab581d553ace2481cf066d5228c8225d3fef0d8ae5a07cc56d18",
                "md5": "d5228bffa1e07dfa7ebb247477ae9582",
                "sha256": "6452326cecd4dcee359a6f8878b827118a8c8523cd24de5b3a971a7a172e4275"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "d5228bffa1e07dfa7ebb247477ae9582",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1294585,
            "upload_time": "2023-12-04T04:08:11",
            "upload_time_iso_8601": "2023-12-04T04:08:11.445132Z",
            "url": "https://files.pythonhosted.org/packages/b8/79/ac0a7386ab581d553ace2481cf066d5228c8225d3fef0d8ae5a07cc56d18/pymssql-2.2.11-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "031f297ed765c4f866979581ca79432fa218514b53723b6716cdd340d73c8e34",
                "md5": "47721f57b2ee7cc5a24ebd2363f0e418",
                "sha256": "c1bde266dbc91b100abd0311102a6585df09cc963599421cc12fd6b4cfa8e3d3"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "47721f57b2ee7cc5a24ebd2363f0e418",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1981165,
            "upload_time": "2023-12-04T04:06:56",
            "upload_time_iso_8601": "2023-12-04T04:06:56.972111Z",
            "url": "https://files.pythonhosted.org/packages/03/1f/297ed765c4f866979581ca79432fa218514b53723b6716cdd340d73c8e34/pymssql-2.2.11-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cc567807c057b33ba31f643b785d3fdfc121d324373b8a3e7fea0d5e811978d",
                "md5": "638e535b014a665aa8daf6cf92e113bb",
                "sha256": "6ddaf0597138179517bdbf5b5aa3caffee65987316dc906359a5d0801d0847ee"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "638e535b014a665aa8daf6cf92e113bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2243613,
            "upload_time": "2023-12-04T03:59:29",
            "upload_time_iso_8601": "2023-12-04T03:59:29.939071Z",
            "url": "https://files.pythonhosted.org/packages/0c/c5/67807c057b33ba31f643b785d3fdfc121d324373b8a3e7fea0d5e811978d/pymssql-2.2.11-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e32ffd8f5076c27588487f114fb41b893895e49bb654ec851ed283fe9e0225ab",
                "md5": "9bb373bd7c599272c12a5d6b1abb4939",
                "sha256": "410e8c40b7c1b421e750cf80ccf2da8d802ed815575758ac9a78c5f6cd995723"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9bb373bd7c599272c12a5d6b1abb4939",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3874915,
            "upload_time": "2023-12-04T04:22:21",
            "upload_time_iso_8601": "2023-12-04T04:22:21.808073Z",
            "url": "https://files.pythonhosted.org/packages/e3/2f/fd8f5076c27588487f114fb41b893895e49bb654ec851ed283fe9e0225ab/pymssql-2.2.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a60bf2de7c8fdfbbdbc817edfcbb1d2ade2b0701a7ac02dc95b1d168cf6bee3c",
                "md5": "faa912fe0f870b09b8b903bf310cd23a",
                "sha256": "fa1767239ed45e1fa91d82fc0c63305750530787cd64089cabbe183eb538a35b"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "faa912fe0f870b09b8b903bf310cd23a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4223375,
            "upload_time": "2023-12-04T04:21:48",
            "upload_time_iso_8601": "2023-12-04T04:21:48.677979Z",
            "url": "https://files.pythonhosted.org/packages/a6/0b/f2de7c8fdfbbdbc817edfcbb1d2ade2b0701a7ac02dc95b1d168cf6bee3c/pymssql-2.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e3e34d854e782990864dbc6ccdc694d9aef109a9f61b8bdfbbea1e916d342ce",
                "md5": "f5a4d3b6a8a8f44706afd0974e5e9ac7",
                "sha256": "9a644e4158fed30ae9f3846f2f1c74d36fa1610eb552de35b7f611d063fa3c85"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5a4d3b6a8a8f44706afd0974e5e9ac7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4594542,
            "upload_time": "2023-12-04T04:21:39",
            "upload_time_iso_8601": "2023-12-04T04:21:39.011074Z",
            "url": "https://files.pythonhosted.org/packages/0e/3e/34d854e782990864dbc6ccdc694d9aef109a9f61b8bdfbbea1e916d342ce/pymssql-2.2.11-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5db318c5af078a9e34327ed4cc682f8951a1f93e37a627b71d9a9d5dbd2766c5",
                "md5": "9f971cd5e73511093890c7604a5f019f",
                "sha256": "1956c111debe67f69a9c839b33ce420f0e8def1ef5ff9831c03d8ac840f82376"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "9f971cd5e73511093890c7604a5f019f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1293088,
            "upload_time": "2023-12-04T04:08:44",
            "upload_time_iso_8601": "2023-12-04T04:08:44.568639Z",
            "url": "https://files.pythonhosted.org/packages/5d/b3/18c5af078a9e34327ed4cc682f8951a1f93e37a627b71d9a9d5dbd2766c5/pymssql-2.2.11-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45d0b63572a104eba465905d3bc3cc5ec0d1350fec0f9d311bfa883c15acefd0",
                "md5": "c3f2d933cd6a51c65c8691a0315957ee",
                "sha256": "0bdd1fb49b0e331e47e83f39d4af784c857e230bfc73519654bab29285c51c63"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c3f2d933cd6a51c65c8691a0315957ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1981812,
            "upload_time": "2023-12-04T04:07:56",
            "upload_time_iso_8601": "2023-12-04T04:07:56.152175Z",
            "url": "https://files.pythonhosted.org/packages/45/d0/b63572a104eba465905d3bc3cc5ec0d1350fec0f9d311bfa883c15acefd0/pymssql-2.2.11-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44e7c1b34350541e499a18f0d0225bb244e5e0040c6fca2cfd8a6c3c32b3825e",
                "md5": "2589537e1b6be450330aa9562e6470cb",
                "sha256": "2609bbd3b715822bb4fa6d457b2985d32ad6ab9580fdb61ae6e0eee251791d24"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "2589537e1b6be450330aa9562e6470cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2207251,
            "upload_time": "2023-12-04T04:00:45",
            "upload_time_iso_8601": "2023-12-04T04:00:45.832597Z",
            "url": "https://files.pythonhosted.org/packages/44/e7/c1b34350541e499a18f0d0225bb244e5e0040c6fca2cfd8a6c3c32b3825e/pymssql-2.2.11-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a05b056c7bf7e22eaf1b1e14423dafc746e077a5ea071a3f16313f42a36fe090",
                "md5": "ac185ac4257fa772d8e94148c36aa06c",
                "sha256": "5928324a09de7466368c15ece1de4ab5ea968d24943ceade758836f9fc7149f5"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ac185ac4257fa772d8e94148c36aa06c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3804350,
            "upload_time": "2023-12-04T04:22:24",
            "upload_time_iso_8601": "2023-12-04T04:22:24.975279Z",
            "url": "https://files.pythonhosted.org/packages/a0/5b/056c7bf7e22eaf1b1e14423dafc746e077a5ea071a3f16313f42a36fe090/pymssql-2.2.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce717d0c4914a1548141ea8b53d3b8db897dc1b8e2ca6439b4d4172cbbf11f83",
                "md5": "757c466e7d751b5a60d0e807aabb69f1",
                "sha256": "ee8b10f797d0bfec626b803891cf9e98480ee11f2e8459a7616cdb7e4e4bf2de"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "757c466e7d751b5a60d0e807aabb69f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4175801,
            "upload_time": "2023-12-04T04:21:51",
            "upload_time_iso_8601": "2023-12-04T04:21:51.753504Z",
            "url": "https://files.pythonhosted.org/packages/ce/71/7d0c4914a1548141ea8b53d3b8db897dc1b8e2ca6439b4d4172cbbf11f83/pymssql-2.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f02ecb5e2b175f85cc59da1a1ffe839df35839470557f8e8deb32bed50bd0b2a",
                "md5": "feaf0dac7a21174a7f38c57ac8cd6c0b",
                "sha256": "1d5aa1a090b17f4ba75ffac3bb371f6c8c869692b653689396f9b470fde06981"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "feaf0dac7a21174a7f38c57ac8cd6c0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4542408,
            "upload_time": "2023-12-04T04:21:41",
            "upload_time_iso_8601": "2023-12-04T04:21:41.622977Z",
            "url": "https://files.pythonhosted.org/packages/f0/2e/cb5e2b175f85cc59da1a1ffe839df35839470557f8e8deb32bed50bd0b2a/pymssql-2.2.11-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d24ae504492e6ced1820fba3e6a1b16e6805fb5576c9d6206576656353673225",
                "md5": "2afd07d89a3c2657ef15488e218902e3",
                "sha256": "1f7ba71cf81af65c005173f279928bf86700d295f97e4965e169b5764bc6c4f2"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "2afd07d89a3c2657ef15488e218902e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1280572,
            "upload_time": "2023-12-04T04:09:18",
            "upload_time_iso_8601": "2023-12-04T04:09:18.024402Z",
            "url": "https://files.pythonhosted.org/packages/d2/4a/e504492e6ced1820fba3e6a1b16e6805fb5576c9d6206576656353673225/pymssql-2.2.11-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "feea24f53e9b4efb7705ab10533fbdd62cbb6524da5fe992b95705fbcf5fae2e",
                "md5": "1f7122ed8ad06710a98ae54f990937c8",
                "sha256": "a0ebb0e40c93f8f1e40aad80f512ae4aa89cb1ec8a96964b9afedcff1d5813fd"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1f7122ed8ad06710a98ae54f990937c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1968608,
            "upload_time": "2023-12-04T04:07:02",
            "upload_time_iso_8601": "2023-12-04T04:07:02.247374Z",
            "url": "https://files.pythonhosted.org/packages/fe/ea/24f53e9b4efb7705ab10533fbdd62cbb6524da5fe992b95705fbcf5fae2e/pymssql-2.2.11-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d39e15837047414ec6d32877a7ef00abbdb8317c31dccb599518d412d13ea12f",
                "md5": "adc57338df907d0633c3da5279a35ff1",
                "sha256": "e0ed115902956efaca9d9a20fa9b2b604e3e11d640416ca74900d215cdcbf3ab"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "adc57338df907d0633c3da5279a35ff1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1924450,
            "upload_time": "2023-12-04T04:02:23",
            "upload_time_iso_8601": "2023-12-04T04:02:23.823608Z",
            "url": "https://files.pythonhosted.org/packages/d3/9e/15837047414ec6d32877a7ef00abbdb8317c31dccb599518d412d13ea12f/pymssql-2.2.11-cp36-cp36m-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a86721628bdea4d424c75fe110a7a232943bf840f57c6679adaae115fce9c0e5",
                "md5": "7bba1a81e5e9896191598bce2cda1d1d",
                "sha256": "1a75afa17746972bb61120fb6ea907657fc1ab68250bbbd8b21a00d0720ed0f4"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "7bba1a81e5e9896191598bce2cda1d1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3083297,
            "upload_time": "2023-12-04T04:14:40",
            "upload_time_iso_8601": "2023-12-04T04:14:40.776982Z",
            "url": "https://files.pythonhosted.org/packages/a8/67/21628bdea4d424c75fe110a7a232943bf840f57c6679adaae115fce9c0e5/pymssql-2.2.11-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acd2796c36165b00a9107f84a321707f12323990532742321474a02ba368c039",
                "md5": "f6c27e01152a92322dcf9aed172d1ac8",
                "sha256": "d2ae69d8e46637a203cfb48e05439fc9e2ff7646fa1f5396aa3577ce52810031"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f6c27e01152a92322dcf9aed172d1ac8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3168042,
            "upload_time": "2023-12-04T04:14:20",
            "upload_time_iso_8601": "2023-12-04T04:14:20.605304Z",
            "url": "https://files.pythonhosted.org/packages/ac/d2/796c36165b00a9107f84a321707f12323990532742321474a02ba368c039/pymssql-2.2.11-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac30e7b8a84c7ee7bf92bd51a2e8d478f51906fbdeb8864e1d16579bddc28a32",
                "md5": "8f034670da700ae3698c2ce8e62fe4f2",
                "sha256": "d7234b0f61dd9ccb2304171b5fd7ed9db133b4ea7c835c9942c9dc5bfc00c1cb"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "8f034670da700ae3698c2ce8e62fe4f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3571499,
            "upload_time": "2023-12-04T04:22:27",
            "upload_time_iso_8601": "2023-12-04T04:22:27.756062Z",
            "url": "https://files.pythonhosted.org/packages/ac/30/e7b8a84c7ee7bf92bd51a2e8d478f51906fbdeb8864e1d16579bddc28a32/pymssql-2.2.11-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3ae43d4fbba36cd6eb2fbadadae2a7010483ff0e13744cbdc76319d22b7b272",
                "md5": "8496c9c47e7433d90eb8533f2b2b7484",
                "sha256": "0dcd76a8cc757c7cfe2d235f232a20d74ac8cebf9feabcdcbda5ef33157d14b1"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8496c9c47e7433d90eb8533f2b2b7484",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 3923772,
            "upload_time": "2023-12-04T04:21:54",
            "upload_time_iso_8601": "2023-12-04T04:21:54.671016Z",
            "url": "https://files.pythonhosted.org/packages/a3/ae/43d4fbba36cd6eb2fbadadae2a7010483ff0e13744cbdc76319d22b7b272/pymssql-2.2.11-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "459641c4f4cb1e14c2db1940507743eca8857be3b231aad289953b250f5bedad",
                "md5": "8aa83facb36e74c35f29c3afae5b2917",
                "sha256": "84aff3235ad1289c4079c548cfcdf7eaaf2475b9f81557351deb42e8f45a9c2d"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8aa83facb36e74c35f29c3afae5b2917",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 4314770,
            "upload_time": "2023-12-04T04:21:44",
            "upload_time_iso_8601": "2023-12-04T04:21:44.008729Z",
            "url": "https://files.pythonhosted.org/packages/45/96/41c4f4cb1e14c2db1940507743eca8857be3b231aad289953b250f5bedad/pymssql-2.2.11-cp36-cp36m-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41d4f6ffcd183d46a81f7e3c2783130c26749b7eb23f0994a3ec94cbb41ed948",
                "md5": "050a0a27b653eaa80ef2588a02440df2",
                "sha256": "5b081aa7b02911e3f299f7d1f68ce8ca585a5119d44601bf4483da0aae8c2181"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "050a0a27b653eaa80ef2588a02440df2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2617408,
            "upload_time": "2023-12-04T04:00:05",
            "upload_time_iso_8601": "2023-12-04T04:00:05.323467Z",
            "url": "https://files.pythonhosted.org/packages/41/d4/f6ffcd183d46a81f7e3c2783130c26749b7eb23f0994a3ec94cbb41ed948/pymssql-2.2.11-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b281ee0221c7e4ffee95de46fed9602eb9c276e4b2164cdb0ce72c784b0a5d85",
                "md5": "67c1ed7b285f3c4b882bdfc3438238a3",
                "sha256": "d315f08c106c884d6b42f70c9518e765a5bc23f6d3a587346bc4e6f198768c7a"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "67c1ed7b285f3c4b882bdfc3438238a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2718743,
            "upload_time": "2023-12-04T03:59:57",
            "upload_time_iso_8601": "2023-12-04T03:59:57.725498Z",
            "url": "https://files.pythonhosted.org/packages/b2/81/ee0221c7e4ffee95de46fed9602eb9c276e4b2164cdb0ce72c784b0a5d85/pymssql-2.2.11-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7fb49544817f5edc04e808d4af76fed9c5a85d876ba834f800c4d993a6295c1",
                "md5": "047c0e2662007f61c2811bc1eded4bcd",
                "sha256": "c8b35b3d5e326729e5edb73d593103d2dbfb474bd36ee95b4e85e1f8271ba98a"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "047c0e2662007f61c2811bc1eded4bcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1300642,
            "upload_time": "2023-12-04T04:08:15",
            "upload_time_iso_8601": "2023-12-04T04:08:15.332241Z",
            "url": "https://files.pythonhosted.org/packages/d7/fb/49544817f5edc04e808d4af76fed9c5a85d876ba834f800c4d993a6295c1/pymssql-2.2.11-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04f43fb7de2c030267ca80f1018a8f864c00875d4dd2b71bdf6deb7c688d7e3a",
                "md5": "dfe3f2d4d22461805042119ca7cb20f9",
                "sha256": "139c5032e0a2765764987803f1266132fcc5da572848ccc4d29cebba794a4260"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dfe3f2d4d22461805042119ca7cb20f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1990660,
            "upload_time": "2023-12-04T04:07:45",
            "upload_time_iso_8601": "2023-12-04T04:07:45.414851Z",
            "url": "https://files.pythonhosted.org/packages/04/f4/3fb7de2c030267ca80f1018a8f864c00875d4dd2b71bdf6deb7c688d7e3a/pymssql-2.2.11-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85dc91cb9c16880b7db9d2dffcf664f634c17ed4b4109eba09b095d53ee8a314",
                "md5": "7aea38cfdcf45d163c83e9e28dc3ce91",
                "sha256": "7bac28aed1d625a002e0289e0c18d1808cecbdc12e2a1a3927dbbaff66e5fff3"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7aea38cfdcf45d163c83e9e28dc3ce91",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1931409,
            "upload_time": "2023-12-04T04:02:22",
            "upload_time_iso_8601": "2023-12-04T04:02:22.568792Z",
            "url": "https://files.pythonhosted.org/packages/85/dc/91cb9c16880b7db9d2dffcf664f634c17ed4b4109eba09b095d53ee8a314/pymssql-2.2.11-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0394763cc27957fd0b6d6efaefcfe4e7fd617bd3772696f93391e2123044358",
                "md5": "d1460bb6fcabba24f930a30532af2485",
                "sha256": "4eeaacc1dbbc678f4e80c6fd6fc279468021fdf2e486adc8631ec0de6b6c0e62"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "d1460bb6fcabba24f930a30532af2485",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3100686,
            "upload_time": "2023-12-04T04:14:43",
            "upload_time_iso_8601": "2023-12-04T04:14:43.504868Z",
            "url": "https://files.pythonhosted.org/packages/e0/39/4763cc27957fd0b6d6efaefcfe4e7fd617bd3772696f93391e2123044358/pymssql-2.2.11-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "991feff909b55620f54a88bb3946f7e42a21afe6dc2151810c98092737b7fe6c",
                "md5": "9d95332c979a0b89e201ce3d85de9d1f",
                "sha256": "428e32e53c554798bc2d0682a169fcb681df6b68544c4aedd1186018ea7e0447"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d95332c979a0b89e201ce3d85de9d1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3199301,
            "upload_time": "2023-12-04T04:14:22",
            "upload_time_iso_8601": "2023-12-04T04:14:22.870396Z",
            "url": "https://files.pythonhosted.org/packages/99/1f/eff909b55620f54a88bb3946f7e42a21afe6dc2151810c98092737b7fe6c/pymssql-2.2.11-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56450e49a4815c976c4a3a24c64f55b606ae6072407bf8e374ad7c48b710e9b2",
                "md5": "ffb8d22ffa2a80248e69fbacdc9ea8f5",
                "sha256": "658c85474ea01ca3a30de769df06f46681e882524b05c6994cd6fd985c485f27"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ffb8d22ffa2a80248e69fbacdc9ea8f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3588364,
            "upload_time": "2023-12-04T04:22:30",
            "upload_time_iso_8601": "2023-12-04T04:22:30.435711Z",
            "url": "https://files.pythonhosted.org/packages/56/45/0e49a4815c976c4a3a24c64f55b606ae6072407bf8e374ad7c48b710e9b2/pymssql-2.2.11-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a07b679d625517c1bc0ba78ea0098f2c85b78a227f21347e1729bf0a26621776",
                "md5": "a00628834722a03940b26bfab4260277",
                "sha256": "070181361ab94bdaeb14b591a35d853f327bc90c660b04047d474274fbb80357"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a00628834722a03940b26bfab4260277",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3941503,
            "upload_time": "2023-12-04T04:21:57",
            "upload_time_iso_8601": "2023-12-04T04:21:57.269638Z",
            "url": "https://files.pythonhosted.org/packages/a0/7b/679d625517c1bc0ba78ea0098f2c85b78a227f21347e1729bf0a26621776/pymssql-2.2.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8b7cec33d286bd57e939abb07ada26b5de3bf860613d9c32f89555830ca879e",
                "md5": "a0a94905079fc10986aeaf2a4f6a077b",
                "sha256": "492e49616b58b2d6caf4a2598cb344572870171a7b65ba1ac61a5e248b6a8e1c"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0a94905079fc10986aeaf2a4f6a077b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 4312166,
            "upload_time": "2023-12-04T04:21:46",
            "upload_time_iso_8601": "2023-12-04T04:21:46.443364Z",
            "url": "https://files.pythonhosted.org/packages/c8/b7/cec33d286bd57e939abb07ada26b5de3bf860613d9c32f89555830ca879e/pymssql-2.2.11-cp37-cp37m-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae679eeb376d7c4127125861e23683865d1ca52c03359195b61511fffc4649fe",
                "md5": "7407f4904fa213160ccda737181feeea",
                "sha256": "803122aec31fbd52f5d65ef3b30b3bd2dc7b2a9e3a8223d16078a25805155c45"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7407f4904fa213160ccda737181feeea",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2668495,
            "upload_time": "2023-12-04T04:00:07",
            "upload_time_iso_8601": "2023-12-04T04:00:07.794524Z",
            "url": "https://files.pythonhosted.org/packages/ae/67/9eeb376d7c4127125861e23683865d1ca52c03359195b61511fffc4649fe/pymssql-2.2.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "17cd40727b7b35355cb2ba179009eead101d1ea533bf4d3a2b62098451396bbe",
                "md5": "5b91317b1472a961e8e4bfb5bf2b6a9f",
                "sha256": "09075e129655ab1178d2d60efb9b3fbf5cdb6da2338ecdb3a92c53a4ad7efa0c"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5b91317b1472a961e8e4bfb5bf2b6a9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2782325,
            "upload_time": "2023-12-04T03:59:59",
            "upload_time_iso_8601": "2023-12-04T03:59:59.980780Z",
            "url": "https://files.pythonhosted.org/packages/17/cd/40727b7b35355cb2ba179009eead101d1ea533bf4d3a2b62098451396bbe/pymssql-2.2.11-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d56b237d6636f485c87fd1b597eae1d27d60000770f5d3034a57370f5727e7a1",
                "md5": "e903057691d5e72379555eda5872afea",
                "sha256": "b4a8377527702d746c490c2ce67d17f1c351d182b49b82fae6e67ae206bf9663"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "e903057691d5e72379555eda5872afea",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1289600,
            "upload_time": "2023-12-04T04:06:33",
            "upload_time_iso_8601": "2023-12-04T04:06:33.142944Z",
            "url": "https://files.pythonhosted.org/packages/d5/6b/237d6636f485c87fd1b597eae1d27d60000770f5d3034a57370f5727e7a1/pymssql-2.2.11-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06b8fccf14db79d01463c1a203cc4227e7aca155da55e12e132fa4a7338f8cdd",
                "md5": "bce245e0059c78e6d70acaf4f234e84d",
                "sha256": "167313d91606dc7a3c05b2ad60491a138b7408a8779599ab6430a48a67f133f0"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bce245e0059c78e6d70acaf4f234e84d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1974444,
            "upload_time": "2023-12-04T04:08:13",
            "upload_time_iso_8601": "2023-12-04T04:08:13.386060Z",
            "url": "https://files.pythonhosted.org/packages/06/b8/fccf14db79d01463c1a203cc4227e7aca155da55e12e132fa4a7338f8cdd/pymssql-2.2.11-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e726cf17cdabe7fd8bb12a499f6f73e8895d45d6b278309b4cd69a145290244",
                "md5": "24846d053ca259cd84ab99738b81abee",
                "sha256": "8d418f4dca245421242ed9df59d3bcda0cd081650df6deb1bef7f157b6a6f9dd"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "24846d053ca259cd84ab99738b81abee",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1941228,
            "upload_time": "2023-12-04T04:02:03",
            "upload_time_iso_8601": "2023-12-04T04:02:03.530764Z",
            "url": "https://files.pythonhosted.org/packages/4e/72/6cf17cdabe7fd8bb12a499f6f73e8895d45d6b278309b4cd69a145290244/pymssql-2.2.11-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59276bc445d159a43b87ff03b8ac2b448717e4df0a7ea9512cd7d3471c66dabd",
                "md5": "88393bc9b141b3938ec62919de236b02",
                "sha256": "f0c44169df8d23c7ce172bd90ef5deb44caf19f15990e4db266e3193071988a4"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "88393bc9b141b3938ec62919de236b02",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3405085,
            "upload_time": "2023-12-04T04:14:45",
            "upload_time_iso_8601": "2023-12-04T04:14:45.538424Z",
            "url": "https://files.pythonhosted.org/packages/59/27/6bc445d159a43b87ff03b8ac2b448717e4df0a7ea9512cd7d3471c66dabd/pymssql-2.2.11-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1f14da16a30c799d6bb2735b63d3b01a7eb4cb95e9a70c23bf3812a3baa9a3e",
                "md5": "8a6b785356c791816030d0aa80082111",
                "sha256": "b78032e45ea33c55d430b93e55370b900479ea324fae5d5d32486cc0fdc0fedd"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a6b785356c791816030d0aa80082111",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3527047,
            "upload_time": "2023-12-04T04:14:25",
            "upload_time_iso_8601": "2023-12-04T04:14:25.111597Z",
            "url": "https://files.pythonhosted.org/packages/f1/f1/4da16a30c799d6bb2735b63d3b01a7eb4cb95e9a70c23bf3812a3baa9a3e/pymssql-2.2.11-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c505cef55d9b949046e5a436aa27243c271e3bbbaea05cd44f177b022df0f56",
                "md5": "ad817eab9bfc18b469f4f97f853f4e23",
                "sha256": "287c8f79a7eca0c6787405797bac0f7c502d9be151f3f823aae12042235f8426"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ad817eab9bfc18b469f4f97f853f4e23",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3796917,
            "upload_time": "2023-12-04T04:22:32",
            "upload_time_iso_8601": "2023-12-04T04:22:32.977464Z",
            "url": "https://files.pythonhosted.org/packages/7c/50/5cef55d9b949046e5a436aa27243c271e3bbbaea05cd44f177b022df0f56/pymssql-2.2.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af24ff7dd92523096b88bf54be812124e6ce1017b0777b1b77e91059fda9ac73",
                "md5": "dbc78dd6e42c5c45dbc1a55bc33f7009",
                "sha256": "85ea4ea296afcae34bc61e4e0ef2f503270fd4bb097b308a07a9194f1f063aa1"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dbc78dd6e42c5c45dbc1a55bc33f7009",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4146197,
            "upload_time": "2023-12-04T04:21:59",
            "upload_time_iso_8601": "2023-12-04T04:21:59.705703Z",
            "url": "https://files.pythonhosted.org/packages/af/24/ff7dd92523096b88bf54be812124e6ce1017b0777b1b77e91059fda9ac73/pymssql-2.2.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "423bee340d4f4249b5ac9574b4f9c62d4e19f88704ee087fdc97b884ad55227c",
                "md5": "0a2764f7608f426cbf08c65277af43b8",
                "sha256": "a114633fa02b7eb5bc63520bf07954106c0ed0ce032449c871abb8b8c435a872"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a2764f7608f426cbf08c65277af43b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 4498731,
            "upload_time": "2023-12-04T04:21:50",
            "upload_time_iso_8601": "2023-12-04T04:21:50.784584Z",
            "url": "https://files.pythonhosted.org/packages/42/3b/ee340d4f4249b5ac9574b4f9c62d4e19f88704ee087fdc97b884ad55227c/pymssql-2.2.11-cp38-cp38-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f25eb914c3a5e9b943db2f272e550915b9d87d20dcd9bd0158cfe4380e8e005",
                "md5": "84764dff72a40863a4e6f97755247585",
                "sha256": "7332db36a537cbc16640a0c3473a2e419aa5bc1f9953cada3212e7b2587de658"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "84764dff72a40863a4e6f97755247585",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2754877,
            "upload_time": "2023-12-04T04:00:10",
            "upload_time_iso_8601": "2023-12-04T04:00:10.820976Z",
            "url": "https://files.pythonhosted.org/packages/0f/25/eb914c3a5e9b943db2f272e550915b9d87d20dcd9bd0158cfe4380e8e005/pymssql-2.2.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f481acf7ad64aa1826684cf5651f3aa8d9c84839aaa7bd6f2a1ef0a58dcdfaa",
                "md5": "09d1c92aa13221f4a77fdc315804aadf",
                "sha256": "cd7292d872948c1f67c8cc12158f2c8ed9873d54368139ce1f67b2262ac34029"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09d1c92aa13221f4a77fdc315804aadf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2887126,
            "upload_time": "2023-12-04T04:00:02",
            "upload_time_iso_8601": "2023-12-04T04:00:02.126612Z",
            "url": "https://files.pythonhosted.org/packages/8f/48/1acf7ad64aa1826684cf5651f3aa8d9c84839aaa7bd6f2a1ef0a58dcdfaa/pymssql-2.2.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d390576ec316776eab06d8030cf2edae8ecd951fc3d8006b63a457c56fd2b29",
                "md5": "06a96917afb08202602e58f3a4a816de",
                "sha256": "fbca115e11685b5891755cc22b3db4348071b8d100a41e1ce93526d9c3dbf2d5"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "06a96917afb08202602e58f3a4a816de",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1297662,
            "upload_time": "2023-12-04T04:10:10",
            "upload_time_iso_8601": "2023-12-04T04:10:10.366807Z",
            "url": "https://files.pythonhosted.org/packages/3d/39/0576ec316776eab06d8030cf2edae8ecd951fc3d8006b63a457c56fd2b29/pymssql-2.2.11-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a28d25ebd3a38173bc7319b10a780e6ae2143be620d3ff0c26136f309fc3fa01",
                "md5": "e04007ea4e21e23370704f787a382db9",
                "sha256": "452b88a4ceca7efb934b5babb365851a3c52e723642092ebc92777397c2cacdb"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e04007ea4e21e23370704f787a382db9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1982305,
            "upload_time": "2023-12-04T04:10:00",
            "upload_time_iso_8601": "2023-12-04T04:10:00.180628Z",
            "url": "https://files.pythonhosted.org/packages/a2/8d/25ebd3a38173bc7319b10a780e6ae2143be620d3ff0c26136f309fc3fa01/pymssql-2.2.11-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ae02962c86431164351a3fc3374a04855a0137e612f8e2a1894dffb22863a5c",
                "md5": "07925283b1975a924d1ca68992a1a945",
                "sha256": "001242cedc73587cbb10aec4069de50febbff3c4c50f9908a215476496b3beab"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07925283b1975a924d1ca68992a1a945",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1942769,
            "upload_time": "2023-12-04T04:05:08",
            "upload_time_iso_8601": "2023-12-04T04:05:08.377924Z",
            "url": "https://files.pythonhosted.org/packages/3a/e0/2962c86431164351a3fc3374a04855a0137e612f8e2a1894dffb22863a5c/pymssql-2.2.11-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73443c8f1b778c924cc7a205e2c3b8ec7a7d56bfdbfb0168b35349691d4747fc",
                "md5": "680c23e431b89ce062edba3ed3ca54d7",
                "sha256": "da492482b923b9cc9ad37f0f5592c776279299db2a89c0b7fc931aaefec652d4"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "680c23e431b89ce062edba3ed3ca54d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3257475,
            "upload_time": "2023-12-04T04:14:48",
            "upload_time_iso_8601": "2023-12-04T04:14:48.015900Z",
            "url": "https://files.pythonhosted.org/packages/73/44/3c8f1b778c924cc7a205e2c3b8ec7a7d56bfdbfb0168b35349691d4747fc/pymssql-2.2.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f61b6ccc0a372ee59144728bb68379d0c74ac9f2ac9771abc2aedeb8feb3ccd",
                "md5": "8e90fabf4c237d2aa073d5c1a46e7f45",
                "sha256": "139a833e6e72a624e4f2cde803a34a616d5661dd9a5b2ae0402d9d8a597b2f1f"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e90fabf4c237d2aa073d5c1a46e7f45",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3354311,
            "upload_time": "2023-12-04T04:14:27",
            "upload_time_iso_8601": "2023-12-04T04:14:27.390400Z",
            "url": "https://files.pythonhosted.org/packages/3f/61/b6ccc0a372ee59144728bb68379d0c74ac9f2ac9771abc2aedeb8feb3ccd/pymssql-2.2.11-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c68a84153ce4c8b88c81582403332993f691c964c84c09b26b6157cadb249abd",
                "md5": "a00308c00a42ba1959189be72378619c",
                "sha256": "a5308507c2c4e94ede7e5b164870c1ba2be55abab6daf795b5529e2da4e838b6"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a00308c00a42ba1959189be72378619c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3744228,
            "upload_time": "2023-12-04T04:22:34",
            "upload_time_iso_8601": "2023-12-04T04:22:34.969974Z",
            "url": "https://files.pythonhosted.org/packages/c6/8a/84153ce4c8b88c81582403332993f691c964c84c09b26b6157cadb249abd/pymssql-2.2.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a2264a9591c2376c3dae7b36bc969b9f044058ab8c7503a448986745e513d8c",
                "md5": "bf548dfd3fa61579347caa6457b8f181",
                "sha256": "bdca43c42d5f370358535b2107140ed550d74f9ef0fc95d2d7fa8c4e40ee48c2"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf548dfd3fa61579347caa6457b8f181",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4089905,
            "upload_time": "2023-12-04T04:22:02",
            "upload_time_iso_8601": "2023-12-04T04:22:02.354283Z",
            "url": "https://files.pythonhosted.org/packages/6a/22/64a9591c2376c3dae7b36bc969b9f044058ab8c7503a448986745e513d8c/pymssql-2.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec5268f689c4eaa38e7dd244225c57c9bf95b33189176795e990e7e1c49821f8",
                "md5": "6fdc9ae8ef1474ac1ebc7579a84c5726",
                "sha256": "fe0cc975aac87b364fdb55cb89642435c3e859dcd99d7260f48af94111ba2673"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6fdc9ae8ef1474ac1ebc7579a84c5726",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4432687,
            "upload_time": "2023-12-04T04:21:53",
            "upload_time_iso_8601": "2023-12-04T04:21:53.698287Z",
            "url": "https://files.pythonhosted.org/packages/ec/52/68f689c4eaa38e7dd244225c57c9bf95b33189176795e990e7e1c49821f8/pymssql-2.2.11-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "690885496c2719f028309231a6b754e9c9a76b247337977e96644f226f5c4fc6",
                "md5": "628fc4d08ca203ec1722d84b49a484e9",
                "sha256": "4551f50c8a3b6ffbd71f794ee1c0c0134134c5d6414302c2fa28b67fe4470d07"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "628fc4d08ca203ec1722d84b49a484e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2655276,
            "upload_time": "2023-12-04T04:00:13",
            "upload_time_iso_8601": "2023-12-04T04:00:13.433301Z",
            "url": "https://files.pythonhosted.org/packages/69/08/85496c2719f028309231a6b754e9c9a76b247337977e96644f226f5c4fc6/pymssql-2.2.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40720ec894f465b7234cedfff55613529296ea97e97d4a37d4a9ef99673cab7e",
                "md5": "c1cd77d2f8fe83f20fbb50210010a729",
                "sha256": "ae9818df40588d5a49e7476f05e31cc83dea630d607178d66762ca8cf32e9f77"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1cd77d2f8fe83f20fbb50210010a729",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2755397,
            "upload_time": "2023-12-04T04:00:04",
            "upload_time_iso_8601": "2023-12-04T04:00:04.451187Z",
            "url": "https://files.pythonhosted.org/packages/40/72/0ec894f465b7234cedfff55613529296ea97e97d4a37d4a9ef99673cab7e/pymssql-2.2.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76075aeb2926ea8b836b36affb92e7c45ca2bd1d78b2aefd7f0729088fb7819c",
                "md5": "16b8c46d998c3f93c102ba1872ad41ac",
                "sha256": "15257c7bd89c0283f70d6eaafd9b872201818572b8ba1e8576408ae23ef50c7c"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "16b8c46d998c3f93c102ba1872ad41ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1294748,
            "upload_time": "2023-12-04T04:12:40",
            "upload_time_iso_8601": "2023-12-04T04:12:40.549334Z",
            "url": "https://files.pythonhosted.org/packages/76/07/5aeb2926ea8b836b36affb92e7c45ca2bd1d78b2aefd7f0729088fb7819c/pymssql-2.2.11-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26c0ed32d1b00c50b74c44ecf97e0fa9220fa15b0bf738bdd0b51cc8022537ce",
                "md5": "edd4d6022b7def904fe8e8d2743a6c88",
                "sha256": "65bb674c0ba35379bf93d1b2cf06fdc5e7ec56e1d0e9de525bdcf977190b2865"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "edd4d6022b7def904fe8e8d2743a6c88",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1981327,
            "upload_time": "2023-12-04T04:10:34",
            "upload_time_iso_8601": "2023-12-04T04:10:34.933287Z",
            "url": "https://files.pythonhosted.org/packages/26/c0/ed32d1b00c50b74c44ecf97e0fa9220fa15b0bf738bdd0b51cc8022537ce/pymssql-2.2.11-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06b119a4463840c541413e58d13c1116b33669412c61528d53e02daf5e5e082b",
                "md5": "c5cdd15a60b596c701b1c51b7a193429",
                "sha256": "15815bf1ff9edb475ec4ef567f23e23c4e828ce119ff5bf98a072b66b8d0ac1b"
            },
            "downloads": -1,
            "filename": "pymssql-2.2.11.tar.gz",
            "has_sig": false,
            "md5_digest": "c5cdd15a60b596c701b1c51b7a193429",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 172411,
            "upload_time": "2023-12-04T04:00:06",
            "upload_time_iso_8601": "2023-12-04T04:00:06.312755Z",
            "url": "https://files.pythonhosted.org/packages/06/b1/19a4463840c541413e58d13c1116b33669412c61528d53e02daf5e5e082b/pymssql-2.2.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-04 04:00:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pymssql",
    "github_project": "pymssql",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "appveyor": true,
    "lcname": "pymssql"
}
        
Elapsed time: 0.15376s