Skip to main content

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

Enhancements

  • ODBC Driver Now Ships Exclusively via mssql-python-odbc - The libs/ fallback introduced in v1.12.0 has been removed. mssql-python now hard-depends on mssql-python-odbc==18.6.2.1; pip install mssql-python still Just Works and transparently pulls the driver package. Wheels are smaller and driver binaries are managed independently (#693).
  • Apache Arrow Bulk Copy - New Cursor.bulkcopy_arrow(table_name, source) method for high-performance bulk loading from pyarrow.Table, RecordBatch, or any object exposing the Arrow C Data Interface, avoiding Python row materialization. The classic bulkcopy() now raises TypeError for Arrow inputs and steers users to the new method (#665).
  • token_provider= Parameter for Azure Identity - connect() now accepts a token_provider object with a .get_token(scope) method, enabling DefaultAzureCredential, AzureCliCredential, ManagedIdentityCredential, and any custom credential from azure-identity. Bulk copy re-acquires a fresh token per operation. Mutually exclusive with Authentication= in the connection string (#603).
  • Identity-Aware Connection Pooling with Token-Expiry Refresh - The pool now keys on the security context (connection string + identity discriminator) so a connection authenticated as user A can never be handed to user B. Token acquisition is deferred to pool misses, and pooled connections whose token is within 5 minutes of expiry are refreshed automatically (#660).

Bug Fixes

  • Silent Zero-Row executemany Batches on Late NULLs - Fixed numeric array parameter binding paths (TINYINT / SMALLINT / INT / FLOAT) that left indicator slots uninitialized when a NULL appeared partway through the batch, causing the batch to insert zero rows without raising (#702, issue #670).
  • SQL_WVARCHAR Output Converter Applied to Non-String Columns - The legacy SQL_WVARCHAR catch-all no longer runs against INT / DECIMAL / DATE columns. Registering a single SQL_WVARCHAR converter used to mangle every non-string column value; the fallback is now gated on str/bytes mapped types, matching Row._apply_output_converters (#692, issue #691).
  • Integer-Keyed Output Converters Now Fire - Connection.add_output_converter(SQL_DECIMAL, ...) and any other integer ODBC SQL type code as a key now dispatch correctly. Previously the converter dictionary was keyed only by Python type, so integer-keyed registrations were silently stored but never invoked, diverging from pyodbc and from the driver's own documentation. Integer keys take precedence over Python-type keys, and SQL_DECIMAL vs SQL_NUMERIC are dispatched distinctly (#690, issue #684).
  • RecordBatchReader.Close() for Arrow Result Sets - Cursor.arrow_reader() now returns a wrapped reader whose .close() stops fetching, releases the server-side cursor, resets cursor state, and leaves the parent cursor usable. Supports idempotent close and context-manager usage (#644, issue #643).
  • AttributeError on Partially-Initialized Cursor Cleanup - Cursor.__init__ now sets self.closed = False and self.hstmt = None before any code that can raise, close() defends with getattr(self, "closed", True), and __del__ uses the correct sys.is_finalizing() guard, so half-constructed cursors no longer emit unraisable exceptions during garbage collection (#646, issue #642).

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.

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

Uploaded CPython 3.14Windows ARM64

mssql_python-1.13.0-cp314-cp314-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.14Windows x86-64

mssql_python-1.13.0-cp314-cp314-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mssql_python-1.13.0-cp314-cp314-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mssql_python-1.13.0-cp314-cp314-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

mssql_python-1.13.0-cp314-cp314-manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

mssql_python-1.13.0-cp314-cp314-macosx_15_0_universal2.whl (7.8 MB view details)

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

mssql_python-1.13.0-cp313-cp313-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.13Windows ARM64

mssql_python-1.13.0-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86-64

mssql_python-1.13.0-cp313-cp313-musllinux_1_2_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mssql_python-1.13.0-cp313-cp313-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mssql_python-1.13.0-cp313-cp313-manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

mssql_python-1.13.0-cp313-cp313-manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

mssql_python-1.13.0-cp313-cp313-macosx_15_0_universal2.whl (7.8 MB view details)

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

mssql_python-1.13.0-cp312-cp312-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.12Windows ARM64

mssql_python-1.13.0-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

mssql_python-1.13.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mssql_python-1.13.0-cp312-cp312-musllinux_1_2_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mssql_python-1.13.0-cp312-cp312-manylinux_2_28_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

mssql_python-1.13.0-cp312-cp312-manylinux_2_28_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

mssql_python-1.13.0-cp312-cp312-macosx_15_0_universal2.whl (7.8 MB view details)

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

mssql_python-1.13.0-cp311-cp311-win_arm64.whl (4.1 MB view details)

Uploaded CPython 3.11Windows ARM64

mssql_python-1.13.0-cp311-cp311-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows x86-64

mssql_python-1.13.0-cp311-cp311-musllinux_1_2_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mssql_python-1.13.0-cp311-cp311-musllinux_1_2_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mssql_python-1.13.0-cp311-cp311-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

mssql_python-1.13.0-cp311-cp311-manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

mssql_python-1.13.0-cp311-cp311-macosx_15_0_universal2.whl (7.8 MB view details)

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

mssql_python-1.13.0-cp310-cp310-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10Windows x86-64

mssql_python-1.13.0-cp310-cp310-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mssql_python-1.13.0-cp310-cp310-musllinux_1_2_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mssql_python-1.13.0-cp310-cp310-manylinux_2_28_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

mssql_python-1.13.0-cp310-cp310-manylinux_2_28_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

mssql_python-1.13.0-cp310-cp310-macosx_15_0_universal2.whl (7.8 MB view details)

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

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d2b6cd6accb4827a38f7b36a4ddbd69bd5f38e679842987815d919695e04d52e
MD5 f151e49620228bf92821392ae1c38bc3
BLAKE2b-256 a422f6fc01de9f7360f3f7147f5d0d08659c03bc6e68f387a1be19fde9fabd79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5a462d3285bcf1fbe133b2e902e9c6303a9cbd1d54d44e405cfdc1a0dcf30542
MD5 a57bdaab39701b1bc77b69654b2635ab
BLAKE2b-256 f44544659baf032627928d2f88b7780e57396ee19f41e4eda7f1e814f57e74d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12fd37d5e7b2d0b7767fd7ce1b797e1cbad1f666efa39df9c126b0f9f589655e
MD5 f76ed49f948cda4bdbb11c1cbcaf2162
BLAKE2b-256 203ae133c1190737ea08ab28f398bb087dee04194dec042efb3a993d8c1276d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a600ed0a371a68bba89756084ebdebe7e98d571ea2d9f834542ee75be424ae8
MD5 54cf44dd85abff5d0effc4d6221c9aa2
BLAKE2b-256 457ee1658be47f4142d9c5bcca8f61a955a51ba4cda6502ffcad7f9af5082ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b0e65f61316f27375fd55ddadd0545e2c3edecdaa03526b9f560fb9cd57a776a
MD5 0749b83fb681fa8e4dfa410f1405e424
BLAKE2b-256 876bca89b7704cd634c9415a9c0066ed5e105e855e956808af173306813bfe31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2e7bf85116ef419f88f2ae28a1ca724954112ba07b69ab4591a227d335b96ff
MD5 79926c875bc61317435f32d85d86effb
BLAKE2b-256 2a31b9686b9a1ca152203708287ea9d5ae8d6ce887adbfe12ccf7fecea0d6130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp314-cp314-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 f1af49fba21ec2c509fc1a4c0ee8617fb7d9111af355d18b644abb4583824d35
MD5 2d0c0ed6aa8961fc658f6f78b9287fb0
BLAKE2b-256 8edda61e1ffaeddb390440255314c32448cf88a34d1c45a370ae76e5cf8fb150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5dae084d68cb488a876cbf110883b2a0e30e2b14479281d972f737637d2579cc
MD5 4a31ded0cf545826d5e46949a33ceabc
BLAKE2b-256 2e877e464b2ad5dbde68a5d0dd35930c27d858d5f68d1d1aeb19f63ed47adcd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5a0a113670262b5b8fd8fb91f24406492c360f866318999b45c418fb90dda312
MD5 09c73b87950a2f4bbf5e1038d4ed47d8
BLAKE2b-256 b171f0a0cc12c1f532ee4a736ca09306eef931a858189079a15ccf0ef41a0f25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67130a36b8d9adc83c42032d4d9a135abd8e5a532549c046355a8a7d4895cef7
MD5 cf0c641b8437c2baa33a79751543cd49
BLAKE2b-256 5b7921bca279f185668f51b1c03739dc9841b6e4714f27c5ac19e46471e021f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f9eb742b561514cbbcdc889e50beaad735f23d9ca36ac825aa428f6d04a161b
MD5 d583f08658bec729b5b9c6f2d61c8a5b
BLAKE2b-256 f7def251f5f23ac6857ff425af9fd71479021d30f122526890ee703a61f337f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6309fbd3aac5bf7ecb4eb11de2ebf9d2bc4e6db6ca859ef7f576de7a0bba26f7
MD5 e83c2ea90e9e378556d526241b735ad4
BLAKE2b-256 8bbdaffccf154f6923b0c04f9a0f34110e563b708112280ca59f87dc4b515bd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f3a23a1cf94aa8d892a00c475034edfdbc611b3d427152e980eee32b1a9f3ff
MD5 29a0e922b405af7301afb6364cb1f0e1
BLAKE2b-256 a9cbddf60e132a6f120e0d6e2631a0a1fcba552fbef181591a36ab28e67c2b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp313-cp313-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 af65465c5280c3b26fdd70c32af0a2bf09b936205590f05d13e7b393c8dda537
MD5 e00b77168ce25602f3d43bea9eae09ad
BLAKE2b-256 0d7a8dd9b6e9c8f37a5f78979ce1cbdf2c23c33bac4533ff72bbeaf9fb0c3275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a29f95b40deab2ccf2af7f411b195c1f1df1dd20caee4f246fc03f7a7dcb815e
MD5 32182a8252dfc6b739dd22416bd08190
BLAKE2b-256 565266e8ce79d4c03c23d02f3becdf992d6b6691f16ff721815904f3af694e28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 080d6df3803ff93453a0ce8268b89c83494daed5bed47ba41697d0eaa0b4bd2e
MD5 0e97cc20edce271d81a6c2d05f27d6f6
BLAKE2b-256 1e4c8f7e14274ae3fa83156e6bf0e3a5bceb64b6323a39d694d2481cd1bc8b64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59c76e73a0ebf09e370715aa25ba306de558f05dea8bc0ab27a0701e6392ef91
MD5 077b4d20025842b8940cc9fe92a97056
BLAKE2b-256 515c725fecdeec1a9265b00adfc65794ad3935e3e2be5f705f767a5663f1c22e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75046ba14ac22edd364d94dbc19af8ffba2c20d9b54dc47a89306c3a061a9ad7
MD5 cab4ea7d1b8254f5ae4d9165e7c45cd2
BLAKE2b-256 d16a0b750587999c77550a3d0c74316fc93e837bffa2db812c95e88aed77990e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e2d259ba71a693c5cfc7dcb8a20e88dca0c7e02ebc6d7f87eb85804d5587ccb
MD5 abfec400b8e660f0ca59c88968604375
BLAKE2b-256 bd898fb42cb4e5d9ac2164ca3401a054ccf9dd6ec59d6f80ce990a1397ee547e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4202f8f57426fea2961852544e95c9a2c27b548779fe41fa485162cca4870aa
MD5 d292ce339e896ac3c0de451e55f6607c
BLAKE2b-256 55ae08c1fa88605aee57d2d1e35f40e69d616735b0345f5795db3bee6070e660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp312-cp312-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 77e4807917b9ca23027aa4fb65814796db32b9b1cca42263725c65d1e831ffac
MD5 4daf1c86fec89f422bb0cdd27e7dbaf8
BLAKE2b-256 d920eb5fe0ed1ae86364f243c5ea67644b56629247ea9bd5fadd10aecd5a5da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9198d29e8b7121f5ea7d24a2a5c554ecb4272f13841c7d2c01ebf2748a5b05c5
MD5 e6e0d2f7558329db5ed9a1aba58d4785
BLAKE2b-256 db80fe254673c2fd0adc328af0db82f32567aa0fc6b881d08fa0b79274f508a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aeae8b14ec34fecb15628bf02d83942e664c79a3cbf9bed68353da87e1aa7eda
MD5 15aa0423facfac0c06e8c2b680bbb3a2
BLAKE2b-256 bed70baf7b8893c2e6b758b5ae42a74dfa322609a61c4ad096291e5b8cd1f990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d07acc503b38c0d2742146e70c9de17013270c5aeb9ae5927b79415d33748c0c
MD5 e022d91a7db1abbea532450a269bf444
BLAKE2b-256 b6a5cea90b75af567eb96a0e0d18f2d1f8d4dd69daa812607ece53245142a746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1014a070062563918f3a209efb479778e197d4f215c30312a54a35e59ace1863
MD5 bb45f6ded7d1854ceb4fe63242679bb6
BLAKE2b-256 bb3944073724be7f17796a5351b93b9d5c22a8bc3c40e635a0e79ebcd2a67383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6f95504b640a765f9df307130a710d30c7ecdec8e5c721a71056dc505650580
MD5 388f48a9eac0f423a7925bc079cafc20
BLAKE2b-256 9853fa737ba7b4b54cb20ae610257519e65cad74ab9902d75a1015fabbb994ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c25ac708aa60bb1cfd5801518b8d0bba708199001e19daa7395db38df231ebde
MD5 ff1ca2e206262bff7e27338af002c3db
BLAKE2b-256 0caa3058a8807af5306614f9bf56e2391770289f801a8bc7cb6822f72d76d5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp311-cp311-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 cb5fffe2658d6e61b1e8eb826540ebe766d49a76bad23b7ff7e1cb3ba398ba30
MD5 5b4cdfdd21354316b2deb8a8927915e3
BLAKE2b-256 bd5f15351b0b33eb10d654116fd8c434841acd7a64da10803a4a4f726ca460f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9037bf7a34a45655bd5e63bfccd287ef5504b20a2b62eb238dd442a7cb205672
MD5 43514cf9a1bb3ed605cdfa8d45db3dfd
BLAKE2b-256 651de6e74842c6fa1cf8e96f21fca08f2e6161e1edb600775b9b4877c952dded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fec3e90a5efbc015023ac7b0b285f7c1e04b3f3a8a763226286c235a4765003f
MD5 b982780766faac368b2dc8b94a850745
BLAKE2b-256 07bd41cda3e90cef36b5270a09aaf1833bb55374f7e2cd92aed0a01009fe1b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35a70b18e748297b20e49f7b8bd194c543f984912101d6824156a9ae08789bbd
MD5 f765d687e94c555256c0132cfd148639
BLAKE2b-256 58c0c54af965bc86ab17579888c948a020ca139bd3d253f0024bc72fb1e65115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d63f626b35e6365103b4b53a729f59dd3d3efe99e71fdeba38c730efd4677a4
MD5 6266d797a05ee7d4736801516cc16d44
BLAKE2b-256 6dab3ecc59228a8a33b2afdab2ab8ef688d8c91ce30fb9390e38971fc6afa478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6539aca7751341a2ce50d8a243d0d8b2b2442d24f0143e2d3732d9fcb39b5ed
MD5 61503f378187a0b6106c66efd32a82b8
BLAKE2b-256 3748848cde0be38bfd566c5f591f5af704c1d78ce9d0cd532318d5779209e9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mssql_python-1.13.0-cp310-cp310-macosx_15_0_universal2.whl
Algorithm Hash digest
SHA256 051de765e907caa06e9fe29371e34007e056d0e51a8b77ab88ac6b86bcca277f
MD5 3107f161a8ddaf954646e22dd30a1e0d
BLAKE2b-256 6e3950d2aac306068cbfb176504809d2a98147d221bbee9cb153b9855118d9e1

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 Sentry Error logging StatusPage Status page