Skip to main content

A Python library for interacting with Microsoft SQL Server

Project description

General Availability Release

mssql‑python is now Generally Available (GA) as Microsoft’s official Python driver for SQL Server, Azure SQL, and SQL databases in Fabric. This release delivers a production‑ready, high‑performance, and developer‑friendly experience.

What makes mssql-python different?

Powered by DDBC – Direct Database Connectivity

Most Python SQL Server drivers, including pyodbc, route calls through the Driver Manager, which has slightly different implementations across Windows, macOS, and Linux. This results in inconsistent behavior and capabilities across platforms. Additionally, the Driver Manager must be installed separately, creating friction for both new developers and when deploying applications to servers.

At the heart of the mssql-python driver is DDBC (Direct Database Connectivity) — a lightweight, high-performance C++ layer that replaces the platform’s Driver Manager.

Key Advantages:

  • Provides a consistent, cross-platform backend that handles connections, statements, and memory directly.
  • Interfaces directly with the native SQL Server drivers.
  • Integrates with the same TDS core library that powers the ODBC driver.

Why is this architecture important?

By simplifying the architecture, DDBC delivers:

  • Consistency across platforms
  • Lower function call overhead
  • Zero external dependencies on Windows (pip install mssql-python is all you need)
  • Full control over connections, memory, and statement handling

Built with PyBind11 + Modern C++ for Performance and Safety

To expose the DDBC engine to Python, mssql-python uses PyBind11 – a modern C++ binding library.

PyBind11 provides:

  • Native-speed execution with automatic type conversions
  • Memory-safe bindings
  • Clean and Pythonic API, while performance-critical logic remains in robust, maintainable C++.

What's new in v1.12.0

Enhancements

  • Standalone mssql-python-odbc Package - The bundled ODBC driver binaries are now also published as a separate, pure-data package mssql-python-odbc (import name mssql_python_odbc, version 18.6.2). mssql-python now depends on mssql-python-odbc==18.6.2 and prefers the external package at import time, falling back to the still-bundled libs/ tree so existing installs keep working (#663, #687).

Bug Fixes

  • Bulk Copy Connection Timeout - cursor.bulkcopy() now forwards the cursor's connection timeout (from connect(timeout=X)) into the underlying mssql_py_core connection, instead of always using the hardcoded 15s default (#650).
  • Bulk Copy of Custom CLR UDT Columns - Fixed a Protocol Error: Unsupported TDS type for bulk copy: 0xF0 that prevented cursor.bulkcopy() from loading rows into custom (non-spatial) CLR UDT columns; UDT columns are now mapped to varbinary(max) on the wire and the supplied bytes are streamed as the UDT's serialized form (#688, via mssql_py_core 0.1.7).

For more information, please visit the project link on Github: https://github.com/microsoft/mssql-python

If you have any feedback, questions or need support please mail us at mssql-python@microsoft.com.

What's Next

As we continue to refine the driver and add new features, you can expect regular updates, optimizations, and bug fixes. We encourage you to contribute, provide feedback and report any issues you encounter, as this will help us improve the driver.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mssql_python-1.12.0-cp314-cp314-win_arm64.whl (19.4 MB view details)

Uploaded CPython 3.14Windows ARM64

mssql_python-1.12.0-cp314-cp314-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.14Windows x86-64

mssql_python-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl (27.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mssql_python-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl (27.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mssql_python-1.12.0-cp314-cp314-manylinux_2_28_x86_64.whl (28.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

mssql_python-1.12.0-cp314-cp314-manylinux_2_28_aarch64.whl (27.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

mssql_python-1.12.0-cp314-cp314-macosx_15_0_universal2.whl (28.3 MB view details)

Uploaded CPython 3.14macOS 15.0+ universal2 (ARM64, x86-64)

mssql_python-1.12.0-cp313-cp313-win_arm64.whl (18.8 MB view details)

Uploaded CPython 3.13Windows ARM64

mssql_python-1.12.0-cp313-cp313-win_amd64.whl (15.6 MB view details)

Uploaded CPython 3.13Windows x86-64

mssql_python-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl (27.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mssql_python-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl (26.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mssql_python-1.12.0-cp313-cp313-manylinux_2_28_x86_64.whl (27.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

mssql_python-1.12.0-cp313-cp313-manylinux_2_28_aarch64.whl (26.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

mssql_python-1.12.0-cp313-cp313-macosx_15_0_universal2.whl (28.3 MB view details)

Uploaded CPython 3.13macOS 15.0+ universal2 (ARM64, x86-64)

mssql_python-1.12.0-cp312-cp312-win_arm64.whl (18.8 MB view details)

Uploaded CPython 3.12Windows ARM64

mssql_python-1.12.0-cp312-cp312-win_amd64.whl (15.6 MB view details)

Uploaded CPython 3.12Windows x86-64

mssql_python-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl (26.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mssql_python-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl (26.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mssql_python-1.12.0-cp312-cp312-manylinux_2_28_x86_64.whl (26.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

mssql_python-1.12.0-cp312-cp312-manylinux_2_28_aarch64.whl (26.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

mssql_python-1.12.0-cp312-cp312-macosx_15_0_universal2.whl (28.3 MB view details)

Uploaded CPython 3.12macOS 15.0+ universal2 (ARM64, x86-64)

mssql_python-1.12.0-cp311-cp311-win_arm64.whl (18.8 MB view details)

Uploaded CPython 3.11Windows ARM64

mssql_python-1.12.0-cp311-cp311-win_amd64.whl (15.6 MB view details)

Uploaded CPython 3.11Windows x86-64

mssql_python-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl (26.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mssql_python-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl (25.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mssql_python-1.12.0-cp311-cp311-manylinux_2_28_x86_64.whl (26.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

mssql_python-1.12.0-cp311-cp311-manylinux_2_28_aarch64.whl (25.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

mssql_python-1.12.0-cp311-cp311-macosx_15_0_universal2.whl (28.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ universal2 (ARM64, x86-64)

mssql_python-1.12.0-cp310-cp310-win_amd64.whl (15.6 MB view details)

Uploaded CPython 3.10Windows x86-64

mssql_python-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl (25.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mssql_python-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl (25.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mssql_python-1.12.0-cp310-cp310-manylinux_2_28_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

mssql_python-1.12.0-cp310-cp310-manylinux_2_28_aarch64.whl (25.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

mssql_python-1.12.0-cp310-cp310-macosx_15_0_universal2.whl (28.3 MB view details)

Uploaded CPython 3.10macOS 15.0+ universal2 (ARM64, x86-64)

File details

Details for the file mssql_python-1.12.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b5b0eead5c00e2626cdbcec485779d15700bcf61871b030a91530526ce533b42
MD5 6e90706c1cd63823e8f71a9c8570712f
BLAKE2b-256 76b5bebc8f46a96565693fc622872e6350ecfea98a890330d23371111c59be8e

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 670d877e3ba7cacb286ccfa9acf0fb06e518caf99573468d7a5476a70c5d97dd
MD5 cfdb878166fd187eab6d6a51a02955e3
BLAKE2b-256 735b8bd2d295422f88989d186d443b2392fedd32b58e212f07fa5d6da6fbda32

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f78fc4e937c0addba591f24cd8e6dc4c725304bf5a4d4da478173c18ed2e826
MD5 2b98faffec78f1667e8554d9818c4a7a
BLAKE2b-256 0804cc355a09333706b40c76bb24389f180c12151b55ad7f28b11b66e0b79f5e

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f13f0a5aae382b47e04ab0a2a0a32d45ad36656d60bfe363789bdbf11d3acdd6
MD5 f2f3633066587cd033fb0c12529f7ad9
BLAKE2b-256 03a0ea25a02928b5723c9e0755d763c3fc72969801a6a7f982ae363ec3bfd25a

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c18a1cfdb3d919a840bfe0afb166b7637891f7e7cc303b4f7237baa3a8b2b2c7
MD5 b7651502fd1f4666640021d8d85252b1
BLAKE2b-256 a158b496e185f2b0978c1ef5e6646eaaa6c203cbd26918820d57d6362c3d2241

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c7aeacb4d38b400e30c78d50e9c1caff40eb6ee1373972822e81763b91ed0b2
MD5 c5aeb5556493c4e2c7ec1fdaaf01ccaa
BLAKE2b-256 42a3202b2dd5ce5e9ce235caee2c9d61df1030671282cceeba984b63fbb4b23f

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp314-cp314-macosx_15_0_universal2.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp314-cp314-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 6ba31f455c572abe897bdfc85b54a71645aaf2e53f4bda9e3945b53c2e4f4c7a
MD5 dbda1af551032e2e8a2cf00fc97ec367
BLAKE2b-256 facb44cc2da0b4351da84692cec02c90ad6df5ee1bf8652e18fb15b37330968b

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c39d939840970528a7931037591c128e420dcaf036a96d3ec3b765c102bfb33f
MD5 dbb8f8f4fac3f9744adecb781d8bb74e
BLAKE2b-256 a977014eae17b321bc2a48d9123a9af92ded3fc04e00e591dcf8b5c427c7a437

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f84298ee9a5b550de8cce47ce56145438ae8cba7914f2cc06a0d0e5de676398a
MD5 ed0891820d51745f2352346349bdfcf1
BLAKE2b-256 186f1a928f45417524c77d9d88d84a3b7bb93078c1fa3f28b964b49c9e8725e8

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b8f9b75bb9b071fffbba240693a8c024a6c20e33627b86f00922785156ca631
MD5 cda91020f59550326bfb8953482ac200
BLAKE2b-256 f016d3d92a1e6d5a3f938a9754adcff3581045876358070f5bb9fd525a9056fb

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 764880c11f107bc81da467d9a9a82e0d88cbf678a060f471da54a20e811ae2d9
MD5 3a504e8fc2ce14214440153143dfc9c5
BLAKE2b-256 d1d9875d922a2d58abba9582543f6d6416e7bbe9d6840483ec54eb046f3eae17

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20bbf396e5aee0c94bb08aebf9e4ad7ea73b306fbcedfda59e2be6ad05d54097
MD5 52c124713dad4242bc380289cfe95bec
BLAKE2b-256 921cd3016f29f6c0f56a412da788fca663cbcaa7803523fe2a2ad3524e00f03f

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45e14b00243423b693cf159598d8927f3610fc150e2ac4be1572c2d0e1e5429b
MD5 0c22f2ad0f0baaaa06da71d3c6c1773c
BLAKE2b-256 f4c908d3929fe151819bdbacb6b45204dd96d57cadeaf65b0407728475ab3046

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp313-cp313-macosx_15_0_universal2.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp313-cp313-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 24dcde19eb7967372ea14c0173bc5f58ca9e69c425ffe8ffe9fce1a7ab93f6f0
MD5 3e07e8f6b3280fee4a54c0a9d1edb7ed
BLAKE2b-256 3d089daab81ec40a7bd1713e97f0d81835b10ee83290d70d9e2b17896fcb8457

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bdb51c04b22e12e6d553e2d79fda345062870a24ed43683359fa80fadbb57804
MD5 3e11e26c9ddb2a8a480006ae9eec88dd
BLAKE2b-256 267a014a0b5c0789aee3a47d874e7b9970678ac63c08606728afc134b5b201a8

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dbb60d680d263ab8d58b61523200800669796b4599c86c55655710991a7b2d3b
MD5 cde5777ec0ae2380e971fe937b43c5f1
BLAKE2b-256 2221e08ac67ed5aecf6b27df62d53a4e9e443ece1151bb9798284b7416e04ff3

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58ca2c06ddbcf6e72740945eadf82a612752e909ad4e5abb955b173242625929
MD5 3b908b7e82f3c25087a0f26c30b65611
BLAKE2b-256 70c6c12e4d5f802da44ce057acfc5187293e911a880701280015c4ff480c5e12

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41cfac3d5bfd6286be2c27c001a56ffc714beb544acb2aa5a8757ffffb866842
MD5 82eb1ce4867edd8a75db609a3923a8f4
BLAKE2b-256 895bd9fb4543360a14e517bf2f414fc76ed9e1341b75c639048af3c54841e54c

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85132c4ff7aae5414370d1a7a0125c7e9a23389bc733ed97c2a1dc572bcbc9c3
MD5 e2a5b3b12b2f581c4a9a92aa8fc8b095
BLAKE2b-256 caaba0b18c9c490be5cb7481b184e32922969b093e319d5308885e7eaae9b482

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c41fc51524f354608394487522437b96040b2f3f5c060b77bf03091639c5258f
MD5 330771adf6d716b0dd6fbde4d406a3a7
BLAKE2b-256 834365711fd88ee87b53217ab4c60eba955fa8a9757e868f278843a1eb3bd0e5

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp312-cp312-macosx_15_0_universal2.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp312-cp312-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 6957ec6c9ba91060b99b7c1382e3dc3781ae494613fb74a2fbee94f9b945deb5
MD5 14c5096dfc69a79d31065726d3047a4f
BLAKE2b-256 aaf061522b87fde29d731127747cee13ca1164542a714403f0bd387b01fa2f4a

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1f691014de024ec9b7523bbf42b53ff2dc3bcd54ad8d2409753459f14bbf13e4
MD5 c1a2e89f87666b87ef9ecf56950d3219
BLAKE2b-256 c201f6319c2d98c97472210532172427e71fe349059c6815ea6a582c22d15685

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8bb5dfdb208ad485db8e49172efaa4577a43b2bbe18ce42ba6d030e182547672
MD5 2c1c8cd7b65e636b261d98b570ca8eef
BLAKE2b-256 2940aee6d43393e2c527b49f9b14383d8409d444ff6ea3fba50c610cda3f9abf

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2380f07a8395599ee1d61cf60d2f7fd03f00ed8c7f4a7aa484eed31dae4a492
MD5 ebe55ce7f47b3fb10836b4b95c28bbd8
BLAKE2b-256 4eb0ae852c0520d434c7f1567d50bb585391bf3542888c8b429bb708996acaee

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a348fe32944745098848054d12c9498c836acbb825d72baf4b4f4841a68c44d
MD5 fb809509b98b63a27761c2bfea1ff0d5
BLAKE2b-256 79b8e41d0dba119e35aa06f3e97748b2906456e54b9b7b82bcc95240b5755c46

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e580567ee05f8e0c5e0623229d7261fa9605515402589b39f40f5f9556a70fad
MD5 fb0c59a3015d831243346737f478cf00
BLAKE2b-256 8974379ab82df826c40da9200b1cc8dff9064ed76dbe8576b888b6b47ad9dd47

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c696d3455923ffe7c88b54a1c9e35ad3cf53b4ff31fbdaad7dd268921b4bbf32
MD5 cfbc445ce79910668240b7a3edc69bfc
BLAKE2b-256 c96973d03f3071b72813e0d17ea45e6a2cafe52a920567c65991f37966fbea7b

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp311-cp311-macosx_15_0_universal2.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp311-cp311-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 46ccacd5b86610c97202211d4d41e1d4a6703dee39dd27f73235c076c2bcd47c
MD5 c0724dae527510a354ef3fe9329253cf
BLAKE2b-256 b4a453383a12ec5ab83c3b4ef14a6cc6bf869b9448aa4e7cb32b53e1eddd3317

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 adbe3d53bb38e7bd3958e5089c1eab869aa2d915a0e3a93f3fb1eff131597aa3
MD5 2072c3b09280964e1fb61224ac40712d
BLAKE2b-256 3b25a7ffe7bd921c0d42b8551a3d92142e9034005e3303f639f5cf4e9edf892e

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9a0817e0e4fb197d45b9004d29899198aed3b949d35908ec205b98d9725b05c
MD5 c6281ae426e3add8a9efd4c23c1f9cbd
BLAKE2b-256 456b7161de58d3219f27b0a949634705ef73e7ae0d84866388c77ad986c07647

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 243bdd6a98173397709fbffc70b80653a09f700d11b4ae60540b1af7b573432c
MD5 a424266005e462320ca0a6620e4b1b29
BLAKE2b-256 932b0aaba2a00e81beb5295c9394c136fb315733412eb0f792bdeea8ed0420e5

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0b878c4d17c2bc2558c5f4652f33fd09020f32c087ce34415bd798f4a76021b
MD5 49968667db633b752a459a25d0f44f28
BLAKE2b-256 b2d3e671997dafddcf9d05f3842514767613a5bdd317234b7453b21f7fcd6764

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58810a4300a38de55ae42dc8d46386d6a00f321cc71c7fb66cabc24a988c1237
MD5 14d5dce7a631355cb78e64505d9c8774
BLAKE2b-256 4f0ad2f7fcb03d6fdd77b2bba2bd100a9893068860caf58b795cac032d61c32b

See more details on using hashes here.

File details

Details for the file mssql_python-1.12.0-cp310-cp310-macosx_15_0_universal2.whl.

File metadata

File hashes

Hashes for mssql_python-1.12.0-cp310-cp310-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 7660882868e895b3fbdabe9e00a6f0c0353110f3736929641e2f93ee26801a88
MD5 4228196fd5db6e18552b6231fe1e580e
BLAKE2b-256 50ff398a36f726a98bcc0ed58c92ba09366df303ed858c1571d191735537ef1f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page