Skip to main content

DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)

Project description

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.3.6 - 2025-06-28 - Mikhail Terekhov

General

  • Build manylinux wheels using manylinux2014 image.

Version 2.3.5 - 2025-06-24 - Mikhail Terekhov

General

  • Build ARM wheels for MacOS (closes #612, #727, #731, #763, #768, #822, #882).

  • Fix Windows wheels build (closes #930, #931).

  • Make mssql cython 3.1.0 compatible, thanks to Timotheus Bachinger (closes #937, #939, #945, #946, #948).

  • Fix manylinux1 build for Cython-3.1.0.

  • Fix sqlalchemy.orm.exc.MappedAnnotationError in tests, thanks to Timotheus Bachinger.

Internals

  • Use cibuildwheel in GitHub Actions.

Project details


Download files

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

Source Distribution

pymssql-2.3.6.tar.gz (185.3 kB view details)

Uploaded Source

Built Distributions

pymssql-2.3.6-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pymssql-2.3.6-cp313-cp313-win32.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86

pymssql-2.3.6-cp313-cp313-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pymssql-2.3.6-cp313-cp313-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pymssql-2.3.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pymssql-2.3.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pymssql-2.3.6-cp313-cp313-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pymssql-2.3.6-cp313-cp313-macosx_13_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

pymssql-2.3.6-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pymssql-2.3.6-cp312-cp312-win32.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86

pymssql-2.3.6-cp312-cp312-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pymssql-2.3.6-cp312-cp312-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pymssql-2.3.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pymssql-2.3.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pymssql-2.3.6-cp312-cp312-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

pymssql-2.3.6-cp312-cp312-macosx_13_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

pymssql-2.3.6-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pymssql-2.3.6-cp311-cp311-win32.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86

pymssql-2.3.6-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pymssql-2.3.6-cp311-cp311-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pymssql-2.3.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pymssql-2.3.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pymssql-2.3.6-cp311-cp311-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

pymssql-2.3.6-cp311-cp311-macosx_13_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

pymssql-2.3.6-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pymssql-2.3.6-cp310-cp310-win32.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86

pymssql-2.3.6-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pymssql-2.3.6-cp310-cp310-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pymssql-2.3.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pymssql-2.3.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pymssql-2.3.6-cp310-cp310-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

pymssql-2.3.6-cp310-cp310-macosx_13_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

pymssql-2.3.6-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

pymssql-2.3.6-cp39-cp39-win32.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86

pymssql-2.3.6-cp39-cp39-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pymssql-2.3.6-cp39-cp39-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pymssql-2.3.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pymssql-2.3.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pymssql-2.3.6-cp39-cp39-macosx_14_0_arm64.whl (3.1 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

pymssql-2.3.6-cp39-cp39-macosx_13_0_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

File details

Details for the file pymssql-2.3.6.tar.gz.

File metadata

  • Download URL: pymssql-2.3.6.tar.gz
  • Upload date:
  • Size: 185.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6.tar.gz
Algorithm Hash digest
SHA256 dfa80eccc4441f121b03621aca7205b1a599a415516621530bf16f02a4f6f037
MD5 b54793019bff90468ad1d1f228afdd6a
BLAKE2b-256 a2d5f2d71e2ce398aa00f063bd018c728a4bca8420804987ca47901296f068ca

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f2e99fdc3e17c7646710fad076fcff0561edbe2b35b289a13281338680ff19f
MD5 865b683379b6337ca634426aaa18f928
BLAKE2b-256 4eafbc339e519a982d82458400c47d79dfa4cc68c5be0cd31038a4b5c8d269a0

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 48df3f5c8c334d7635b4b71410a5fb6b1031f04f73a3cf1ebe9449e78b319335
MD5 7ae2d3deb574d627880c53c3d090f61c
BLAKE2b-256 fbfd91bd4a7f07e23a00d76c4e979562dcd6a8c9eba891d6542398d65de48ecb

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bab22685800d85cc04c72143d599fe7eb391e30306106afa241a796687490ccc
MD5 e0d895fc293ac6964efcc11be46ff560
BLAKE2b-256 b53f61c023ba27078969f936152e06212083e43ec51935d4ba1421bb167f0174

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ba49fdab81b59ef4c6129c1a5ede23ff050ca96d38942febeddd4a7a236ea60
MD5 c649b0483e0a0415d629b6add349052d
BLAKE2b-256 b19a2d3d856aa1bfefadab8da44390c51f944714a81d6b6347cc1936957a8eb0

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 75c893730b2963aa82e2b6b917bacc3785cb4b8c77d5e5123a95dc68ed233740
MD5 7f7e67db90c5d36247c742617bdf7e76
BLAKE2b-256 63d5185288a8f44f8459a9524fb2f10117e749a0c1404de4f091c7aa0097d4e8

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ad7556ce64ac8a16ac73e451378a1277a8eb5fe898d0aca5dfacacc80605f736
MD5 274fd034cab3df2e99cf9c0ab011c45c
BLAKE2b-256 549a3e4bc28a56e0e03930023bf311301417f5e28792d15500bff49edf45abcf

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1dedb044aa1ce38213e0e52fb69d31a8d261868c3ed233b3a2a9f79ab843e15c
MD5 8aa095682e418659cc3173d8a1fad9b1
BLAKE2b-256 1dc1933927064eb056181ad6c7b31db2b665a54c26d168b19834e28630dc87cf

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 14a0043d223520aec5b5785ea0a0d51adb789652cfc7719cdfb2d3165d804108
MD5 d93f6ec91151ec3cbf6f1f0cc598766b
BLAKE2b-256 57174c90c15a2b135397f714242782e96b6d80a08dc945d50f55a9f7b715c39c

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3ae91abbf7028f38c00845d7efc67486f27b4300252ec49c07b0676df52099a0
MD5 654228bb5be7bdcf03b3fd665f5e213a
BLAKE2b-256 737a13136fe275ef06d793c6190d4fa54ca249e28ce51548fb7d08bdc42acea3

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d16975feb42a5b58047d57bc6ad2067e8f5816b860b015238133b444dd5972db
MD5 6f716237ccc56eaba3a8fe471827ff0b
BLAKE2b-256 63533a78122fe399180523808e3d36d9b092fc4b61c12a3b593a8d4893eef0fe

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a1b3de9d2b5cc6c73bee300bbe911e3375791c3f5064b18d7db5499e81a0510
MD5 1fcb8696de1e15c5a90bed3eda7ac7a6
BLAKE2b-256 2ffb2410a82ed56bf6661885693647da62239244f43334a92ecd01f9fe88c432

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 651757bb3aa4c34769fa61b00f1e593681020c003239b4606a5b3ba2a3e7760e
MD5 4f0f85abd393029daa7ea391c6b755eb
BLAKE2b-256 ee99ba7c0ec20b98007b45c546cdab75647c6bde2de34e77af014b172577977b

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6dcccac4041f6d263fcaf079462e3edc5780d53be3f425ad23b4b03896c5736e
MD5 af9c2af80e3e61e4400fed7814c1c1fb
BLAKE2b-256 fcb8f99d229ccf7f141e09b528d36d2703642d6014a2a538cf9fd8a000c7ba85

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 e2c934b1ce3465522f016f0c3a9f61cc6918d671e4616a0046e974f28bb0daa8
MD5 6a41923646a9ea362e7a44866d177feb
BLAKE2b-256 2554bea800a18d6f3fe680170d24e441cdccc5a7a9e9ac521d1b2245bda7e88d

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 e3a0734369d6fdb95bec146383416b937527be08a73c1bd9c3f92c26e15e0be6
MD5 7cd56986703838a86414c2ef94b4a302
BLAKE2b-256 18efb04fb757d1282fe99c071accbd0698d8f6c37a530d92570e3796932ceddb

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e0ab49e0834f1abfd454ce98a9866dc0a07e17d8ca29996964c3c14de326f38a
MD5 b0fc3e1adf875d2e752b0dec6151b61b
BLAKE2b-256 fc936eb812e76fa07df461ce68abb837392becb43994ba585b272152829a8671

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f77b1351a0132ab3052f4d6b7408a75d168b738e6f8d2ed9790c3464aaea3a26
MD5 2c5c6fb57c9d0ee68011b299df98d981
BLAKE2b-256 bad02da2afcfdca0f4f2a33dce406ec0bdaa67fd49905caac8e78e99c290009f

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 29d5a03314f395e9dc961c148e4b8f77a79296857c66059b32636e9cd3c669f6
MD5 f63e9521ada219fb794e10cab458d81b
BLAKE2b-256 e3806721502d426fcd771008a734ce76737879375c4c276189ff40d2e330fdd6

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a23aea1518ea7fdc3d299d50e6aadc2dd289c9992e745c8979af1d44e618285
MD5 5747a2bb1832468cb3f3e2e3b2eed67e
BLAKE2b-256 0070d376a77a5bfe032efdafd56e36b888ed057ace2a88f5fb2c18fcb5c8fb36

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90dc15eac6fbe95f90ea89cc344d8727e120b0970ff8bce692b4f2123faa5cd0
MD5 7814cc282dd363a4ac0ad5fe167ee593
BLAKE2b-256 12dd4b3f1cfee4d7ffa509de653fb70f55389154c99ae544113c580a34602d8b

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 66f0e73115496bbd133c45b02b67b230f8497baa8580052724fa130ce93ede68
MD5 4cb162cd4646732bd65dd3460ebefcbc
BLAKE2b-256 44e961c97a6fd416d00d959672b9e7427ed8203992eeddc584e7ae18812b69bc

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9ec6ad02d109f3d378698a058b19bfad8042f1c19ef8be4a7fa0c7c0970f2787
MD5 91328510329b5a365a55cecaf5f08aa9
BLAKE2b-256 b018a6b4516eefa0c87e6406e85c004f430563ed3e405ab11563b6c8a1ae5b11

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ddaed8d4677a600106b8baf7d1bf5e2a16e00cc614c72bd486a92ec40799dc8f
MD5 9f05385b64b17009f2c2d4ebcc57cacf
BLAKE2b-256 a178b8fa3e684bbfae3818980b771a49efab07da99fe4b9fbf9229f5d7ac82b4

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1e10274c306da465f41a7abeae97633e773d9a7fd0b44cd71fd2e909bb13f7e4
MD5 8aade5088a7e5a42d482d5d8559b6b50
BLAKE2b-256 4ee4079524d47e0741d8e62b51fa29c2fc1797a4694d3d3880c715512c997f8c

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 566ff8a47d3f0035bab015e7218e28804b910fdb41203f8da50e1424b8ad1671
MD5 fabad5fc91084453d539dc46014348d4
BLAKE2b-256 6410f7c2740a3d702ba2a3b7a3d2cd98f8a3866e3a38a0a479d3e05f8113d31d

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e9e530f6a9d142176b299a208cff89d645d71fccfb457c3e9fc27e8fbee24986
MD5 db1e585a23ba6bbd99d7903510c35ae2
BLAKE2b-256 7570ee4c68210dfebbd72b39d458b4e75b71dcbacfcfcde866bbd67fd11d36f5

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f034923e87d33694a0c783d4a3522b6c3710bde1f985e2ca593b898961fbf9c7
MD5 4452a6de244574817b69eca92b9cc2bd
BLAKE2b-256 4cb74e8af646f948a57471eb6f49f0dda99d91b005bc1d4750b64d6e0f77fd7c

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37548617ba654fc691745f7d908503af95bc4eabcc3627ad1a7da45355bb511d
MD5 d3ad5068e064f05b72847248cac92990
BLAKE2b-256 b91d8b954f18507d3ddf51111011f26cc3b1ba4ddca8ee2c067a5555f7d22ad4

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a0b9089e15fcc2b7799a91f5d33b34a2f6acbfe072d0adc10933a3169d51d8bd
MD5 09abc56f6a0848b6e834ee4e47b1ef71
BLAKE2b-256 fe7f54872fa291160f5c1bba58e41afc770458923a7adbc3bb92aa768735f574

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 37404fceb3eee6f7c55ae85eeb69538c8cfd1e8df49befc721f5f86606c32e5a
MD5 f0f84b9552653ad2f0f3d73347a6d202
BLAKE2b-256 057ad2275a5da3e18283eaee840951363af8e58bc1d136b0bdc0d3c0b70193b9

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6219ab88c1010dc7f03bcc21174324c8892b7eb69f9d9541c1d9d660048b19f7
MD5 366187022641e57c01383887bfa81b3b
BLAKE2b-256 2de43a3f5e1da26574d547cc82f260f653607a1481fe69b4f871328b199f70dd

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e4febfffe0ed8f3d9dcb11cfe60a230db84046067008e4a9feedd6c20f99193e
MD5 013a238b539d0f5f9d72919fb2e8cbbb
BLAKE2b-256 145968a79dc11a302e253e3982029808ac61bc54299bae297810550bf5932e03

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c094b5e03ec34784eeea27d99fb69e8351e3ecbfd7991258491f5f59dc28a757
MD5 28ade7f86706782b28c4a1c37b72eb33
BLAKE2b-256 7e387343cdd06a15b4835d073f82707c84dbe1583d7eca83f3711f7a09e41d5b

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymssql-2.3.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for pymssql-2.3.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a822f7aa9cfe279aed2bee0c69ef773a524a5833f4c87aa89d1e2ab61ef17985
MD5 7f97deb62a423c716f39a7f5ed8d3c03
BLAKE2b-256 2e76afdd3f03bb67c06eae094c62c80269a7c052a6071bbaa632d3fbf9a29bb5

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf66ce39d2da2115c80edb111f53532fa4b2d8e516ad1c805c900fea998ae717
MD5 8c89144b9d063fc9d8ea45277ebb8462
BLAKE2b-256 d7ab639c3c7f6b3d3e341b6d18486afa9cfe893a2b15488424a2f012968c284d

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3202c6be7438259ebc412ab663b098500f15c6b6fe3fa473a715989085f0adf4
MD5 aab7b513da3fb8065dbc58629ad24493
BLAKE2b-256 7958cfeffbf674004a96294f190ade1fc0bf72ecd8815b73666e9312913537c4

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c933ce02596db5f4397619fcbe07e970cd5415ac69031fc50d98f496a8ea8a72
MD5 3660f36d7e4c3637b0772c8ba3fe2f04
BLAKE2b-256 a5e147e8677ac592c2df4c205add93b256d9957b31f85c58d36f9502db24660d

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9ad0b4a976af7a36991faf42bab32418093eb8a70671707504a119ea3e79daa1
MD5 214b346ce6dcfbb1eaad9fb4f2545772
BLAKE2b-256 36af027cdd3c17a31deaa327e4aefcbe5d6da25db8bf28618dbdfdb20f2a1095

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ab7cf4f397cc49a33b7baa467280d2b865b5e8c4505302c2ca60a13be1d62a40
MD5 3ef45cbde079d700e93dc4e6e9b48e79
BLAKE2b-256 6ab3b32e6fa3328bb36e4f4cfa285b5519da5402903aa3eb2d73e6d8e599a595

See more details on using hashes here.

File details

Details for the file pymssql-2.3.6-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.6-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 cbe9dbb946ec49f33e6aac394a44cbdc3ded780aee1222e05447d8659bc6b8d8
MD5 dc6edbd237e90f9c6407881bf08e0a53
BLAKE2b-256 e5c95e44089939c2195aa01e5d96026f2bc249374eecbf7d9e6be1bf29ad5095

See more details on using hashes here.

Supported by

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