Skip to main content

pymssql - DB-API interface to Microsoft SQL Server

https://github.com/pymssql/pymssql/workflows/Wheels/badge.svg http://img.shields.io/pypi/dm/pymssql.svg http://img.shields.io/pypi/v/pymssql.svg

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.

Detailed information on pymssql is available on the website:

pymssql.readthedocs.io

New development is happening on GitHub at:

github.com/pymssql/pymssql

There is a Google Group for discussion at:

groups.google.com

Getting started

pymssql wheels are available from PyPi. To install it run:

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.

Basic example

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.4.2 - 2026-09-26 - Mikhail Terekhov

General

  • Fix deadlock in err_handler (#1002), thanks to sergiopmscope.

Version 2.4.1 - 2026-09-07 - Mikhail Terekhov

General

  • Fix socket resource leak on failed connections (#1002), thanks to gintsmurans.

  • Enable free-threaded Python 3.14 wheel builds (#1004).

  • Add wheels for Python 3.15 (PR #1016), thanks to edgarrmondragon.

Release files for pymssql 2.4.2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pymssql 2.4.2
File Size Uploaded
pymssql-2.4.2.tar.gz 209.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymssql 2.4.2
File
pymssql-2.4.2-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
pymssql-2.4.2-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
pymssql-2.4.2-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
pymssql-2.4.2-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pymssql-2.4.2-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
pymssql-2.4.2-cp315-cp315t-macosx_15_0_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 15.0+ x86-64 Details
pymssql-2.4.2-cp315-cp315t-macosx_14_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 14.0+ ARM64 Details
pymssql-2.4.2-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
pymssql-2.4.2-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
pymssql-2.4.2-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
pymssql-2.4.2-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pymssql-2.4.2-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
pymssql-2.4.2-cp315-cp315-macosx_15_0_x86_64.whl CPython 3.15 CPython 3.15 macOS 15.0+ x86-64 Details
pymssql-2.4.2-cp315-cp315-macosx_14_0_arm64.whl CPython 3.15 CPython 3.15 macOS 14.0+ ARM64 Details
pymssql-2.4.2-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
pymssql-2.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
pymssql-2.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
pymssql-2.4.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pymssql-2.4.2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
pymssql-2.4.2-cp314-cp314t-macosx_15_0_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 15.0+ x86-64 Details
pymssql-2.4.2-cp314-cp314t-macosx_14_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 14.0+ ARM64 Details
pymssql-2.4.2-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pymssql-2.4.2-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pymssql-2.4.2-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
pymssql-2.4.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pymssql-2.4.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
pymssql-2.4.2-cp314-cp314-macosx_15_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 15.0+ x86-64 Details
pymssql-2.4.2-cp314-cp314-macosx_14_0_arm64.whl CPython 3.14 CPython 3.14 macOS 14.0+ ARM64 Details
pymssql-2.4.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pymssql-2.4.2-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pymssql-2.4.2-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
pymssql-2.4.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pymssql-2.4.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
pymssql-2.4.2-cp313-cp313-macosx_15_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 15.0+ x86-64 Details
pymssql-2.4.2-cp313-cp313-macosx_14_0_arm64.whl CPython 3.13 CPython 3.13 macOS 14.0+ ARM64 Details
pymssql-2.4.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pymssql-2.4.2-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pymssql-2.4.2-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
pymssql-2.4.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pymssql-2.4.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
pymssql-2.4.2-cp312-cp312-macosx_15_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 15.0+ x86-64 Details
pymssql-2.4.2-cp312-cp312-macosx_14_0_arm64.whl CPython 3.12 CPython 3.12 macOS 14.0+ ARM64 Details
pymssql-2.4.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pymssql-2.4.2-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
pymssql-2.4.2-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
pymssql-2.4.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
pymssql-2.4.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
pymssql-2.4.2-cp311-cp311-macosx_15_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 15.0+ x86-64 Details
pymssql-2.4.2-cp311-cp311-macosx_14_0_arm64.whl CPython 3.11 CPython 3.11 macOS 14.0+ ARM64 Details
pymssql-2.4.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pymssql-2.4.2-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
pymssql-2.4.2-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
pymssql-2.4.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pymssql-2.4.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
pymssql-2.4.2-cp310-cp310-macosx_15_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 15.0+ x86-64 Details
pymssql-2.4.2-cp310-cp310-macosx_14_0_arm64.whl CPython 3.10 CPython 3.10 macOS 14.0+ ARM64 Details
pymssql-2.4.2-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pymssql-2.4.2-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
pymssql-2.4.2-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
pymssql-2.4.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
pymssql-2.4.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
pymssql-2.4.2-cp39-cp39-macosx_15_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 15.0+ x86-64 Details
pymssql-2.4.2-cp39-cp39-macosx_14_0_arm64.whl CPython 3.9 CPython 3.9 macOS 14.0+ ARM64 Details

Total release size: 199.6 MB

Release files / pymssql-2.4.2.tar.gz

Download URL pymssql-2.4.2.tar.gz
Size 209.5 kB
Tags Source
SHA-256 checksum
How to use checksums
f0f7e2fffc25de6ec7f56551c91afa7981644ffc9c4d2d9c2a19ef4890797b67
BLAKE2b-256 checksum
How to use checksums
19ae44c335d6d380dc75da6fb47c15cb90ba2faa3016237817f7ec193ebc8824
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315t-win_amd64.whl

Download URL pymssql-2.4.2-cp315-cp315t-win_amd64.whl
Size 2.4 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
cf960b137f6ff411ff8a2b289daec6f8d13a50820b75e6942ee81b2e28046c4d
BLAKE2b-256 checksum
How to use checksums
47cec42fc1d9dc12116e9fdc7a1609809fd25059546791fe45408e9976eb0cd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL pymssql-2.4.2-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 3.5 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
eaf2cc76ba16375f8df95ac16cb76e1d55696e0be4960953e2a6122741a2e8b2
BLAKE2b-256 checksum
How to use checksums
106dfd0b85b68fa587254b74c5dc67f395d6b6f0bf3c1199eb0115873e1da85e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL pymssql-2.4.2-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 3.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4bfbb6bf5313e0278afb0ebd609f9a052ac5816ac170a7d06d14c867df18aff4
BLAKE2b-256 checksum
How to use checksums
70f96e38131b7a618ccb7d96ccbd7d5a21ba60f4029524f98ba7019948a6c6ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pymssql-2.4.2-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2698ce5ae14bfede29e8b025946f76ef0abe207f0fa726e74011b11bb00dd248
BLAKE2b-256 checksum
How to use checksums
67371be61d48ace07c4cdc2f19e81bcb814b78fa5d862b3ba3eb1bf7be0a610a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL pymssql-2.4.2-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.1 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b5ff8e0f4dcf317e462e1094fea1c62118594c5496bb12d621a641b062c5f8d2
BLAKE2b-256 checksum
How to use checksums
8309e467880baf373f3f8fc2ef3c3e8123eaa2225f5a6e936f4e4c74345b073d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315t-macosx_15_0_x86_64.whl

Download URL pymssql-2.4.2-cp315-cp315t-macosx_15_0_x86_64.whl
Size 3.0 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
9e1063f3e319baba3ffe6c6f0c64ebcdd3438347a787fa7b14326e6b00fa6a3c
BLAKE2b-256 checksum
How to use checksums
48fb48b47d2f65c024f000418baec8ad4eb39e201c8d146a44e18837a01883fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315t-macosx_14_0_arm64.whl

Download URL pymssql-2.4.2-cp315-cp315t-macosx_14_0_arm64.whl
Size 3.2 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
1c4f473420a17764e61ace8498d2190df6cba1120e1fbcf2414819bd392dd5cb
BLAKE2b-256 checksum
How to use checksums
d48e25c33f91108c037a8d893c6d0483478095d50a9dd690c3ca4ad2309acbdf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315-win_amd64.whl

Download URL pymssql-2.4.2-cp315-cp315-win_amd64.whl
Size 2.4 MB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
f497b6f917983890e842180762a5925c1983036395fafee4ae7dcf4db270f53e
BLAKE2b-256 checksum
How to use checksums
e4ea19793256603c96f63a666dcee804812c459c73692a79a04f6b60279fe2f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL pymssql-2.4.2-cp315-cp315-musllinux_1_2_x86_64.whl
Size 3.5 MB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7ffedac5cd70d4d2767d30f4c90f210757f49eda9e8b87a254f5e79be19129d5
BLAKE2b-256 checksum
How to use checksums
5bd9e97641fd79c1e1e50f2eb4481623f53fc8b49aedc4f7b8ccc4e097b8d2de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL pymssql-2.4.2-cp315-cp315-musllinux_1_2_aarch64.whl
Size 3.7 MB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7d1418b9b13c1c78b5ae0b52174e48d49021f7923bbc6fca8f57f22093dc756a
BLAKE2b-256 checksum
How to use checksums
669f6f639086c6438e2613a6835cd99a852efd4cbedd36b18170eb368b62b1cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pymssql-2.4.2-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.15 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
afc14d099fcab4242922350f753acd35f1ee24ad64695ec8f1676b29ddcee63f
BLAKE2b-256 checksum
How to use checksums
29315a8f1d2394669f1b4afb3f55701dc59563d7b07184f00216cf49757e3bd8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL pymssql-2.4.2-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.1 MB
Tags CPython 3.15 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a7a0016dd896a4c80e9dbcad9dae3197fd3cebed8bea43d35fc7c9f57740e33f
BLAKE2b-256 checksum
How to use checksums
498df3d99ec233a8c029919c12b1c0d6cc8e21eaab959ad16f4221b96773b11d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315-macosx_15_0_x86_64.whl

Download URL pymssql-2.4.2-cp315-cp315-macosx_15_0_x86_64.whl
Size 3.0 MB
Tags CPython 3.15 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
655d0d1215672604d2b8400a7a1af29c6d84a45a87fc8de68c9de74208983a7e
BLAKE2b-256 checksum
How to use checksums
d0f3539159d5fa09a3540ccb387157b6255ff1d487a5df3a53b2a9d11496d10e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp315-cp315-macosx_14_0_arm64.whl

Download URL pymssql-2.4.2-cp315-cp315-macosx_14_0_arm64.whl
Size 3.2 MB
Tags CPython 3.15 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
4d917f3f8aeeeae6f5ddf5a5f3cba91772781f58081598820da7b9a75a129677
BLAKE2b-256 checksum
How to use checksums
b93920e8d6a3290e88be22655bedc3fec3ffd3d7beb26f2521b36bff681ca2b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314t-win_amd64.whl

Download URL pymssql-2.4.2-cp314-cp314t-win_amd64.whl
Size 2.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
83ed0ed455e644de52065e7c6e7d606b2d511166ea28f05a58642dde0d3ddafc
BLAKE2b-256 checksum
How to use checksums
5eab93a63918f59bcdecaaa1cd5f8011fc353b2f5e5e4afd748b25842dd7a69c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL pymssql-2.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 3.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1b25f82d7fea0217e8a2932216425d4d149db2e2bed5e8899e835709b54fe046
BLAKE2b-256 checksum
How to use checksums
cc148c5c68753a6f8308d4b1e44720479bfaa44f6c92b765a6b519392056774f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL pymssql-2.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 3.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
65e0adad5899b7d2e97407b8e3b6794207affc783cf5b32e76561d6413e709df
BLAKE2b-256 checksum
How to use checksums
daef7fb80d4b6c6805b46727c36133470144d822311e060eed44ef1365651b6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pymssql-2.4.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
136b15c790148245b3395a9bcabbfaa7d16406fb116043a92bac470701521dd0
BLAKE2b-256 checksum
How to use checksums
aa5c911fe0f09f777cb1eea7567599cfdd3d19eb6d40d23161618c353eabb9e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL pymssql-2.4.2-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1126b337f1adc509208df60e19c968c19117e39116fb02b46b01de1e64ba2a76
BLAKE2b-256 checksum
How to use checksums
2d4e0728bffafe8a6a1b8a4e8727064d1511757e9ef101f7ba1fe07ed263dfda
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314t-macosx_15_0_x86_64.whl

Download URL pymssql-2.4.2-cp314-cp314t-macosx_15_0_x86_64.whl
Size 3.0 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
539d358ed944c10dd09bd8ebe2832494b976782de8fa314a0e6c902f5d32ef6c
BLAKE2b-256 checksum
How to use checksums
6bb605813934f24ed79033c073d70a11bdc3b72c4c9f0c886cd03f9056c4b1b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314t-macosx_14_0_arm64.whl

Download URL pymssql-2.4.2-cp314-cp314t-macosx_14_0_arm64.whl
Size 3.2 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
40da129a58600070c1c51498c36188ecebfea2158217336169e13ad4d1a04e1d
BLAKE2b-256 checksum
How to use checksums
cf7a1a1a20c4e19807f0173d9363ba928990636a8f17eacc0120da601523d16c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314-win_amd64.whl

Download URL pymssql-2.4.2-cp314-cp314-win_amd64.whl
Size 2.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
cb3029d053577b66d7dbf20225ffe75de2fed4a641d398c6fa03376ecd44bad6
BLAKE2b-256 checksum
How to use checksums
da242987ce47d8f03eb7c087dffa190e6e6109edfddfdb08ae0e76c6bd6885a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pymssql-2.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Size 3.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d5fa2c62a195d2b4b96155270081903c2f5d0b4ba6a5a1a37bb361c85ed21311
BLAKE2b-256 checksum
How to use checksums
ecf975ac2c0d398d7fea2c6477f1d42bf98048d0ee61439fbcef573dfd90b3bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pymssql-2.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
Size 3.7 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
98e0d028ebdece1770d878172d65d0ef098e366c276ed9992c7bde2cf1e38e30
BLAKE2b-256 checksum
How to use checksums
61ec60230a1754b68e0c28c655a6ad7db840627d112bd354490371dc828f9641
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pymssql-2.4.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
22d0f0589abe9a4d6c12cb002563ea6f317090b8171ae2ae2b0df29fde825385
BLAKE2b-256 checksum
How to use checksums
3ca80bfaa2577de662cccc584fc10dfd1c7a132ce222bef957c676b465f4a807
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL pymssql-2.4.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.1 MB
Tags CPython 3.14 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7a0cf9b05da9e3747296508ab7adb72601a7d56790000b7953c3fb170566215a
BLAKE2b-256 checksum
How to use checksums
3858e1f13fec6673c64d411b18600501e83e5a253555733914c62a497b6ed494
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314-macosx_15_0_x86_64.whl

Download URL pymssql-2.4.2-cp314-cp314-macosx_15_0_x86_64.whl
Size 3.0 MB
Tags CPython 3.14 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
8ceef1088170dcfc08e0b3536cad2be03e6effa66b6881dbf8ab0ed1d9da8219
BLAKE2b-256 checksum
How to use checksums
e03d75437cf2aea3e1c3206d9acd7561e0f10362fe665de9ab498b1459bd3e30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp314-cp314-macosx_14_0_arm64.whl

Download URL pymssql-2.4.2-cp314-cp314-macosx_14_0_arm64.whl
Size 3.2 MB
Tags CPython 3.14 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
438a7a37a245236ba5182bd792638fbcbfad9a97122a0cbf88d8ece14a7b4cde
BLAKE2b-256 checksum
How to use checksums
0f6f3bbc27d204cdf671b38357d4e451499afdc96e65290020f0bdf4415d2e15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp313-cp313-win_amd64.whl

Download URL pymssql-2.4.2-cp313-cp313-win_amd64.whl
Size 2.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
e38e2daa3242f7ec026060c0472bf8be1c7845e1fa7d05efc0110d1b2ffcce1f
BLAKE2b-256 checksum
How to use checksums
98937f8474be42856301d71ec9117dac84405ca14dfa639ac46c673dc3c75021
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pymssql-2.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Size 3.5 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fb59ccad66e75085fbbf64e186ce683193986a9a3e6db46ca91ebdf49b88c655
BLAKE2b-256 checksum
How to use checksums
c98824954c7981ec171bb5af29e44c5121ba19de8028142e3e9498bc34ba49aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pymssql-2.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Size 3.7 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8fdaaf4b6c35c879e5bc540d47f8905ed310ff5f5c855b7f613bc8584900ac54
BLAKE2b-256 checksum
How to use checksums
9f190863b6c650aca1c1d2e952a20f4eb39a2d4010311e872e3e4b3b3652599d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pymssql-2.4.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
95881385d6f69488a601565659b6d1444e374c05a5936334b8efe109149cc888
BLAKE2b-256 checksum
How to use checksums
b1c80efb224dcf80ab3651ac0fafdee12e594801c51406b6ec8fb710d7b94721
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL pymssql-2.4.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.1 MB
Tags CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
207d1d8378c882123455300ad1baf145c3fcde66800622402d28deb001ca69f8
BLAKE2b-256 checksum
How to use checksums
f4308a82987c7f36724fcbd85a4383d8786f8754381ce8c62f8773556b5986d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp313-cp313-macosx_15_0_x86_64.whl

Download URL pymssql-2.4.2-cp313-cp313-macosx_15_0_x86_64.whl
Size 3.0 MB
Tags CPython 3.13 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
1d0f0f4e86933b1ed63b9cca4223d92abcff394b161bfee7b2859fbf7e904dd8
BLAKE2b-256 checksum
How to use checksums
9b4dcdbf6c8397983953473025646c6c7e91e5e6ea5f6c3f8f47dd4af46633eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp313-cp313-macosx_14_0_arm64.whl

Download URL pymssql-2.4.2-cp313-cp313-macosx_14_0_arm64.whl
Size 3.2 MB
Tags CPython 3.13 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
2dad5b22ebac474dea760df16fc173a8be0ae6f7063414aeff9ca0ab83166ffd
BLAKE2b-256 checksum
How to use checksums
d7605fb0de21ec8db8cede9771fc42d2bddb3dce6c5dea9b2c7e035b50380ae0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp312-cp312-win_amd64.whl

Download URL pymssql-2.4.2-cp312-cp312-win_amd64.whl
Size 2.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
4758def2f0acd9cc1dd3d0b878307b6a2629ef9b903d9001d039b02312e69843
BLAKE2b-256 checksum
How to use checksums
10c039dbcc514c6b004254445e3ced97b436d74b4c4e44edef31bf08b1965cca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pymssql-2.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Size 3.5 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6784c439424bef6735ea1a05b9daafcd2ff367457da7a248d2b3b1cdae29e997
BLAKE2b-256 checksum
How to use checksums
c0bd1a9ffa743cf528271b71186082f68792968b9cf625739235d218b928ed5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pymssql-2.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Size 3.7 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1eb3f0762650eb420de443d64fab1bfe6234b09ad9769c94f426f465ad7412d9
BLAKE2b-256 checksum
How to use checksums
f9581fbef3ffd3ed4d80542baac14319655f6ef9c34abe60789023cc21025205
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pymssql-2.4.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0ac37a077666ca15f0ee839447ecef5109a6248ea1f329665142afea36c48ecd
BLAKE2b-256 checksum
How to use checksums
2c303349790aedcf90166aca43a069c1c7b6013511895533ae94d0f3f5d1e91b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL pymssql-2.4.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.1 MB
Tags CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ef6bd05d4703ec7b0b889af621c9fd8704d22f32ae5ec7d7e4d685d9e0c02014
BLAKE2b-256 checksum
How to use checksums
2dda306af14a8c8f2d4aa3a4b6ad6e85608e5d9789059cd5bd500bc17a17a5c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp312-cp312-macosx_15_0_x86_64.whl

Download URL pymssql-2.4.2-cp312-cp312-macosx_15_0_x86_64.whl
Size 3.0 MB
Tags CPython 3.12 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
2b974acfa7f7151a31bcfcc058219a515597bdbef52162d44aee8108c1e4de79
BLAKE2b-256 checksum
How to use checksums
0e5e6ff0d46c6f723f4f8278ca255b4a3c79ae6fd01af11100053c6f2810fec3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp312-cp312-macosx_14_0_arm64.whl

Download URL pymssql-2.4.2-cp312-cp312-macosx_14_0_arm64.whl
Size 3.2 MB
Tags CPython 3.12 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
766f5d000cd116893b044b14ea8c96d43096c2acf4e93a89703ba75d52712b57
BLAKE2b-256 checksum
How to use checksums
fe7178f488879b130474b912cb4bf3c1b2e44dd7c4d66c400d3be19e47e5045b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp311-cp311-win_amd64.whl

Download URL pymssql-2.4.2-cp311-cp311-win_amd64.whl
Size 2.4 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5080a65bd6430cc15edc775f82cb0428ee21e825c7236b06ac69b915c7627e42
BLAKE2b-256 checksum
How to use checksums
afce1cd313a0fff46982f6ccb48de7028c07189596bb11a51a2048b7024e9129
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL pymssql-2.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Size 3.5 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bab53310babced1db80563f05841343023ea0af85013a50b59d7934c3191efd6
BLAKE2b-256 checksum
How to use checksums
1fc71451fbeb67fe7e85cec221c4eb9e4d3bdd1df282ce050c19374807f71c47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL pymssql-2.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Size 3.7 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4b1d5646bb39a38b7f47cb9015979b39afd91e79b743d736281db64c2afbf7a1
BLAKE2b-256 checksum
How to use checksums
9bea78a1e7248fa7f77eb4ea5b98022b577aaadcc57f086acce067e69b21b728
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pymssql-2.4.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.2 MB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d7eca757831c92836b8e4d5e20cc57034bb06b8026e0fe84925328c15fa0cfac
BLAKE2b-256 checksum
How to use checksums
88b8d4f568252ab47bbff6ff1ffd54be338a72735700659d4e91080cb1748e34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL pymssql-2.4.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.1 MB
Tags CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4fa9da3cc867003785b9a5ccb8d14180ae09b4f1462ffa00d36503b18b1a07d4
BLAKE2b-256 checksum
How to use checksums
bf33d8e69edadef56686b38457a6d4c26bce4615d925bc7b176dd9c3c03485e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp311-cp311-macosx_15_0_x86_64.whl

Download URL pymssql-2.4.2-cp311-cp311-macosx_15_0_x86_64.whl
Size 3.0 MB
Tags CPython 3.11 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
19dda2f9581c862e135e1597abd5bd5f435c576dd3cf7b7be68f25b799aaab2f
BLAKE2b-256 checksum
How to use checksums
670af76a2844ffa8b54ec3bb00453ccc92965e47ccaf72e0e31f9ec99037ada3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp311-cp311-macosx_14_0_arm64.whl

Download URL pymssql-2.4.2-cp311-cp311-macosx_14_0_arm64.whl
Size 3.2 MB
Tags CPython 3.11 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
17d802a8b4a56eac1f004bf6bdf24be5fa9d99bc7f2d53812da95df265082c64
BLAKE2b-256 checksum
How to use checksums
acec8cfb9dc051e2698ca683099e56c3792d236b253032c919bfc2868d73c4e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp310-cp310-win_amd64.whl

Download URL pymssql-2.4.2-cp310-cp310-win_amd64.whl
Size 2.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
0cf996d159b1650fc903a01538e832f25e748bd64d8fdbfe32d19dc1061190ba
BLAKE2b-256 checksum
How to use checksums
a06ce22392a25ea30bdb7a6275093bcf7f394170c162cd38611eda162313bae6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL pymssql-2.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Size 3.5 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d842bc3b9079b9ec55a477161926240c74b208d1cbeada8d9472e0a8078946bf
BLAKE2b-256 checksum
How to use checksums
28f5f65ef8aca27facad609e3dab8745a020b6f03a4381c3824ebde0d8a2860d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL pymssql-2.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Size 3.7 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
14bef8a505ea452f7e01aef06acc811cc641dc3f6ff14aaa9e7a4ca7b5a420b0
BLAKE2b-256 checksum
How to use checksums
24554629ca1187f69936d640dcbf049b230f5e90a1e2cd25eca8e38ed383f74d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pymssql-2.4.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b9d1205a1046b413dc50a4253ab623fad2cdf74b50d55fc0b9af3aa8f262f030
BLAKE2b-256 checksum
How to use checksums
abc92f5c439b71d045fcf37905bbe463320211c8258e5e9503814e5feaeee2c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL pymssql-2.4.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.1 MB
Tags CPython 3.10 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
33461bece3b64420a371b5b061c8849f9519cda2d9aa1353ea5469fa410ee332
BLAKE2b-256 checksum
How to use checksums
e9ee87cf5d28c13b8e2711eeb322b09456dfd62316c14e8e44b9935e4f9a32a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp310-cp310-macosx_15_0_x86_64.whl

Download URL pymssql-2.4.2-cp310-cp310-macosx_15_0_x86_64.whl
Size 3.0 MB
Tags CPython 3.10 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
d2b8b57c5b74a10904971cd30910f0ffcde7dd4eb96663cfbe8edcf80332cfc5
BLAKE2b-256 checksum
How to use checksums
e982f4142bfe3f2923b9af720eaa47ce61fd29f68fb8fe810691c7994e0b46a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp310-cp310-macosx_14_0_arm64.whl

Download URL pymssql-2.4.2-cp310-cp310-macosx_14_0_arm64.whl
Size 3.2 MB
Tags CPython 3.10 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
593028018016ac3544e8a022abaf894148ad60843ec9b247f80d95d9662b5105
BLAKE2b-256 checksum
How to use checksums
1309b2310e761154e1c59bca89815136b93bc3bf844ab9b6ec7d39daf71053b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp39-cp39-win_amd64.whl

Download URL pymssql-2.4.2-cp39-cp39-win_amd64.whl
Size 2.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
9c7662677b64b21daa394c8f3e7d8c6a6a217c01d601ebb6d2853310a5b7cb43
BLAKE2b-256 checksum
How to use checksums
f3fa1370658ee8ab67cd513d6479e658118b14cb1c105ab4951af603184156e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL pymssql-2.4.2-cp39-cp39-musllinux_1_2_x86_64.whl
Size 3.5 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6f2c176db7ba0b9c615254c1dd4f81d0fd75daa1da2d62d7c81c067742c0c23e
BLAKE2b-256 checksum
How to use checksums
82cfe26a132f671cac310ed38784610b166f1ad92c2608306a058cc3cc296917
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL pymssql-2.4.2-cp39-cp39-musllinux_1_2_aarch64.whl
Size 3.7 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6c7994d70ae07af615e0090e5958bb4baced6a48d3d499f28dba6b71483e6804
BLAKE2b-256 checksum
How to use checksums
e0baa45c7850f90079ff0b3597001498d2d1dc04f99120143a2e4cbcff114d58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL pymssql-2.4.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
72a17873f5ae175fa251b86a956a4a33e25ffb6184f481fead7facb786f51451
BLAKE2b-256 checksum
How to use checksums
cb9994db2324ebcf436828dd716792f0a3f2c90c5a36022d21f093079cf1ddac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL pymssql-2.4.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 3.1 MB
Tags CPython 3.9 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7da68605dae12e04b30245b0618dc3c555555bc2c86b5b9d125d0231304726a5
BLAKE2b-256 checksum
How to use checksums
8af96e117f33ec4da79a2c84b99e7317e73a6702e0ba5adba9753c0f7de83487
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp39-cp39-macosx_15_0_x86_64.whl

Download URL pymssql-2.4.2-cp39-cp39-macosx_15_0_x86_64.whl
Size 3.0 MB
Tags CPython 3.9 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
fd71d32a659ece11f5e9be1e14a49986f4536ff808209ff21d3a8817b02237ad
BLAKE2b-256 checksum
How to use checksums
e09d8a8486459f8579350ba32ac3fecccfa77bb71d11864899761ff573176ed4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release files / pymssql-2.4.2-cp39-cp39-macosx_14_0_arm64.whl

Download URL pymssql-2.4.2-cp39-cp39-macosx_14_0_arm64.whl
Size 3.2 MB
Tags CPython 3.9 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
a5479e39d933d18217fb2117c69fb002e31142a3c1952881fd49a8c7b2ca53f6
BLAKE2b-256 checksum
How to use checksums
0787ff74fd25624ca5813072e4f7abcf4ccd38ae7bdf70fd7a63faf3d876d92a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.3

Release history Release notifications | RSS feed

This release

2.4.2 This release

64 release files

2.3.8

49 release files

2.3.7

41 release files

2.3.6

41 release files

2.3.5

41 release files

2.3.2

58 release files

2.3.1

81 release files

2.2.9

58 release files

2.2.8

32 release files

2.2.7

61 release files

2.2.6

50 release files

2.2.5

51 release files

2.2.4

51 release files

2.2.3

45 release files

2.2.2

42 release files

2.2.1

42 release files

2.1.5

29 release files

2.1.4

23 release files

2.1.3

17 release files

2.1.2

9 release files

2.1.1

25 release files

2.1.0

23 release files

2.0.1

23 release files

2.0.0

23 release files

1.0.3

6 release files

1.0.2

5 release files

1.0.1

5 release files

1.0.0

4 release files

0.7.4

0.7.1

0.6.0

0.5.2

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page