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.7.1

Enhancements

  • Platform Support: manylinux_2_28 Build Targets - Added build targets for RHEL 8 and glibc 2.28 compatible distributions (#548).
  • Platform Support: macOS universal2 Wheel for Python 3.10 - Now producing a universal2 wheel for Python 3.10 on macOS, enabling native performance on Apple Silicon (#542).
  • Performance: UTF-16 String Handling via simdutf - UTF-16 string processing now uses simdutf and std::u16string for significantly faster encoding/decoding (#526).
  • Performance: Optimized execute() Hot Path - execute() gains soft reset, prepare caching, and guarded diagnostics for reduced overhead on repeated statement execution (#528).
  • Documentation: Azure Linux Installation Guide - Added installation instructions for Azure Linux (#567).

Bug Fixes

  • Login Failures Now Raise Correct Exception Type - Authentication failures previously surfaced as RuntimeError; they now raise the appropriate mssql_python exception type (#562).
  • GIL Release Around Blocking ODBC Calls - The GIL is now released around blocking SQLSetConnectAttr calls (#568), ODBC statement/fetch/transaction calls (#541), preventing thread stalls in multi-threaded workloads.
  • executemany Decimal Sign Change Fix - Fixed a RuntimeError in executemany when decimal parameter values change sign between rows (#560).
  • CP1252 VARCHAR Encoding Consistency - Fixed inconsistent retrieval of CP1252 encoded data in VARCHAR columns between Windows and Linux (#495).
  • BulkCopy Empty String in NVARCHAR(MAX)/VARCHAR(MAX) - Fixed cursor.bulkcopy() failing with SQL error 40197/4804 when any row contained an empty string "" in an NVARCHAR(MAX) or VARCHAR(MAX) column. Fix ships via mssql_py_core 0.1.4 (#559).

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.7.1-cp314-cp314-win_arm64.whl (19.1 MB view details)

Uploaded CPython 3.14Windows ARM64

mssql_python-1.7.1-cp314-cp314-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.14Windows x86-64

mssql_python-1.7.1-cp314-cp314-musllinux_1_2_x86_64.whl (27.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mssql_python-1.7.1-cp314-cp314-musllinux_1_2_aarch64.whl (26.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mssql_python-1.7.1-cp314-cp314-manylinux_2_28_x86_64.whl (27.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

mssql_python-1.7.1-cp314-cp314-manylinux_2_28_aarch64.whl (27.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

mssql_python-1.7.1-cp314-cp314-macosx_15_0_universal2.whl (28.1 MB view details)

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

mssql_python-1.7.1-cp313-cp313-win_arm64.whl (18.5 MB view details)

Uploaded CPython 3.13Windows ARM64

mssql_python-1.7.1-cp313-cp313-win_amd64.whl (15.5 MB view details)

Uploaded CPython 3.13Windows x86-64

mssql_python-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (27.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mssql_python-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (26.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mssql_python-1.7.1-cp313-cp313-manylinux_2_28_x86_64.whl (27.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

mssql_python-1.7.1-cp313-cp313-manylinux_2_28_aarch64.whl (26.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

mssql_python-1.7.1-cp313-cp313-macosx_15_0_universal2.whl (28.1 MB view details)

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

mssql_python-1.7.1-cp312-cp312-win_arm64.whl (18.5 MB view details)

Uploaded CPython 3.12Windows ARM64

mssql_python-1.7.1-cp312-cp312-win_amd64.whl (15.5 MB view details)

Uploaded CPython 3.12Windows x86-64

mssql_python-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (26.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mssql_python-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl (25.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mssql_python-1.7.1-cp312-cp312-manylinux_2_28_x86_64.whl (26.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

mssql_python-1.7.1-cp312-cp312-manylinux_2_28_aarch64.whl (26.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

mssql_python-1.7.1-cp312-cp312-macosx_15_0_universal2.whl (28.1 MB view details)

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

mssql_python-1.7.1-cp311-cp311-win_arm64.whl (18.5 MB view details)

Uploaded CPython 3.11Windows ARM64

mssql_python-1.7.1-cp311-cp311-win_amd64.whl (15.5 MB view details)

Uploaded CPython 3.11Windows x86-64

mssql_python-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (25.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mssql_python-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl (25.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mssql_python-1.7.1-cp311-cp311-manylinux_2_28_x86_64.whl (26.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

mssql_python-1.7.1-cp311-cp311-manylinux_2_28_aarch64.whl (25.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

mssql_python-1.7.1-cp311-cp311-macosx_15_0_universal2.whl (28.1 MB view details)

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

mssql_python-1.7.1-cp310-cp310-win_amd64.whl (15.5 MB view details)

Uploaded CPython 3.10Windows x86-64

mssql_python-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mssql_python-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl (25.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mssql_python-1.7.1-cp310-cp310-manylinux_2_28_x86_64.whl (25.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

mssql_python-1.7.1-cp310-cp310-manylinux_2_28_aarch64.whl (25.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

mssql_python-1.7.1-cp310-cp310-macosx_15_0_universal2.whl (28.1 MB view details)

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

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6a9d2aed556a4a4c01c0ba02f19671020bbf5b268bd9eb3546bcbe2b9ef07201
MD5 3d60d02100909c670af14f7c79def43d
BLAKE2b-256 2d76ee2787ffd725e2c58370b73b55c8c8840f688f6cb534e39e14c2e7798511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a4fc35cc1c3de6f7741334f76fb81a682daeaefffa33e7cf6a3b69766254d910
MD5 84ad6c21ae64fc2cfc6f74b17658215c
BLAKE2b-256 56bfb582b9f8b6b39b414491a91835e475af839a99933b16e612d25b94364090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77f50558171f01b5d26e83ca55fd6253a241a63f053ea36b76614328be3bafb1
MD5 fa2b537d6daac39a917f0cdb9a3edf72
BLAKE2b-256 ac13f50469590ac8b7ffbbbd9ef062ec75d6926c93df949b05f2dd1d398f778c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6013180e2b5f252f5f7dc3008c6964482c14e50d263dd55d883f9c93f8cbc22
MD5 6faf70b173f6b6eba57e8c1a95697f6d
BLAKE2b-256 e87d7c02637f3c85536f1694b102a2733277b81e9db9cf96739d62be79ebd7bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d372e9d4bbad8b89d4b0154dbb9a3e6a4b8e473b88449842d75bf426199f008
MD5 1154e523496bff4276373ecee588456c
BLAKE2b-256 da2454a301d1451e61af98f25d60f7f89345b93d7debd8dcfd112998312b844e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a47f76f9927d65e0978ce7683049a2f481fdbbddd6d314ce9253fdc8236ebbae
MD5 551cd37d5536e13c8aec3b78c221a196
BLAKE2b-256 d4df83be720f21a8e7e3a449012cfbc1b4cc3e306c0c062ad6bb2ce5526e8704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp314-cp314-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 d31a6c815c8a3709fc1f5b59906376b63844c085b5cd0f93ca451be1db82438d
MD5 2f8d62dbbe9fdaf474e53ecd19a514dd
BLAKE2b-256 89d92c94c1bee748b71cd84d6a2e520890dbd40fb8a25cd0c74f4290dad300cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 89580a585d4309111968c76c5af7bd226c881c786c92f22eaed5586ddacf4aaa
MD5 e283c6af20053d50c3b43bb9f55fedad
BLAKE2b-256 d557d9f43b228c863df962fe1375ecb9b1a26782214fff77cd78692203aaf473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 31a404e73bd49dd6566ef6fb7deb7a90e5fa2eb60cdb89232c388af9ea83d8fb
MD5 1aeb3a207a4a548b1ae89c189010791b
BLAKE2b-256 5ba9cbac3dc17300c17dc2f1c4251fadfed8f337f5dcc8afb270ee847d58a80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d4a2794e692ff598666203e93759182e941f7d7751be370924f94fd97b96bfd
MD5 b0c7ae71f25be1de22e6580828926372
BLAKE2b-256 7e21732aadf20f2ec168af8a04c44b93d8a0dd208926458da1edca5a62f207a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77d4c1bc4de3b5b95a16ce581de8e1629cb5709078e622821b8cccafaed0bca4
MD5 ed5fbd0a4c468283ded7eec8de983d5d
BLAKE2b-256 149ec7a32a874d0bb06f41bdbe9aa929c7e922c1af0a642d70114b9b28f196a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2199e61c410cc14a1d17738b1d0f4187120abad8c9c7d5c93f71c3b0d54f1379
MD5 2b586f9954b0cb420c706d43570a4fb2
BLAKE2b-256 1b43bb574707a4510787a98d1fc4b0b0a959c30677136dfbb9c04bd9235a9e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e27aa83b16564dd2bd93d78531cffa07558b5c721c144b5ce30bd39670a77d3c
MD5 7bd9c2bae77070dad01818b7ad644fa6
BLAKE2b-256 7a1aa7a67b21290bc9abc4e44dd1fd3010a9017f0c9076084642772b6ccca2cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp313-cp313-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 b823a42226977b26d599f37b265d3fde9a3c26338c1f6849fdd5160428a48886
MD5 6b189a3032cd1f2c44309afecb390976
BLAKE2b-256 a0cb3fccc5d85fb50bb9691c041dd47a16125003f4131872f6ab4ff918c4e039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 45b02a8247062f5bc84b2233df81b3f56a12e711c65159053dc426102d2b459e
MD5 851c3c635f36ed067ac9c4f594df9333
BLAKE2b-256 3ead8a2d579bb4e6613ea5fe391a16d3fff3c1de169c27949df623de7b314327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 26fe105bdb73561e2b19011d75fe0832243d440ab200519c1658924a7485379a
MD5 c1be9cc048655d602bca43c1def0855a
BLAKE2b-256 057730812559f61dc404090793c38aaec07d508598d0f1ceb594d914fecf89aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa551d6a907614936c25c50e964580cad492b970b1f4ea55802a2420f3e50fb3
MD5 d3f0f8b254cde9ae8ee9ed12e5dfe2bd
BLAKE2b-256 3385ce43969245bc0cf794bdaa5d5425927f4531b17bfe35cf04f9fb7c44a8ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12a0da62dc7972980586b4636febac6281040b0a7c8ec07bd2983448bfcf586e
MD5 ef72c4f9c59c0693552e4e7d4c4066cb
BLAKE2b-256 55353c8d799a24392ccdb903582f1788968f8b19998e514f666d4891af452044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc1dcde69bac5b90193e37cd7b3a193dfb41cdfeb4460643dd8adc2d312ffefd
MD5 2859b18de18a343f9f6646e102b9f573
BLAKE2b-256 c6f4137e7711db057bd5ab6c9d70c1e2b10385427a7450d4754526bf11926667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32af320f29d32dc34489650e94d16fad5f0e7affb9ecdc229ef2612a45a48645
MD5 249bd8f41a0af38a0cb1df71b3635c29
BLAKE2b-256 e956b9c327625fa6ab524da866683eab80957bc7c57ed0200e5aaad2b0add0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp312-cp312-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 3d4281657a3cac35b8fae031fa8d4b94d19d2e39749158a58af7de6891ae81da
MD5 7e0ab267752bba7103364ead344b4da3
BLAKE2b-256 c84c8a4d582f16faa63fd73676048c0dac381a8c629ae049d47ff6e5f821c0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 95fe46716f50092014dba582d783759491f298245a572b42374ee5dacfea3e37
MD5 19638c099828ca3c4176e1c6545dd007
BLAKE2b-256 2d777382591d5d3324425b32377f5b4a5ebef57fae0d6d3f750cac0fa5dfbd70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c544700c17d0f475499f685fb1774f00891110606158b9276eb79438d60d92a4
MD5 d87bd47ab26a6175592ad6c96217e45c
BLAKE2b-256 e453601fecc8ebfa946ad1eee1bcb96b6850ad9ff8b4ffb24bcc7a055311c579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcf2e249806c4880c0be0eb341d71ea0908fc4ba9b2892bca39fc73d7b80c6d9
MD5 0b7d4f7d414a88e9b0348bda5688b44c
BLAKE2b-256 4b0e979aa615a653b1e80eed1b6a90f4c14fb0e12b163df41bbbc7318d9b4417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12415b09920397f0c34e070ffddac5cee263409fa3e995e532f7667ba837c78f
MD5 9c7a0c6c6b617a412eb54e432c16816b
BLAKE2b-256 cbcfb278405e118cd3377ca7406934e02a5bf07a82413813fa2430a198cbe1bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43d6953be8439331ae7e5ced93b969a36e9daa34ec54fae94e0efab8b5f797a6
MD5 474fd74d9e3c749c2f210237892f3d22
BLAKE2b-256 94ebf37ba9771626be8727f39f02c1f313e223a0f8458a82b7daf5ca8c9403df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 521cde6b60b5cf7cb21df78550d9c39a5625f0f9daf083ebd4e49ff40c25a620
MD5 c83fbd3950f5ef10fb06b904a6d1d59d
BLAKE2b-256 afea899798a996456988cbe5c00d432e1a10a33873f5db0e6575a1447e6e1472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp311-cp311-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 9d2f70c39cf3ba449c4288f459a97ed981cbbb690741ff2c923c4692c8927336
MD5 bed0a7f3934520ddcfaf847a7aea27d8
BLAKE2b-256 fdd1435b395c33c85a207357684546a47e29b8d2a47561a3e50bfbcfa4705e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1b7c6f0d87289aaa848ac4ffed58a912f20b3e5ac797625b2b3ad6b29da420e7
MD5 23b90d792d24f56fabf7e20fd81d7045
BLAKE2b-256 ac9cd6e5a91e80db6daa875372a553c33bf6a39b036a5e7e277c747caafe4170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b6699a23cb02134c9b74b1d739bbfed311467587eb36a851d7ef83d9542af71
MD5 2eea86fd6479a15b8f721f392aa8209a
BLAKE2b-256 91e86dd2b34273c7d4fc05007a2a8fdc2da4d79870bfd1f7d6b6df3022c34853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92bb73fe9dc0ce24a130ea357f2eec393118ebfa469ecfc8b829e7efccbc7794
MD5 3a58d860255510c6f59ebf533bb4c16d
BLAKE2b-256 2825b22db4241c084bf42c601b87dd94cb23c5da1da1c72ef5c0166dfee68003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1807269903ebb7c61a16a773ccf2f6faae6dd65e181802b28b9b11ea4b04c541
MD5 f2a2ee751e268f1e98e3c8cbe7b0be03
BLAKE2b-256 a561d3f15c2adbc6f2efe093981f703ca5b3d826c22a59fb8742d2a647968a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae667e8a716ce5ed21bdb5b1377bc5889addfc4e93b3c19c2924fb35f942f4aa
MD5 5d3ddff0e65dafb749829d003176c8f9
BLAKE2b-256 5cde9237817b6192f4ffa5cf7f0e6673d22cba38eabc210b444a9ad8cd51adf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.7.1-cp310-cp310-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 3208a49455bb99ea0dbd15dc18855feb755c4c74257d39a49722eb294220a1be
MD5 d6d0ea61016c6e3b503ee118ac3f23c5
BLAKE2b-256 0d4610560fd47990859ee3e02970fc8a03c76f88136b81f9dea9b38b3f89749b

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