pymssql


Namepymssql JSON
Version 2.3.2 PyPI version JSON
download
home_pageNone
SummaryDB-API interface to Microsoft SQL Server for Python. (new Cython-based version)
upload_time2024-11-21 04:06:42
maintainerMikhail Terekhov
docs_urlNone
authorDamien Churchill
requires_pythonNone
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.3.2 - 2024-11-20 - Mikhail Terekhov
=============================================

General
-------

- Update FreeTDS to 1.4.23.
- Build wheels for Python-3.13 on Windows and MacOS.

Internals
---------

- Fix build wheels for Python-3.13 on Windows.
- Drop build in actions for Python 3.6, 3.7 and 3.8.
- Add build in actions for Python-3.13.
- Workaround setuptools-74.0 changes.


Version 2.3.1 - 2024-08-25 - Mikhail Terekhov
=============================================

General
-------

- Fix SP returning NULL (closes #441).
- Update FreeTDS to 1.4.22 (closes #895).
- Require Cython>3.0.10.
- Add python 3.13 Linux wheels (closes #900).
- Drop manylinux2010 wheels.
- Drop 3.7 and 3.8 wheels on MacOS.
- Drop 3.6 wheels on Linux.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pymssql",
    "maintainer": "Mikhail Terekhov",
    "docs_url": null,
    "requires_python": null,
    "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/81/c8/2ce5b171581c2e4d5d9726aaa805eb01febc7ed70a3bf686e1e0f5501b07/pymssql-2.3.2.tar.gz",
    "platform": "any",
    "description": "\r\npymssql - DB-API interface to Microsoft SQL Server\r\n==================================================\r\n\r\n.. image:: https://github.com/pymssql/pymssql/workflows/Linux/badge.svg\r\n        :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Linux%22\r\n\r\n.. image:: https://github.com/pymssql/pymssql/workflows/macOS/badge.svg\r\n        :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22macOS%22\r\n\r\n.. image:: https://github.com/pymssql/pymssql/workflows/Windows/badge.svg\r\n        :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Windows%22\r\n\r\n.. image:: http://img.shields.io/pypi/dm/pymssql.svg\r\n        :target: https://pypi.python.org/pypi/pymssql/\r\n\r\n.. image:: http://img.shields.io/pypi/v/pymssql.svg\r\n        :target: https://pypi.python.org/pypi/pymssql/\r\n\r\nA simple database interface for `Python`_ that builds on top of `FreeTDS`_ to\r\nprovide a Python DB-API (`PEP-249`_) interface to `Microsoft SQL Server`_.\r\n\r\n.. _Microsoft SQL Server: http://www.microsoft.com/sqlserver/\r\n.. _Python: http://www.python.org/\r\n.. _PEP-249: http://www.python.org/dev/peps/pep-0249/\r\n.. _FreeTDS: http://www.freetds.org/\r\n\r\nDetailed information on pymssql is available on the website:\r\n\r\n`pymssql.readthedocs.io <https://pymssql.readthedocs.io/en/stable/>`_\r\n\r\nNew development is happening on GitHub at:\r\n\r\n`github.com/pymssql/pymssql <https://github.com/pymssql/pymssql>`_\r\n\r\nThere is a Google Group for discussion at:\r\n\r\n`groups.google.com <https://groups.google.com/forum/?fromgroups#!forum/pymssql>`_\r\n\r\n\r\nGetting started\r\n===============\r\n\r\npymssql wheels are available from PyPi. To install it run:\r\n\r\n.. code-block:: bash\r\n\r\n    pip install -U pip\r\n    pip install pymssql\r\n\r\nMost of the times this should be all what's needed.\r\nThe official pymssql wheels bundle a static copy of FreeTDS\r\nand have SSL support so they can be used to connect to Azure.\r\n\r\n.. note::\r\n   On some Linux distributions `pip` version is too old to support all\r\n   the flavors of manylinux wheels, so upgrading `pip` is necessary.\r\n   An example of such distributions would be Ubuntu 18.04 or\r\n   Python3.6 module in RHEL8 and CentOS8.\r\n\r\n\r\nBasic example\r\n=============\r\n\r\n.. code-block:: python\r\n\r\n    conn = pymssql.connect(server, user, password, \"tempdb\")\r\n    cursor = conn.cursor(as_dict=True)\r\n\r\n    cursor.execute('SELECT * FROM persons WHERE salesrep=%s', 'John Doe')\r\n    for row in cursor:\r\n        print(\"ID=%d, Name=%s\" % (row['id'], row['name']))\r\n\r\n    conn.close()\r\n\r\n\r\nRecent Changes\r\n==============\r\n\r\nVersion 2.3.2 - 2024-11-20 - Mikhail Terekhov\r\n=============================================\r\n\r\nGeneral\r\n-------\r\n\r\n- Update FreeTDS to 1.4.23.\r\n- Build wheels for Python-3.13 on Windows and MacOS.\r\n\r\nInternals\r\n---------\r\n\r\n- Fix build wheels for Python-3.13 on Windows.\r\n- Drop build in actions for Python 3.6, 3.7 and 3.8.\r\n- Add build in actions for Python-3.13.\r\n- Workaround setuptools-74.0 changes.\r\n\r\n\r\nVersion 2.3.1 - 2024-08-25 - Mikhail Terekhov\r\n=============================================\r\n\r\nGeneral\r\n-------\r\n\r\n- Fix SP returning NULL (closes #441).\r\n- Update FreeTDS to 1.4.22 (closes #895).\r\n- Require Cython>3.0.10.\r\n- Add python 3.13 Linux wheels (closes #900).\r\n- Drop manylinux2010 wheels.\r\n- Drop 3.7 and 3.8 wheels on MacOS.\r\n- Drop 3.6 wheels on Linux.\r\n",
    "bugtrack_url": null,
    "license": "LGPL",
    "summary": "DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)",
    "version": "2.3.2",
    "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": "90a4dbabcdea2f07e580c30ad0e159e22227bf6c8e0ba5800e8bc29585d77f8e",
                "md5": "86cd70bb1eafd88a0a84cf1ee50c44ee",
                "sha256": "73fac766b448613d7ae26e6b304b2cb8a7ffebccaa373633bad3b3cbcc829935"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp310-cp310-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86cd70bb1eafd88a0a84cf1ee50c44ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2773345,
            "upload_time": "2024-11-21T04:07:54",
            "upload_time_iso_8601": "2024-11-21T04:07:54.541076Z",
            "url": "https://files.pythonhosted.org/packages/90/a4/dbabcdea2f07e580c30ad0e159e22227bf6c8e0ba5800e8bc29585d77f8e/pymssql-2.3.2-cp310-cp310-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e8fc58225d71a4c5929493c8af8ca004f2c539d456920ef0a20a70459891f8f",
                "md5": "d8a806dee3b39f6e9fcab23f133d33e4",
                "sha256": "c24ba6aedb9b5540b56f3e74bff92b687c6e90c00650823385729c7e55923cf5"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d8a806dee3b39f6e9fcab23f133d33e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4633948,
            "upload_time": "2024-11-21T04:24:06",
            "upload_time_iso_8601": "2024-11-21T04:24:06.658501Z",
            "url": "https://files.pythonhosted.org/packages/2e/8f/c58225d71a4c5929493c8af8ca004f2c539d456920ef0a20a70459891f8f/pymssql-2.3.2-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60f1e50ee90dc03b1d57356ddefef037b0f5c1404c63ae1af2f2583184cfdd79",
                "md5": "405583f2e88118b2ec21054a8dabdc92",
                "sha256": "26bdb7abd5f107b6be422635f03e2cecaa52a5f4c394a205014586abbff9e72a"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "405583f2e88118b2ec21054a8dabdc92",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3984523,
            "upload_time": "2024-11-21T04:30:55",
            "upload_time_iso_8601": "2024-11-21T04:30:55.866830Z",
            "url": "https://files.pythonhosted.org/packages/60/f1/e50ee90dc03b1d57356ddefef037b0f5c1404c63ae1af2f2583184cfdd79/pymssql-2.3.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "481302d8d68637b9e35176c81a59758eee2d951713e742ffe426fd7b490d6ef2",
                "md5": "217a319229120b9cbab51608eef8d9a6",
                "sha256": "72b6599963b6e066998c4b27b7bf207684c243b12b1e5dcc180b2af22802ae6c"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "217a319229120b9cbab51608eef8d9a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4002836,
            "upload_time": "2024-11-21T04:30:08",
            "upload_time_iso_8601": "2024-11-21T04:30:08.782847Z",
            "url": "https://files.pythonhosted.org/packages/48/13/02d8d68637b9e35176c81a59758eee2d951713e742ffe426fd7b490d6ef2/pymssql-2.3.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95b171e4f987d5facf1e6309583763c3769f454f061889326156d5350bfede09",
                "md5": "cf09a66d15434c2247edde0469fbd1b8",
                "sha256": "82ed3dd560d3fb222d26ce3a7373f46dc3ad1d50b6e6417ef7399e87fa9aefe1"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf09a66d15434c2247edde0469fbd1b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 4679770,
            "upload_time": "2024-11-21T04:30:12",
            "upload_time_iso_8601": "2024-11-21T04:30:12.776103Z",
            "url": "https://files.pythonhosted.org/packages/95/b1/71e4f987d5facf1e6309583763c3769f454f061889326156d5350bfede09/pymssql-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc5c0a7fa7e44aebbad2c2769091afe85cf1ebb65e811b970428103d659eb4b9",
                "md5": "d73bdf9f4d957c317ad76fe39a3cc106",
                "sha256": "cbe9058b6520be74463476ff2cdb17bbab5ff60b60b3ed7bd8bd2d086bdfd9bd"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "d73bdf9f4d957c317ad76fe39a3cc106",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1320206,
            "upload_time": "2024-11-21T04:05:30",
            "upload_time_iso_8601": "2024-11-21T04:05:30.489393Z",
            "url": "https://files.pythonhosted.org/packages/cc/5c/0a7fa7e44aebbad2c2769091afe85cf1ebb65e811b970428103d659eb4b9/pymssql-2.3.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e23d0e5a83e081f1f2f19b6a0a65a98d8c77b794d80215938f195c5836c06238",
                "md5": "c533485c1bc9af6f9ee5a6249feaf4a7",
                "sha256": "fdd774b26407babd0205ef85a098f90553e6b3da77a22322a1e7d2cb51f742c0"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c533485c1bc9af6f9ee5a6249feaf4a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2005042,
            "upload_time": "2024-11-21T04:04:54",
            "upload_time_iso_8601": "2024-11-21T04:04:54.554500Z",
            "url": "https://files.pythonhosted.org/packages/e2/3d/0e5a83e081f1f2f19b6a0a65a98d8c77b794d80215938f195c5836c06238/pymssql-2.3.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "310da919acf75a26a5c5dabceb11b4f7446d7860a761ef68bdce3cd1055c9d25",
                "md5": "8e73f0c7f7824b8952b77ce98b6a0f85",
                "sha256": "2a44a0898dacba4e25cac8778d0ed112e297883fe862204e447081888da78dc4"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp311-cp311-macosx_13_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "8e73f0c7f7824b8952b77ce98b6a0f85",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3070057,
            "upload_time": "2024-11-21T04:09:23",
            "upload_time_iso_8601": "2024-11-21T04:09:23.477533Z",
            "url": "https://files.pythonhosted.org/packages/31/0d/a919acf75a26a5c5dabceb11b4f7446d7860a761ef68bdce3cd1055c9d25/pymssql-2.3.2-cp311-cp311-macosx_13_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fcbd8aadb2628917b2fc386446f871dc32124c5029c9e48f6dea4d887dba70c",
                "md5": "926c5fe05b461b71627a68382b07404c",
                "sha256": "1c99dba4bf5b1ce10657e9e2885f18ba9179190251b63d1498e7d6d72e64f1ce"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "926c5fe05b461b71627a68382b07404c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4788674,
            "upload_time": "2024-11-21T04:24:08",
            "upload_time_iso_8601": "2024-11-21T04:24:08.800999Z",
            "url": "https://files.pythonhosted.org/packages/9f/cb/d8aadb2628917b2fc386446f871dc32124c5029c9e48f6dea4d887dba70c/pymssql-2.3.2-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fa0d80b9ad5807f5a14e249f011a6d24f16fa6ef96bd6e643d9b677d74d90a0",
                "md5": "403fcd12155f52358f957af74d54a511",
                "sha256": "9e3d6fada7fbe7a5f5fafc420673f777bab3f399c78fa44e29de6a8cbc36e515"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "403fcd12155f52358f957af74d54a511",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4123868,
            "upload_time": "2024-11-21T04:30:58",
            "upload_time_iso_8601": "2024-11-21T04:30:58.452913Z",
            "url": "https://files.pythonhosted.org/packages/2f/a0/d80b9ad5807f5a14e249f011a6d24f16fa6ef96bd6e643d9b677d74d90a0/pymssql-2.3.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b9875247858d1a7d03634c2082679c1a4fe40775e226fb3fc70c855851fe9938",
                "md5": "dcde34f239f457997b54afa4ad6ab5e2",
                "sha256": "5904d78e61668ec89761d3ae01efd4b42b31d820f612929f449e93cd23ba3c54"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dcde34f239f457997b54afa4ad6ab5e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4157236,
            "upload_time": "2024-11-21T04:30:10",
            "upload_time_iso_8601": "2024-11-21T04:30:10.899458Z",
            "url": "https://files.pythonhosted.org/packages/b9/87/5247858d1a7d03634c2082679c1a4fe40775e226fb3fc70c855851fe9938/pymssql-2.3.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "369b1ced1ab60e5b9e025aab65bede8f05595e1c763db1decd20c093f8267176",
                "md5": "62333db643da4a33b2ce5276600a0bf9",
                "sha256": "0768d90f96ae3267d7561d3bcfe94dd671d107489e870388b12570c3debbc552"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62333db643da4a33b2ce5276600a0bf9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 4843590,
            "upload_time": "2024-11-21T04:30:15",
            "upload_time_iso_8601": "2024-11-21T04:30:15.718558Z",
            "url": "https://files.pythonhosted.org/packages/36/9b/1ced1ab60e5b9e025aab65bede8f05595e1c763db1decd20c093f8267176/pymssql-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a49e94af63f23becb5b411eba30d2090f17b8455c91166209e3c672d3199e859",
                "md5": "a34303c126136acd048506c0b24ed02e",
                "sha256": "97fbd8491ad3ece0adcb321acec6db48b8fe37bc74af4c91bb657d4d9347d634"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "a34303c126136acd048506c0b24ed02e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1319041,
            "upload_time": "2024-11-21T04:04:54",
            "upload_time_iso_8601": "2024-11-21T04:04:54.749766Z",
            "url": "https://files.pythonhosted.org/packages/a4/9e/94af63f23becb5b411eba30d2090f17b8455c91166209e3c672d3199e859/pymssql-2.3.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65f89336690fb988f7a848aaafd0b1df9aff9e16b7c24be1da7fc27e64e0b30c",
                "md5": "d2ab8c8be0191358f40cd6c001e60d3e",
                "sha256": "79cdc3ed1da3129ba56232127db86279728c4328595e2532ed4d0da6379a5c72"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d2ab8c8be0191358f40cd6c001e60d3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2005840,
            "upload_time": "2024-11-21T04:05:25",
            "upload_time_iso_8601": "2024-11-21T04:05:25.577448Z",
            "url": "https://files.pythonhosted.org/packages/65/f8/9336690fb988f7a848aaafd0b1df9aff9e16b7c24be1da7fc27e64e0b30c/pymssql-2.3.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03b4d9b30b565cf8af6d3f0e90802694860ff2e1c269d444be6ca24c4cfd9761",
                "md5": "4959d1bbae131280189db43e9abdc3e7",
                "sha256": "235c230e56d8c8c5f289e665c538f31d967fec302d05ad269dcd64fa9d6eb3b7"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp312-cp312-macosx_13_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "4959d1bbae131280189db43e9abdc3e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3042870,
            "upload_time": "2024-11-21T04:08:57",
            "upload_time_iso_8601": "2024-11-21T04:08:57.193544Z",
            "url": "https://files.pythonhosted.org/packages/03/b4/d9b30b565cf8af6d3f0e90802694860ff2e1c269d444be6ca24c4cfd9761/pymssql-2.3.2-cp312-cp312-macosx_13_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3053626d5f203d3d05e6af5cfd1c611def622abb815ba7315c766c4faefd569d",
                "md5": "de5bf04589ac176b8914a76e8d5bcc87",
                "sha256": "f2b1da4e68d618c7972e583ae19f386ae620258acb61564e8067c203f27cd769"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de5bf04589ac176b8914a76e8d5bcc87",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4745384,
            "upload_time": "2024-11-21T04:24:11",
            "upload_time_iso_8601": "2024-11-21T04:24:11.251709Z",
            "url": "https://files.pythonhosted.org/packages/30/53/626d5f203d3d05e6af5cfd1c611def622abb815ba7315c766c4faefd569d/pymssql-2.3.2-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67ecff4d831bd250b2b5491c7f85abf04ce2c5613cd955e1855957b98fd72b89",
                "md5": "3e29211ced4bad4f69422788eef8c659",
                "sha256": "2f4093b95f1f3a1232687fc92f652aaf675eb423db8549c16d146b91ac2f0eba"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3e29211ced4bad4f69422788eef8c659",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4045126,
            "upload_time": "2024-11-21T04:31:00",
            "upload_time_iso_8601": "2024-11-21T04:31:00.946527Z",
            "url": "https://files.pythonhosted.org/packages/67/ec/ff4d831bd250b2b5491c7f85abf04ce2c5613cd955e1855957b98fd72b89/pymssql-2.3.2-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85ed79ec7edbd5a99e445d85a46b48ea71ae9a920c9e92b743318446f4d4dffb",
                "md5": "cb31445eaf2874a379439efe167669df",
                "sha256": "cc13c2e0f1b8efc3a46941de9db768fa59937b5a54081ec0cb0ff0da17d1fff3"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb31445eaf2874a379439efe167669df",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4107959,
            "upload_time": "2024-11-21T04:30:13",
            "upload_time_iso_8601": "2024-11-21T04:30:13.037437Z",
            "url": "https://files.pythonhosted.org/packages/85/ed/79ec7edbd5a99e445d85a46b48ea71ae9a920c9e92b743318446f4d4dffb/pymssql-2.3.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9beb376e2ae6ba7c7632137b9f46318573d0a988fc32184aea68eee64dc78d7a",
                "md5": "f852713f12cd59d48724d4e6a05420c0",
                "sha256": "41d09e1b2534229b288c37b88c1de3d964317af2c7eec58bfb97e01d679eba27"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f852713f12cd59d48724d4e6a05420c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 4787575,
            "upload_time": "2024-11-21T04:30:18",
            "upload_time_iso_8601": "2024-11-21T04:30:18.608656Z",
            "url": "https://files.pythonhosted.org/packages/9b/eb/376e2ae6ba7c7632137b9f46318573d0a988fc32184aea68eee64dc78d7a/pymssql-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e5bfa906b132431009174bb966c7b7ce0da3dbd9343dc6e1ed6c448b22a4291",
                "md5": "7fa3caba9a2cb57d1198d45f3c172862",
                "sha256": "b16d5880f7028442d6c49c94801ce9bff3af8af0fbda7c6039febb936714aed5"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "7fa3caba9a2cb57d1198d45f3c172862",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1306859,
            "upload_time": "2024-11-21T04:36:27",
            "upload_time_iso_8601": "2024-11-21T04:36:27.047934Z",
            "url": "https://files.pythonhosted.org/packages/6e/5b/fa906b132431009174bb966c7b7ce0da3dbd9343dc6e1ed6c448b22a4291/pymssql-2.3.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "112ebe51090e0c1c99b9259d06d2e3533c0e3681fd95203fc50040e6c18685a5",
                "md5": "1d8ee233ccce8db1dc1d3b8c7f2b0a6f",
                "sha256": "a3f9e7eb813dfeab6d01bf6474049bb76b0521235159d3e969ec82df384eac49"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1d8ee233ccce8db1dc1d3b8c7f2b0a6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1990007,
            "upload_time": "2024-11-21T04:05:37",
            "upload_time_iso_8601": "2024-11-21T04:05:37.138605Z",
            "url": "https://files.pythonhosted.org/packages/11/2e/be51090e0c1c99b9259d06d2e3533c0e3681fd95203fc50040e6c18685a5/pymssql-2.3.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e026f90c0251c0452fb6a80c44a7d7eb9b1e63e1657098659364ec81cb9cbb87",
                "md5": "ce6dd79d3755fb3a5a19e6d2bc493c1a",
                "sha256": "f282e701dca155b3e7f1644d7e3b60c201ca5f3be8045bce34042d3c737d63ee"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp313-cp313-macosx_13_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "ce6dd79d3755fb3a5a19e6d2bc493c1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 3031958,
            "upload_time": "2024-11-21T04:09:06",
            "upload_time_iso_8601": "2024-11-21T04:09:06.830515Z",
            "url": "https://files.pythonhosted.org/packages/e0/26/f90c0251c0452fb6a80c44a7d7eb9b1e63e1657098659364ec81cb9cbb87/pymssql-2.3.2-cp313-cp313-macosx_13_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca5fec35ac1efa66172c626a0e86cc1520d2964b415fae6f2a7a818ef1d98fcc",
                "md5": "911ea6065adef31754c4be1d92beb1f8",
                "sha256": "b0c2b11aca16617cacaf385fb94134e73ba0216a924f9b85778cc7e3d3713361"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp313-cp313-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "911ea6065adef31754c4be1d92beb1f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4743947,
            "upload_time": "2024-11-21T04:24:12",
            "upload_time_iso_8601": "2024-11-21T04:24:12.993630Z",
            "url": "https://files.pythonhosted.org/packages/ca/5f/ec35ac1efa66172c626a0e86cc1520d2964b415fae6f2a7a818ef1d98fcc/pymssql-2.3.2-cp313-cp313-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cfa9e1d88e2f025ce8d389f861bd962c0558ee23bc1b6d18981a967b6b51e6d",
                "md5": "2404fe1b3dc193bf58c4798111723715",
                "sha256": "2568944db3888996e161b40ad06c1b9e0fbb6cfcb38279a3abb98ece7a8e1c4a"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp313-cp313-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2404fe1b3dc193bf58c4798111723715",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4047878,
            "upload_time": "2024-11-21T04:31:03",
            "upload_time_iso_8601": "2024-11-21T04:31:03.436440Z",
            "url": "https://files.pythonhosted.org/packages/1c/fa/9e1d88e2f025ce8d389f861bd962c0558ee23bc1b6d18981a967b6b51e6d/pymssql-2.3.2-cp313-cp313-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f52a7ad8a39d8ff79a8f7ee7fc5a9c43f22cd365aff3f296b20a702c164eebb6",
                "md5": "c740045e3d6d2794ba351bf2525b207c",
                "sha256": "ee8ee2c7c227c413ad9b88ddba1cb6a25e28c217ae73ecac1c7a6b8c29003604"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c740045e3d6d2794ba351bf2525b207c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4109700,
            "upload_time": "2024-11-21T04:30:17",
            "upload_time_iso_8601": "2024-11-21T04:30:17.030957Z",
            "url": "https://files.pythonhosted.org/packages/f5/2a/7ad8a39d8ff79a8f7ee7fc5a9c43f22cd365aff3f296b20a702c164eebb6/pymssql-2.3.2-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1a1f99f37547126981a351e0c8854f35b7d984238c68af54ff8863ea2d3644b",
                "md5": "108b1bbdc8c7fd4d3a7a9995f3858f38",
                "sha256": "ef0d29c705db552f9e75230f946b0ca9db0db903c5c9ee79ce8b88ad25ea9670"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "108b1bbdc8c7fd4d3a7a9995f3858f38",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 4786896,
            "upload_time": "2024-11-21T04:30:21",
            "upload_time_iso_8601": "2024-11-21T04:30:21.844047Z",
            "url": "https://files.pythonhosted.org/packages/f1/a1/f99f37547126981a351e0c8854f35b7d984238c68af54ff8863ea2d3644b/pymssql-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "244f93438cd488497f1c089d077380c3bc9a7adf98666fa01d7a380861440965",
                "md5": "7c978792d7e8dc9e4c59e87e1706aeac",
                "sha256": "1037053e6c74d6fe14c428cc942968b4e4bf06854706a83fe8e822e475e3f107"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "7c978792d7e8dc9e4c59e87e1706aeac",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1306239,
            "upload_time": "2024-11-21T04:06:34",
            "upload_time_iso_8601": "2024-11-21T04:06:34.942294Z",
            "url": "https://files.pythonhosted.org/packages/24/4f/93438cd488497f1c089d077380c3bc9a7adf98666fa01d7a380861440965/pymssql-2.3.2-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adb96782fee30a1bb699aa023e132ca85d137e20466ef9fe562656a1e3dec25b",
                "md5": "3c97c4949bbb11c73f3a60a780468f31",
                "sha256": "148b7714fff5a5b7ce038e92b02dd9bf68fe442c181a3aae32148e7b13f6db95"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3c97c4949bbb11c73f3a60a780468f31",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1988634,
            "upload_time": "2024-11-21T04:04:36",
            "upload_time_iso_8601": "2024-11-21T04:04:36.465355Z",
            "url": "https://files.pythonhosted.org/packages/ad/b9/6782fee30a1bb699aa023e132ca85d137e20466ef9fe562656a1e3dec25b/pymssql-2.3.2-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72af7882f11de250b5713f48205a21b37f335097bf3c75e5a124441aac52889c",
                "md5": "74a5badb1352f0e3e55d06e6f635f2ab",
                "sha256": "bac6f355c454f94b0e15a04b7841236e5c5c4ef44d2d1beed00a3ad7b50ccc53"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp39-cp39-macosx_13_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "74a5badb1352f0e3e55d06e6f635f2ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2773791,
            "upload_time": "2024-11-21T04:12:31",
            "upload_time_iso_8601": "2024-11-21T04:12:31.969513Z",
            "url": "https://files.pythonhosted.org/packages/72/af/7882f11de250b5713f48205a21b37f335097bf3c75e5a124441aac52889c/pymssql-2.3.2-cp39-cp39-macosx_13_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1891cb0c68f205464b8c4ac3144e032a89f26e483bdbfd02701e4d438ac7678b",
                "md5": "93b16071d0317f3bb55a7ff3f498792b",
                "sha256": "b3eb201c402bcf4f5b9399df0bb20d522636d2e87d1c6957a0b6d772ee636c61"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "93b16071d0317f3bb55a7ff3f498792b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4628413,
            "upload_time": "2024-11-21T04:24:15",
            "upload_time_iso_8601": "2024-11-21T04:24:15.577545Z",
            "url": "https://files.pythonhosted.org/packages/18/91/cb0c68f205464b8c4ac3144e032a89f26e483bdbfd02701e4d438ac7678b/pymssql-2.3.2-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f492767832c8dd2bfc2da812655ae7c2b9022d57c68da5f3cc52d116e1d55596",
                "md5": "1cd39f00b50ee832013c774f9019e7f1",
                "sha256": "dd5fe7552edc81628e4242b4671f7bad5ff1ec790bae5c7615d989375620edac"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1cd39f00b50ee832013c774f9019e7f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2770557,
            "upload_time": "2024-11-21T04:06:40",
            "upload_time_iso_8601": "2024-11-21T04:06:40.828308Z",
            "url": "https://files.pythonhosted.org/packages/f4/92/767832c8dd2bfc2da812655ae7c2b9022d57c68da5f3cc52d116e1d55596/pymssql-2.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "75d8e3ffc5874e9d1dd11c6f7c2ff7a73f3bd9baba616ac093759578460e6490",
                "md5": "8dcc2e5834013d5990a6a056ad83dfb1",
                "sha256": "fb8a7b197aaf466a7577ca6690aa9d747081b653ab212d052d71f3cc10587c3b"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8dcc2e5834013d5990a6a056ad83dfb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2871080,
            "upload_time": "2024-11-21T04:06:45",
            "upload_time_iso_8601": "2024-11-21T04:06:45.589122Z",
            "url": "https://files.pythonhosted.org/packages/75/d8/e3ffc5874e9d1dd11c6f7c2ff7a73f3bd9baba616ac093759578460e6490/pymssql-2.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f4f40180a3c509ac72f3703ac7eaf6485983744c492db5420ecd98e5fa20179",
                "md5": "01e52a93d3650dfdc27f6875743bc027",
                "sha256": "0a20a17db870fb0e446a6d6bf7664aaf84af7be58ab1fad025cafa4e092507a1"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "01e52a93d3650dfdc27f6875743bc027",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3982981,
            "upload_time": "2024-11-21T04:31:06",
            "upload_time_iso_8601": "2024-11-21T04:31:06.257102Z",
            "url": "https://files.pythonhosted.org/packages/9f/4f/40180a3c509ac72f3703ac7eaf6485983744c492db5420ecd98e5fa20179/pymssql-2.3.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a5518d67fccc7b7501c2783f92eb0ddad251ea53715ed8d9368ba7d97dc5ed3",
                "md5": "59d09c57190c770bbddcfa76f30433bf",
                "sha256": "1cdc2619e7b4192b8d6619fd52ba8a2eae18b38b376f8649fb8f0727c4e88ff9"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "59d09c57190c770bbddcfa76f30433bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4004449,
            "upload_time": "2024-11-21T04:30:19",
            "upload_time_iso_8601": "2024-11-21T04:30:19.284544Z",
            "url": "https://files.pythonhosted.org/packages/7a/55/18d67fccc7b7501c2783f92eb0ddad251ea53715ed8d9368ba7d97dc5ed3/pymssql-2.3.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a25e4f98dcd8aaaf364b86cb80d06fa28d8652e3de88eadfaa80900190377f88",
                "md5": "4b18d808c18504905c0d9c615c94954f",
                "sha256": "22b1ce3a48f28ee7d06ebc9ed94276d0bf1c99051ee1df3d2377b74721bd62ef"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4b18d808c18504905c0d9c615c94954f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 4674120,
            "upload_time": "2024-11-21T04:30:25",
            "upload_time_iso_8601": "2024-11-21T04:30:25.097577Z",
            "url": "https://files.pythonhosted.org/packages/a2/5e/4f98dcd8aaaf364b86cb80d06fa28d8652e3de88eadfaa80900190377f88/pymssql-2.3.2-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "080ce340d3e20d7c8c55cad47f53e6b9de65ace4d4d341015718b74ebee1626f",
                "md5": "ddb5ca05f4ea7d04748050452f9459b9",
                "sha256": "aa08b6203b2b5ed5ce47f80d5c529459181300d7e0d0c1e84390a4d01d45e509"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ddb5ca05f4ea7d04748050452f9459b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1320268,
            "upload_time": "2024-11-21T04:11:00",
            "upload_time_iso_8601": "2024-11-21T04:11:00.222858Z",
            "url": "https://files.pythonhosted.org/packages/08/0c/e340d3e20d7c8c55cad47f53e6b9de65ace4d4d341015718b74ebee1626f/pymssql-2.3.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91260349fa033ae139fc8829837c4c26842ab5ef71a926fbadac81658f7171ad",
                "md5": "ef33915eb49094ab09f3b7220638cb98",
                "sha256": "22fb0fdd3b889bc10abbe3aa2abe7a008b30a6367b9ba159412d185d7d8fda9d"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ef33915eb49094ab09f3b7220638cb98",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2005205,
            "upload_time": "2024-11-21T04:05:01",
            "upload_time_iso_8601": "2024-11-21T04:05:01.984806Z",
            "url": "https://files.pythonhosted.org/packages/91/26/0349fa033ae139fc8829837c4c26842ab5ef71a926fbadac81658f7171ad/pymssql-2.3.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81c82ce5b171581c2e4d5d9726aaa805eb01febc7ed70a3bf686e1e0f5501b07",
                "md5": "e102e6966636a2a22d7b278d74464d35",
                "sha256": "18089641b687be1ebd0f64f0d1ff977478a397ffa1af372bdf10dbec29cf6d2e"
            },
            "downloads": -1,
            "filename": "pymssql-2.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "e102e6966636a2a22d7b278d74464d35",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 184760,
            "upload_time": "2024-11-21T04:06:42",
            "upload_time_iso_8601": "2024-11-21T04:06:42.157010Z",
            "url": "https://files.pythonhosted.org/packages/81/c8/2ce5b171581c2e4d5d9726aaa805eb01febc7ed70a3bf686e1e0f5501b07/pymssql-2.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-21 04:06:42",
    "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.45732s