Name | pymssql JSON |
Version |
2.3.7
JSON |
| download |
home_page | None |
Summary | DB-API interface to Microsoft SQL Server for Python. (new Cython-based version) |
upload_time | 2025-07-11 01:04:00 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
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/Wheels/badge.svg
:target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Wheels%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.7 - 2025-07-10 - Mikhail Terekhov
=============================================
General
-------
- Allow to specify openssl dependency on macos, thanks to dwt (PR #934).
Version 2.3.6 - 2025-06-28 - Mikhail Terekhov
=============================================
General
-------
- Build manylinux wheels using manylinux2014 image.
Raw data
{
"_id": null,
"home_page": null,
"name": "pymssql",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "Mikhail Terekhov <termim@gmail.com>",
"keywords": "mssql, SQL Server, database, DB-API",
"author": null,
"author_email": "Damien Churchill <damoxc@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/ad/97/4e2b350ccc301a2ba38fe3af246f7cbff0f9d454beb30b57a73570789330/pymssql-2.3.7.tar.gz",
"platform": "any",
"description": "\npymssql - DB-API interface to Microsoft SQL Server\n==================================================\n\n.. image:: https://github.com/pymssql/pymssql/workflows/Wheels/badge.svg\n :target: https://github.com/pymssql/pymssql/actions?query=workflow%3A%22Wheels%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\n\nVersion 2.3.7 - 2025-07-10 - Mikhail Terekhov\n=============================================\n\nGeneral\n-------\n\n- Allow to specify openssl dependency on macos, thanks to dwt (PR #934).\n\n\nVersion 2.3.6 - 2025-06-28 - Mikhail Terekhov\n=============================================\n\nGeneral\n-------\n\n- Build manylinux wheels using manylinux2014 image.\n",
"bugtrack_url": null,
"license": null,
"summary": "DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)",
"version": "2.3.7",
"project_urls": {
"Bug Tracker": "https://github.com/pymssql/pymssql/issues",
"Changelog": "https://github.com/pymssql/pymssql/blob/master/ChangeLog.rst",
"documentation": "http://pymssql.readthedocs.io",
"homepage": "https://github.com/pymssql/pymssql",
"repository": "https://github.com/pymssql/pymssql"
},
"split_keywords": [
"mssql",
" sql server",
" database",
" db-api"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "124df17ea7df8efe7a4786589ae75b2573abc284a53a7703e7ed1436583e59f7",
"md5": "1fa9fa0d0eb3f43f95bfded45606ac5b",
"sha256": "3d045a748b54a94778b389934f37da9e6ad02e77e754673a89a087df1beb7496"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp310-cp310-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "1fa9fa0d0eb3f43f95bfded45606ac5b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2917312,
"upload_time": "2025-07-11T01:03:07",
"upload_time_iso_8601": "2025-07-11T01:03:07.211376Z",
"url": "https://files.pythonhosted.org/packages/12/4d/f17ea7df8efe7a4786589ae75b2573abc284a53a7703e7ed1436583e59f7/pymssql-2.3.7-cp310-cp310-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "60842c225f224fd68ce71a344065ef86c474458c7490e500e1295866d5380814",
"md5": "fc8a216a8cd7b1b1bcc1498484ab5a65",
"sha256": "8b4eef6f8698f505aa6ba7dcb0362c42c1a4021eeb44edeb96ecc0480fc960ac"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp310-cp310-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "fc8a216a8cd7b1b1bcc1498484ab5a65",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3132424,
"upload_time": "2025-07-11T01:03:09",
"upload_time_iso_8601": "2025-07-11T01:03:09.220461Z",
"url": "https://files.pythonhosted.org/packages/60/84/2c225f224fd68ce71a344065ef86c474458c7490e500e1295866d5380814/pymssql-2.3.7-cp310-cp310-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "be103eb0a1941ea6507d467551872f4a99c073405e9604d1d08c063fa4f5f27f",
"md5": "2df62dea473faced9cb4275cc9e1dcf6",
"sha256": "ee45139c65e1cd490d783db6b36de9258aa369f61a320cf3bd24a8b233687a24"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "2df62dea473faced9cb4275cc9e1dcf6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2451549,
"upload_time": "2025-07-11T01:03:10",
"upload_time_iso_8601": "2025-07-11T01:03:10.464697Z",
"url": "https://files.pythonhosted.org/packages/be/10/3eb0a1941ea6507d467551872f4a99c073405e9604d1d08c063fa4f5f27f/pymssql-2.3.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "737559fd283fc797a024267b61c2b23d19d4f1a0953078dd142dc0119768dd83",
"md5": "9db36bbf89054d6bd606659b6c3c57c7",
"sha256": "ecd6035112487ba5be55ab09f9b546365d381252ccebca843dff994fd9316031"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "9db36bbf89054d6bd606659b6c3c57c7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2794971,
"upload_time": "2025-07-11T01:03:12",
"upload_time_iso_8601": "2025-07-11T01:03:12.139071Z",
"url": "https://files.pythonhosted.org/packages/73/75/59fd283fc797a024267b61c2b23d19d4f1a0953078dd142dc0119768dd83/pymssql-2.3.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "791f491505ba5b9a286de5f263e447fbcdeb595b395d1bada26ba1306c1f314d",
"md5": "f9fd9316ede427a796a9dd8158f6d908",
"sha256": "0f1dac3cd66a13748c980f3dbeb5aa61913d24542eaf66863ef9f9fc1e3215dc"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f9fd9316ede427a796a9dd8158f6d908",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3693475,
"upload_time": "2025-07-11T01:03:13",
"upload_time_iso_8601": "2025-07-11T01:03:13.312144Z",
"url": "https://files.pythonhosted.org/packages/79/1f/491505ba5b9a286de5f263e447fbcdeb595b395d1bada26ba1306c1f314d/pymssql-2.3.7-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2a65dbbce0ed2151e99a0332929d330f340b220947616434d1bf7d5df8a58648",
"md5": "5f50c2486d737088dc2b1419c11a906a",
"sha256": "74308f69d0c74a384e927b30c1c9b9d312bb2480221b7bd711b83f43a33c2ca9"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "5f50c2486d737088dc2b1419c11a906a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 3441426,
"upload_time": "2025-07-11T01:03:14",
"upload_time_iso_8601": "2025-07-11T01:03:14.535997Z",
"url": "https://files.pythonhosted.org/packages/2a/65/dbbce0ed2151e99a0332929d330f340b220947616434d1bf7d5df8a58648/pymssql-2.3.7-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "86aa0b3d65ec1bb6d4f3394f366e3e959ab44bdcce693e39202edb660f3ed410",
"md5": "46c5dd133cb9f781a1a57d20405239dd",
"sha256": "648969b66a781cdf3d06008265f50546b96d185041028373147765a9aef48851"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "46c5dd133cb9f781a1a57d20405239dd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1323247,
"upload_time": "2025-07-11T01:03:15",
"upload_time_iso_8601": "2025-07-11T01:03:15.658766Z",
"url": "https://files.pythonhosted.org/packages/86/aa/0b3d65ec1bb6d4f3394f366e3e959ab44bdcce693e39202edb660f3ed410/pymssql-2.3.7-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "18d8957efc733eb3b971f65bdcebdfd65d954ac4d78b1a00246abaafd67c5a38",
"md5": "ff5f2d9e0592683749981aac2930abee",
"sha256": "07d16ee3b4118bbaa786ec28d2b23d6aa0f9e308ba2fd4959c8205d34f8a38e8"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "ff5f2d9e0592683749981aac2930abee",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 2004064,
"upload_time": "2025-07-11T01:03:16",
"upload_time_iso_8601": "2025-07-11T01:03:16.711328Z",
"url": "https://files.pythonhosted.org/packages/18/d8/957efc733eb3b971f65bdcebdfd65d954ac4d78b1a00246abaafd67c5a38/pymssql-2.3.7-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8a74864e4ff683160a69925c5c528c3bf91daa1a7b294d3c313345e87c698c8a",
"md5": "b3c37dcffa96bc43cf430419220be36e",
"sha256": "217985ffd3bafa7689de3976671f5c3c390ee4ceac2e458af11f22e9021f2ead"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp311-cp311-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "b3c37dcffa96bc43cf430419220be36e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2920984,
"upload_time": "2025-07-11T01:03:18",
"upload_time_iso_8601": "2025-07-11T01:03:18.969484Z",
"url": "https://files.pythonhosted.org/packages/8a/74/864e4ff683160a69925c5c528c3bf91daa1a7b294d3c313345e87c698c8a/pymssql-2.3.7-cp311-cp311-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "700d3eefc62a77401de9cfb600c2d277ed1c96e1256793bdeca06442eb7ad705",
"md5": "b5f6c98093ab6396a77e7470a4a1c762",
"sha256": "25972328fc896b525f115f11c19832635a776f6474d957a6f7f610ac0db3ac75"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp311-cp311-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "b5f6c98093ab6396a77e7470a4a1c762",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3135486,
"upload_time": "2025-07-11T01:03:20",
"upload_time_iso_8601": "2025-07-11T01:03:20.166710Z",
"url": "https://files.pythonhosted.org/packages/70/0d/3eefc62a77401de9cfb600c2d277ed1c96e1256793bdeca06442eb7ad705/pymssql-2.3.7-cp311-cp311-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6d9c1fd81a6088eca9cd9edf073be52c67124add73e8a4d4ec68816a238039be",
"md5": "c478ef5b6bc9018372275b04d344fa86",
"sha256": "31543f547613aa84016814bfd0f06687b603883148b1feff44a10604ef50dba8"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "c478ef5b6bc9018372275b04d344fa86",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2443081,
"upload_time": "2025-07-11T01:03:21",
"upload_time_iso_8601": "2025-07-11T01:03:21.728279Z",
"url": "https://files.pythonhosted.org/packages/6d/9c/1fd81a6088eca9cd9edf073be52c67124add73e8a4d4ec68816a238039be/pymssql-2.3.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0906d35699e1bdcf06d901450eed70709179e217137b12275fd4ab73f5d6e9ab",
"md5": "b05f436fcbed6819ae44e81089eea538",
"sha256": "4391064e5055f4967ae79074678b1794aae7ab4149864f9557054a56e72e2c74"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "b05f436fcbed6819ae44e81089eea538",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2784484,
"upload_time": "2025-07-11T01:03:22",
"upload_time_iso_8601": "2025-07-11T01:03:22.869387Z",
"url": "https://files.pythonhosted.org/packages/09/06/d35699e1bdcf06d901450eed70709179e217137b12275fd4ab73f5d6e9ab/pymssql-2.3.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e5220520248e02777359b95d804cdb16c28ccca8a6a947cc80655d8411b98203",
"md5": "ca9cdec829ba79d68ac8760ada0fed93",
"sha256": "9ade8beecc2ab5a90a193cd807311d4c74bb76ff3c699e7689f98247a5871442"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ca9cdec829ba79d68ac8760ada0fed93",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3685310,
"upload_time": "2025-07-11T01:03:23",
"upload_time_iso_8601": "2025-07-11T01:03:23.927540Z",
"url": "https://files.pythonhosted.org/packages/e5/22/0520248e02777359b95d804cdb16c28ccca8a6a947cc80655d8411b98203/pymssql-2.3.7-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "79653d0312004705157779a8426fea16b505984068d7e03065623ca37b40b7d2",
"md5": "aee3f03cb97cca199edebadcdf60e160",
"sha256": "09063a2eefdf8f1d7f52b1a8c50506c0807810934ec109aab2f590bfc0e78e5c"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "aee3f03cb97cca199edebadcdf60e160",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 3428722,
"upload_time": "2025-07-11T01:03:25",
"upload_time_iso_8601": "2025-07-11T01:03:25.439300Z",
"url": "https://files.pythonhosted.org/packages/79/65/3d0312004705157779a8426fea16b505984068d7e03065623ca37b40b7d2/pymssql-2.3.7-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b99c6406c3313c0c81352ab7fcff8d1127f0301a0fd49e940a757b915ebdfa0a",
"md5": "ec51421ad1302f6f7486ce88c5e57ab6",
"sha256": "132698a5327ea78e17960f3a4322a1bae6a953edfd690dfba5f5ea28a3601114"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "ec51421ad1302f6f7486ce88c5e57ab6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1322524,
"upload_time": "2025-07-11T01:03:26",
"upload_time_iso_8601": "2025-07-11T01:03:26.599213Z",
"url": "https://files.pythonhosted.org/packages/b9/9c/6406c3313c0c81352ab7fcff8d1127f0301a0fd49e940a757b915ebdfa0a/pymssql-2.3.7-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1d4cc6263a16ca905d0617ad8b3afdc354a0046992a1cbe453d626126d9b47bb",
"md5": "a5103d52c44792f89e25c8c18e994a41",
"sha256": "a4ead25c67bff2700afb25edaeac923e701465bd33f64b475eb61214b592b8cd"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "a5103d52c44792f89e25c8c18e994a41",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 2004594,
"upload_time": "2025-07-11T01:03:27",
"upload_time_iso_8601": "2025-07-11T01:03:27.739179Z",
"url": "https://files.pythonhosted.org/packages/1d/4c/c6263a16ca905d0617ad8b3afdc354a0046992a1cbe453d626126d9b47bb/pymssql-2.3.7-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "04422c647097ea0df1ab9b1bba31c936d179b083c06a229bdaf244f96b5d1309",
"md5": "b31b7d8ddce4baef041cd7fc962a51a5",
"sha256": "9ac8232d94447e37ee115d5184ac25ab89cb5c0990147457826b4662b99af124"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp312-cp312-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "b31b7d8ddce4baef041cd7fc962a51a5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2904130,
"upload_time": "2025-07-11T01:03:29",
"upload_time_iso_8601": "2025-07-11T01:03:29.248935Z",
"url": "https://files.pythonhosted.org/packages/04/42/2c647097ea0df1ab9b1bba31c936d179b083c06a229bdaf244f96b5d1309/pymssql-2.3.7-cp312-cp312-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "89d845ce5a56291a2529e61fa0f541c9df6ebbc8889d52345d0e335ce5e75467",
"md5": "b0cfa2f0d953e49335d2f9da8fdfc52b",
"sha256": "7a25383d5e9c2cba4728830951329f453a8f404100b851c0a7c43456a8618927"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp312-cp312-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "b0cfa2f0d953e49335d2f9da8fdfc52b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3122024,
"upload_time": "2025-07-11T01:03:30",
"upload_time_iso_8601": "2025-07-11T01:03:30.733186Z",
"url": "https://files.pythonhosted.org/packages/89/d8/45ce5a56291a2529e61fa0f541c9df6ebbc8889d52345d0e335ce5e75467/pymssql-2.3.7-cp312-cp312-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41c029dfbc30ffaad024155d82d6c3d41d8993968d4da0bc8295233c0f320880",
"md5": "ba8b036d19bbba4291c68862b40ee52e",
"sha256": "1bbb11b93fd21c261c8c6cf59302fecf66a0b75ce9281772d62252a29de43819"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "ba8b036d19bbba4291c68862b40ee52e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2476192,
"upload_time": "2025-07-11T01:03:32",
"upload_time_iso_8601": "2025-07-11T01:03:32.253689Z",
"url": "https://files.pythonhosted.org/packages/41/c0/29dfbc30ffaad024155d82d6c3d41d8993968d4da0bc8295233c0f320880/pymssql-2.3.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f6ec780c60df9d942b419673f9f5d5ae6e2de279e5954af181df53c7a904d006",
"md5": "970cdfe0e01afd9acb40bc956553f382",
"sha256": "a4ee4a8b86de552c2714512ff144937baf8fc23cc7079cb481229e7c703d2793"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "970cdfe0e01afd9acb40bc956553f382",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 2814988,
"upload_time": "2025-07-11T01:03:33",
"upload_time_iso_8601": "2025-07-11T01:03:33.485440Z",
"url": "https://files.pythonhosted.org/packages/f6/ec/780c60df9d942b419673f9f5d5ae6e2de279e5954af181df53c7a904d006/pymssql-2.3.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "48d391efb0ecf2cefc8aa2b1f6cc3cd77e80807ed37827a7fe0faad9379990ab",
"md5": "b309a476edf6730c6ceb72ce10f43617",
"sha256": "56310017000e1a78e3e502be511be7211fd0e7d87d784303608e47fa3db28365"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b309a476edf6730c6ceb72ce10f43617",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3717811,
"upload_time": "2025-07-11T01:03:34",
"upload_time_iso_8601": "2025-07-11T01:03:34.693429Z",
"url": "https://files.pythonhosted.org/packages/48/d3/91efb0ecf2cefc8aa2b1f6cc3cd77e80807ed37827a7fe0faad9379990ab/pymssql-2.3.7-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5e866822e6567d7f6587d772adf5d8fbe0157742f59932ddbf6831349c4b590f",
"md5": "1875e7f8288d183e2bd181c9aaa5774a",
"sha256": "05ec2b7df85cfc1d849a701471cdab54d4da43d45b361cabb7641d9df6828545"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "1875e7f8288d183e2bd181c9aaa5774a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 3463486,
"upload_time": "2025-07-11T01:03:35",
"upload_time_iso_8601": "2025-07-11T01:03:35.879135Z",
"url": "https://files.pythonhosted.org/packages/5e/86/6822e6567d7f6587d772adf5d8fbe0157742f59932ddbf6831349c4b590f/pymssql-2.3.7-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8c67e04d6d3b3a61d0a0ca63baf6d6d2b07e5991e98ae1b7662ebfc9e46f0c5",
"md5": "d3c221db68c45103a9593c09333642b9",
"sha256": "d58c1fab2604fdf37f8e3a895c35ae4f26ec4195e200556c4e583c2c216d0a3d"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "d3c221db68c45103a9593c09333642b9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1307278,
"upload_time": "2025-07-11T01:03:37",
"upload_time_iso_8601": "2025-07-11T01:03:37.149257Z",
"url": "https://files.pythonhosted.org/packages/f8/c6/7e04d6d3b3a61d0a0ca63baf6d6d2b07e5991e98ae1b7662ebfc9e46f0c5/pymssql-2.3.7-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f44c5860010cf9a1c2b8c2d37b18fee8720f61c452af5841e7dca4fef811aec5",
"md5": "c6d3377889db23bd753ef9bf954350a5",
"sha256": "257f9048a05220596e0697aade7fee9a993e19c51c652b1c0a0eca97769b5fd4"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "c6d3377889db23bd753ef9bf954350a5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1988370,
"upload_time": "2025-07-11T01:03:38",
"upload_time_iso_8601": "2025-07-11T01:03:38.286999Z",
"url": "https://files.pythonhosted.org/packages/f4/4c/5860010cf9a1c2b8c2d37b18fee8720f61c452af5841e7dca4fef811aec5/pymssql-2.3.7-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0ff291db1c61558ac797766011ebaaae94a2764f43cd6a8e1337d797d81cd3fa",
"md5": "db11e20389f52026660cfa083dfb7b88",
"sha256": "456d7d8b1bf24a611643a67546f2b2188e645250d2c6943bc59093ca03fd33e8"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp313-cp313-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "db11e20389f52026660cfa083dfb7b88",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2900668,
"upload_time": "2025-07-11T01:03:39",
"upload_time_iso_8601": "2025-07-11T01:03:39.778844Z",
"url": "https://files.pythonhosted.org/packages/0f/f2/91db1c61558ac797766011ebaaae94a2764f43cd6a8e1337d797d81cd3fa/pymssql-2.3.7-cp313-cp313-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "68ad7d5f2892a86992f81bc36b54105ec400f0d5afb8009d2027761a2b9ab52a",
"md5": "fe41aa00818673117415417e26809421",
"sha256": "2cbea08bd03acb103b553b9cfccda93d5ffe4bd836f89071af2616e0b04e776e"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp313-cp313-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "fe41aa00818673117415417e26809421",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3119006,
"upload_time": "2025-07-11T01:03:40",
"upload_time_iso_8601": "2025-07-11T01:03:40.845808Z",
"url": "https://files.pythonhosted.org/packages/68/ad/7d5f2892a86992f81bc36b54105ec400f0d5afb8009d2027761a2b9ab52a/pymssql-2.3.7-cp313-cp313-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "886a1f6614352e59b79e59329774ef159bbd0447b172e62b32ffeea9ef396021",
"md5": "a380f431427f6e2c9e7166e06d19294c",
"sha256": "b9b9eceea38fd2f389fb325513cb99964f9465facc35b72174c6cfd93ef3e510"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "a380f431427f6e2c9e7166e06d19294c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2475555,
"upload_time": "2025-07-11T01:03:42",
"upload_time_iso_8601": "2025-07-11T01:03:42.776237Z",
"url": "https://files.pythonhosted.org/packages/88/6a/1f6614352e59b79e59329774ef159bbd0447b172e62b32ffeea9ef396021/pymssql-2.3.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b187f4dc8f9bff8de57f6d6256ff89f7e2e424155c81ac0caea470a391e97e0b",
"md5": "e0a1476d71c076471a7996b4a6403f50",
"sha256": "69e6feb6916d9e9c37b00538e8cdaf489788244b3111c3cc6e9efffe0e492405"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "e0a1476d71c076471a7996b4a6403f50",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 2814496,
"upload_time": "2025-07-11T01:03:43",
"upload_time_iso_8601": "2025-07-11T01:03:43.922558Z",
"url": "https://files.pythonhosted.org/packages/b1/87/f4dc8f9bff8de57f6d6256ff89f7e2e424155c81ac0caea470a391e97e0b/pymssql-2.3.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "243ba75181f0e42432c795651654802a237152403048e0b4265dd2c5f378ad4a",
"md5": "0ac45b44c5ac4ad91f76eb0fba245223",
"sha256": "a30c31db155c45aafb355e39ede10593fe6c3f18e98117289cb611611901d608"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0ac45b44c5ac4ad91f76eb0fba245223",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3717450,
"upload_time": "2025-07-11T01:03:45",
"upload_time_iso_8601": "2025-07-11T01:03:45.082666Z",
"url": "https://files.pythonhosted.org/packages/24/3b/a75181f0e42432c795651654802a237152403048e0b4265dd2c5f378ad4a/pymssql-2.3.7-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "38a9d4cdbaa63a271e88380d1a99b749c99d6b5be1c4800777a9f9d4a0832f11",
"md5": "430b4b852f02f5310331eb371bb1d623",
"sha256": "37c16bc48a2ca88f1719bac6d2ebbbe7e2b821749bc1d04284975f1628300f13"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "430b4b852f02f5310331eb371bb1d623",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 3463013,
"upload_time": "2025-07-11T01:03:46",
"upload_time_iso_8601": "2025-07-11T01:03:46.275383Z",
"url": "https://files.pythonhosted.org/packages/38/a9/d4cdbaa63a271e88380d1a99b749c99d6b5be1c4800777a9f9d4a0832f11/pymssql-2.3.7-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b029ecacbacf81a5d8c186da77a1fe4f5cc948caf192f15371ead3bf7c95be65",
"md5": "4a72ca498e8462d6ff2ce9bab65d29a6",
"sha256": "ef769e7c9427cb97143e61c70ec594834bf1954b0f89285b448bb2e3b7e8c2a3"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "4a72ca498e8462d6ff2ce9bab65d29a6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1306860,
"upload_time": "2025-07-11T01:03:48",
"upload_time_iso_8601": "2025-07-11T01:03:48.260681Z",
"url": "https://files.pythonhosted.org/packages/b0/29/ecacbacf81a5d8c186da77a1fe4f5cc948caf192f15371ead3bf7c95be65/pymssql-2.3.7-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a39e913aec491c17ccdd60603fd98661c993cd74e13526e62f0e07d3d489fa5a",
"md5": "4ad46bad19ca4b0a5fcd06bacf7b20b7",
"sha256": "ee3fdfe37e40ead646a622af3a8b405f6aa8d6f48e9b7a412a47dcf3be8b703e"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "4ad46bad19ca4b0a5fcd06bacf7b20b7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1988939,
"upload_time": "2025-07-11T01:03:49",
"upload_time_iso_8601": "2025-07-11T01:03:49.330261Z",
"url": "https://files.pythonhosted.org/packages/a3/9e/913aec491c17ccdd60603fd98661c993cd74e13526e62f0e07d3d489fa5a/pymssql-2.3.7-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99eb563b579c00357b5fae7a66bf12a9eea53cf9b06db7f80499834e7c3f62a2",
"md5": "dbb9e23244c2d844a91f07070cc38090",
"sha256": "616c8c21cda7f78894fcb2f11172edc41564191f125d8aa5205df3ed0709d3db"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp39-cp39-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "dbb9e23244c2d844a91f07070cc38090",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2918269,
"upload_time": "2025-07-11T01:03:50",
"upload_time_iso_8601": "2025-07-11T01:03:50.812183Z",
"url": "https://files.pythonhosted.org/packages/99/eb/563b579c00357b5fae7a66bf12a9eea53cf9b06db7f80499834e7c3f62a2/pymssql-2.3.7-cp39-cp39-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f53a2d970e22c0ae544ddc64aa57126fab27d928b2d553c8ef8bc3ffe26bd02",
"md5": "07959754c94c68e91ce4bad125696723",
"sha256": "e69d840bf5cd3abd4e88c80ccb219095b332b107a780e26a578e051b6648e415"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp39-cp39-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "07959754c94c68e91ce4bad125696723",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3133283,
"upload_time": "2025-07-11T01:03:51",
"upload_time_iso_8601": "2025-07-11T01:03:51.884282Z",
"url": "https://files.pythonhosted.org/packages/1f/53/a2d970e22c0ae544ddc64aa57126fab27d928b2d553c8ef8bc3ffe26bd02/pymssql-2.3.7-cp39-cp39-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "592afb3d3552a1129cd8f9bf94fccb4b49fb14d4eea2b8f89c07fdf65ebcb80a",
"md5": "a0e1b416666f01087bb02a966c14f9a7",
"sha256": "ba85c3ceb3fbcb1d7d75ecd556a6ec7d88fc97c2c703136c5c63119f7b14b4f9"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"has_sig": false,
"md5_digest": "a0e1b416666f01087bb02a966c14f9a7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2452323,
"upload_time": "2025-07-11T01:03:53",
"upload_time_iso_8601": "2025-07-11T01:03:53.000791Z",
"url": "https://files.pythonhosted.org/packages/59/2a/fb3d3552a1129cd8f9bf94fccb4b49fb14d4eea2b8f89c07fdf65ebcb80a/pymssql-2.3.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b0089014f383f15806f6c98a0ac27c85a79c953cb22e47ca6b794361a70935b8",
"md5": "38b008a0d497e77838350909ec243b3b",
"sha256": "6706cdfca15b62a96c6ab5f48faa087b991c6d070b49b5a797ba93f11a84ffd9"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"has_sig": false,
"md5_digest": "38b008a0d497e77838350909ec243b3b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2796267,
"upload_time": "2025-07-11T01:03:54",
"upload_time_iso_8601": "2025-07-11T01:03:54.146228Z",
"url": "https://files.pythonhosted.org/packages/b0/08/9014f383f15806f6c98a0ac27c85a79c953cb22e47ca6b794361a70935b8/pymssql-2.3.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9c13157f9e7b428cb7136b0797014fdcce01d2ec509fe83d3a6be330cde8bcee",
"md5": "f57216a1f7b41c8d465550434d962e1e",
"sha256": "6d01d0c3382d5d05c4c2993e01834013fb1a612e0eb1b3c1a884c194b5e2a5e5"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f57216a1f7b41c8d465550434d962e1e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3694244,
"upload_time": "2025-07-11T01:03:55",
"upload_time_iso_8601": "2025-07-11T01:03:55.280365Z",
"url": "https://files.pythonhosted.org/packages/9c/13/157f9e7b428cb7136b0797014fdcce01d2ec509fe83d3a6be330cde8bcee/pymssql-2.3.7-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "67a3fab88703eb7b0bc41bfa04f7809b030f13712c78c39f2e0a768bd705b747",
"md5": "3637d23eba3978d91c8917325a689d47",
"sha256": "b83222b3e13f9a688c7c251f9d5a4106b60728a7935a07ad5e9fc1d5e1c5093a"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3637d23eba3978d91c8917325a689d47",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 3442465,
"upload_time": "2025-07-11T01:03:56",
"upload_time_iso_8601": "2025-07-11T01:03:56.413473Z",
"url": "https://files.pythonhosted.org/packages/67/a3/fab88703eb7b0bc41bfa04f7809b030f13712c78c39f2e0a768bd705b747/pymssql-2.3.7-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d7e70bbc0df77a40eacaf710d7d13c6e15a7475f9615b094d82b4f331abda09",
"md5": "ff02d7f6f96c5ea344ce7e7293bb4bca",
"sha256": "da059513444680080d22ba2e252384877391025da07355d50683ebe7f6c88027"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "ff02d7f6f96c5ea344ce7e7293bb4bca",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1323669,
"upload_time": "2025-07-11T01:03:57",
"upload_time_iso_8601": "2025-07-11T01:03:57.610465Z",
"url": "https://files.pythonhosted.org/packages/2d/7e/70bbc0df77a40eacaf710d7d13c6e15a7475f9615b094d82b4f331abda09/pymssql-2.3.7-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b9a88a197cecb132b6949d835ecebd92b5333dbe6e5a1e9b30032b382d74c627",
"md5": "746b87085e0705a4f1ccba42349eada1",
"sha256": "208c5a195fdeb4962a7c28f97a70b1f44a6487e74055f797ae519e88c196dbb1"
},
"downloads": -1,
"filename": "pymssql-2.3.7-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "746b87085e0705a4f1ccba42349eada1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 2004712,
"upload_time": "2025-07-11T01:03:58",
"upload_time_iso_8601": "2025-07-11T01:03:58.859706Z",
"url": "https://files.pythonhosted.org/packages/b9/a8/8a197cecb132b6949d835ecebd92b5333dbe6e5a1e9b30032b382d74c627/pymssql-2.3.7-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ad974e2b350ccc301a2ba38fe3af246f7cbff0f9d454beb30b57a73570789330",
"md5": "96fd5ab9c88156d67e09c190bf260007",
"sha256": "5e6d79c7b1cec40aebec4b099c6e445ccaac24519e5e767b49a4e6f48c087e50"
},
"downloads": -1,
"filename": "pymssql-2.3.7.tar.gz",
"has_sig": false,
"md5_digest": "96fd5ab9c88156d67e09c190bf260007",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 184995,
"upload_time": "2025-07-11T01:04:00",
"upload_time_iso_8601": "2025-07-11T01:04:00.235548Z",
"url": "https://files.pythonhosted.org/packages/ad/97/4e2b350ccc301a2ba38fe3af246f7cbff0f9d454beb30b57a73570789330/pymssql-2.3.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-11 01:04:00",
"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"
}