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/Linux/badge.svg https://github.com/pymssql/pymssql/workflows/macOS/badge.svg https://github.com/pymssql/pymssql/workflows/Windows/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.1 - 2024- - Mikhail Terekhov

General

  • Fix SP returning NULL (closes #441).

  • Update FreeTDS to 1.4.22 (closes #895).

  • Require Cython>3.0.10.

  • Add python 3.13 Linux wheels (closes #900).

  • Drop manylinux2010 wheels.

  • Drop 3.7 and 3.8 wheels on MacOS.

  • Drop 3.6 wheels on Linux.

Version 2.3.0 - 2024-04-06 - Mikhail Terekhov

General

  • Add python 3.12 support (fix #851). Thanks to Raphael Jacob.

  • Update FreeTDS to 1.4.10.

  • Add read_only parameter for connection.

  • Add encryption parameter to connect.

  • Add use_datetime2 parameter to connect.

  • Use utf-8 for connection properties.

  • Implement batching in executemany based on optional batch_size parameter. with default equal arraysize cursor attribute (closes #332, #462).

  • Build aarch64 wheels. Thanks to Jun Tang.

  • Build musllinux wheels.

  • Some documentation fixes. Thanks to Casey Korver and Quentin LEGAY.

  • FAQ update: #877.

  • Add stubs (closes #767).

  • Fix DBAPI-2.0 compliance - DataError must be a subclass of DatabaseError.

  • Fix DBAPI-2.0 compliance: rename batchsize cursor attribute to arraysize.

  • Implement DATETIMEOFFSET handling for stored procedures.

  • Implement DATETIMEOFFSET handling for insert and select queries (fixes #649).

  • Return instance of datetime.datetime on select from SQLDATETIM4, SQLDATETIME, SQLDATETIME2 columns (closes #662, #695, #792, #844).

Bug fixes

  • Fix SQLDATETIME2 handling in convert_python_value().

  • Use four digits for the year in SP args binding (fix #454).

  • Fix convert_python_value to work with datetime.date. Thanks to Testsr.

  • Check if C compiler is installed if check for clock_gettime fails (fix #825).

  • Add missing charset parameter in the _substitute_params method when calling ensure_bytes (fix #650). Thans to Andrey Yuroshev.

  • Fix empty, zero or None parameter substitution. (fix #609).

Internals

  • Add tests for fetchall(), fetchmany(), fetchone() and next() with SP.

  • Add test for #134.

  • Require Cython>3.0.7.

  • Use Cython 3 for compilation.

  • Use docker image for MSSQL2019 as a default for tests.

  • Take FreeTDS version for PyPI wheels from pyproject.toml.

  • Check sdist with twine.

  • Use OpenSSL-1.1.1.2100 for Windows x86 wheels. Thanks to PrimozGodec (fixes #839).

  • Use OpenSSL-3.1.1 for Windows x64 wheels (FreeTDS build fails with OpenSSL-3.2.1).

  • Add SQLTIME and SQLDATETIME2 to convert_python_value.

  • Use dbanydatecrack() function instead of dbdatecrack().

  • Replace DEF with cdef enum for buffer array size (compatibility with Cython 3).

  • Remove references to tox. Thanks to Christoph Wegener.

  • Update readthedocs configuration.

  • Add tests for timeout in wait callback (#305).

  • Clean up some legacy FreeTDS shims.

  • Add tests for tds_version parameter.

  • Move check for clock_gettime to dev/ccompiler.py.

  • Remove some Python2 remnants.

  • Move FreeTDS version from workflow files to pyproject.toml.

  • Move exceptions into separate module.

  • Use strftime for date & time conversion.

  • Simplify parameters quoting.

  • Add tests for _quote_simple_value.

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.1.tar.gz (186.5 kB view details)

Uploaded Source

Built Distributions

pymssql-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pymssql-2.3.1-cp313-cp313-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

pymssql-2.3.1-cp313-cp313-musllinux_1_1_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

pymssql-2.3.1-cp313-cp313-musllinux_1_1_i686.whl (4.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ i686

pymssql-2.3.1-cp313-cp313-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ x86-64

pymssql-2.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pymssql-2.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

pymssql-2.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pymssql-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pymssql-2.3.1-cp312-cp312-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pymssql-2.3.1-cp312-cp312-musllinux_1_1_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pymssql-2.3.1-cp312-cp312-musllinux_1_1_i686.whl (4.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pymssql-2.3.1-cp312-cp312-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

pymssql-2.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymssql-2.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pymssql-2.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymssql-2.3.1-cp312-cp312-macosx_13_0_universal2.whl (3.0 MB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pymssql-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pymssql-2.3.1-cp311-cp311-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pymssql-2.3.1-cp311-cp311-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pymssql-2.3.1-cp311-cp311-musllinux_1_1_i686.whl (4.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pymssql-2.3.1-cp311-cp311-manylinux_2_28_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

pymssql-2.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymssql-2.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pymssql-2.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymssql-2.3.1-cp311-cp311-macosx_13_0_universal2.whl (3.0 MB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pymssql-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pymssql-2.3.1-cp310-cp310-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pymssql-2.3.1-cp310-cp310-musllinux_1_1_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pymssql-2.3.1-cp310-cp310-musllinux_1_1_i686.whl (4.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pymssql-2.3.1-cp310-cp310-manylinux_2_28_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

pymssql-2.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymssql-2.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pymssql-2.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymssql-2.3.1-cp310-cp310-macosx_13_0_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 macOS 13.0+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pymssql-2.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pymssql-2.3.1-cp39-cp39-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pymssql-2.3.1-cp39-cp39-musllinux_1_1_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pymssql-2.3.1-cp39-cp39-musllinux_1_1_i686.whl (4.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pymssql-2.3.1-cp39-cp39-manylinux_2_28_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

pymssql-2.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymssql-2.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pymssql-2.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymssql-2.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymssql-2.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymssql-2.3.1-cp39-cp39-macosx_13_0_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 macOS 13.0+ x86-64

pymssql-2.3.1-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

pymssql-2.3.1-cp38-cp38-win32.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86

pymssql-2.3.1-cp38-cp38-musllinux_1_2_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pymssql-2.3.1-cp38-cp38-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

pymssql-2.3.1-cp38-cp38-musllinux_1_1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pymssql-2.3.1-cp38-cp38-musllinux_1_1_i686.whl (4.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pymssql-2.3.1-cp38-cp38-manylinux_2_28_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

pymssql-2.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymssql-2.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pymssql-2.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymssql-2.3.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymssql-2.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymssql-2.3.1-cp37-cp37m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

pymssql-2.3.1-cp37-cp37m-win32.whl (1.3 MB view details)

Uploaded CPython 3.7m Windows x86

pymssql-2.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

pymssql-2.3.1-cp37-cp37m-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

pymssql-2.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pymssql-2.3.1-cp37-cp37m-musllinux_1_1_i686.whl (3.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pymssql-2.3.1-cp37-cp37m-manylinux_2_28_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ x86-64

pymssql-2.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pymssql-2.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

pymssql-2.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymssql-2.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ x86-64

pymssql-2.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymssql-2.3.1-cp36-cp36m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

pymssql-2.3.1-cp36-cp36m-win32.whl (1.3 MB view details)

Uploaded CPython 3.6m Windows x86

File details

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

File metadata

  • Download URL: pymssql-2.3.1.tar.gz
  • Upload date:
  • Size: 186.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for pymssql-2.3.1.tar.gz
Algorithm Hash digest
SHA256 ddee15c4c193e14c92fe2cd720ca9be1dba1e0f4178240380b8f5f6f00da04c6
MD5 34d78b54e3a0c9f0175d1d05201c6281
BLAKE2b-256 3066f98a16e1db6592b9ab7fa85a3cb5542b4304178b6ad67928e69927590493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 396a26cf576196cc4a3d77890b2b8eb62655ff02846288757dd8b587352cc4f5
MD5 279edfbdc4ef9e242ac709656e14ec71
BLAKE2b-256 16e3e56978cdd5f4861f2d0d2e50b6b59d54778b98df59c079b6fe401f503eeb

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b363db86a1a3fe16df9b4253e17b02a268d0f2e2753679b8e85cee268e2fe8c4
MD5 5503cd090ccb0aafa11fa0fc169f6cf4
BLAKE2b-256 547c094ad0d2a12817df9c5dc8eb2616b700f1e817102d90dc8d31078bb0e853

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f00f618d1c0f58617de548e5094f7d55ab6034b94068d7eebba60a034866b10b
MD5 caf9fba795425d987ef7b415b131b75a
BLAKE2b-256 420f48b80a7d1b5fca3dbac20b9c518338433287794afb0ba764edff24d0513b

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp313-cp313-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp313-cp313-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 922f536b925880c260968c8f2130b1c9d6315b83f300f18365b5421933f034a2
MD5 bea6a24b18b6c86efe0eb2ffaef26ec5
BLAKE2b-256 5373ce8f282ab4f3dbdd8f2780890e38e71e02023b279be818e15eb482cfd02c

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b44280eedd0a3f031e9464d4fc632a215fadcfb375bb479065b61a6337df402
MD5 19e151884dabfcf7445b09f0c7110862
BLAKE2b-256 97f15607b7f11545080a0d14716e494b08dbc3c7ff5b99abf870b3622b862858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3bf78789014f202855f5d00de982bbcd95177fe8bcf920f0ce730b72456c173
MD5 220bf7d654914d95d02d7ccd67a6b119
BLAKE2b-256 2a097feb951f66ef0125936376c2a4cd8b7cbb855efe8d3f0c3c3c4fd2ce6d85

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9381eafaf529815f2d61f22b99e0538e744b31234f17d4384f5b0496bd1fbed
MD5 9262637f7acbc8144e9c5c41baf72f1c
BLAKE2b-256 f841f98041f8683879d58d473344db64383e15955d5019a3bcd0b9df0dfcaeba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 709c1df3134e330ee9590437253be363b558154bde5bb54856fc5fe68a03c971
MD5 97dd810d468f7d20deabe7671d98fff6
BLAKE2b-256 499e5342bdc6ad39506de7530329e976ec5631cb409fc7d64dc8a2613fb7df75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.1-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/5.1.1 CPython/3.12.4

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6b0224fc5ce4cf0703278859f145e3e921c04d9feb59739a104d3020bbf0c0c1
MD5 cf52374dbe039d722c7dc7b7eed553d6
BLAKE2b-256 e8e22c3855864e78edc691fb2ed390aaedf6495dd4eb9238460d08c878c0aaac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 21803b731b8c8780fc974d9b4931fa8f1ca29c227502a4c317e12773c8bdef43
MD5 34ec2d9b670db3519dea3b88aac42f31
BLAKE2b-256 e1f0ef6a459cf32c71d9c6e34585a2d870a06373ed0b77487552be012cdd223e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 126e0b78773975136e6385da7286c277e2e0320c1f4bee0e4dc61a5edcf98c41
MD5 bc4bc7960d702a94008c159856406cc2
BLAKE2b-256 f9def386ddcea2d4d30e8ca5c2394d9fc3ca3b1431cf89175a9bc29c06b5987c

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acd1690d9b1b2ece9d0e1fd7d68571fc9fa56b6ba8697a3132446419ff7fb3f4
MD5 605a17e357f717f01f0b8ae32b4dc5ae
BLAKE2b-256 ff0c905141171152bc1294df59105cff9ab70e85bfa5a11e5a726fd9ca3e13d2

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3dbd4106faabf97f028d0ac59b30d132cfb5e48cf5314b0476f293123dbf3422
MD5 e70575c7c7fe46f67fb620aab1e7525b
BLAKE2b-256 eab9be068a30be5c92485c62c9f4cf0b1a12dba8e2283e0c5e9129e2c18b82c0

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 3564df40a678623a769acd9677dc68228b2694170132c6f296eb62bf766d31e4
MD5 7dc29cec6383061c4d77f063233ed029
BLAKE2b-256 c156bf26d808e514fdb49372906d29f5bb08f1ba8805d1c2955a60ef4aa25a3a

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d36d566d0d6997c95442c3d2902800e6b072ccc017c6284e5b1bd4e17dc8fada
MD5 d35758791cc4bd4364f0d18c07d02b1e
BLAKE2b-256 105a29da9679faae85b41a0857299c9f84e362daf67e272068c07dc01ff993a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fe3276915e6040daec409203e3143aa2826984adb8d223c155dab91010110a4
MD5 cdc0f8f8c9e26e096e5afbc3017f02e6
BLAKE2b-256 1292cc04eefd9fd5bb765afa0227a5c77b2d6273de7a2aeeb2f1526579b532df

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cca3bed27e1ab867e482fa8b529d408489ad57e8b60452f75ef288da90573db6
MD5 1c55b4e0a9ee746e40256dee47b0a1e6
BLAKE2b-256 7a2305bc3b71f25be8b14c19bee0b1e449cf2b63e688a316a7ce67de916bb1ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3509b75747eb22ae89f3d47ae316a4b9eac7d952269e88b356ef117a1b8e3b8
MD5 46cb909c5f70c1cfb0a504ed9d34194a
BLAKE2b-256 b031adf26807d4cd47d7b2f6af54df68ac9388626aa2bad7f3cec0152deb0659

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp312-cp312-macosx_13_0_universal2.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp312-cp312-macosx_13_0_universal2.whl
Algorithm Hash digest
SHA256 c28f1b9560b82fe1a1e51d8c56f6d36bca7c507a8cdf2caa2a0642503c220d5c
MD5 8c0305811f11ea23dd0a55699e1880f5
BLAKE2b-256 fdcfac241b624b25e608f4f17f3f454cc34a8daea6fb1fe102572edd6b529d9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.1-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/5.1.1 CPython/3.11.9

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5d3604bca2fa8d5ba2eed1582a3c8a83970a8d2edabfcfd87c1edecb7617d16
MD5 0663ac26432796f742b505a0d2b7c5f9
BLAKE2b-256 882a515460530e9836f1ab3acf5be157b7d19a923a268a665f670f7ec57fb69a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 72e57e20802bf97399e050a0760a4541996fc27bc605a1a25e48ca6fe4913c48
MD5 ba36fe3933b76542e461f1b9f305e2f0
BLAKE2b-256 94170035b8796474e964aafe4b7819b0c3864c6e25c32a162f7efc1c3526c290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e34e8aa1d3da555dbf23141b02f401267c0be32104b4f030afd0bae62d26d735
MD5 fc2418553652e702107de3a2e49995dc
BLAKE2b-256 05c7011bd07c0265b13c0bf3494c06766aa855096d611b273f69fb98b62af2bc

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f4f2a38ce6e39ed2414c20ca16deaea4340868033a4bb23d5e4e30c72290caf
MD5 8d95174e812973a36eb8a075384622f7
BLAKE2b-256 f9f35c7834ed163358a675b3875db6d8dd93f5878c843d0ef76a19f789fb5a03

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9f89c698e29ce5c576e4980ded89c00b45e482ec02759bfbfc1aa326648cf64a
MD5 97d0d3b64621e68e4fe58e27e78369c1
BLAKE2b-256 4b5266073fe963f096c05c774d4e4b422bafcfbd0e936240e4f9d3ba81056ea3

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 880d3173025dea3babf5ab862875b3c76a5cf8df5b292418050c7793c651c0b2
MD5 4874fdad1d8a44dd4819883b7fc0980f
BLAKE2b-256 251757246ab45a8e374565e9aa0eee3fe1cf8b3393a32721a2dc64af9127f605

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2dced0a76d8e99c283103a2e3c825ca22c67f1f8fc5cff657510f4d2ffb9d188
MD5 b9191f9719f0b45f65e3a7785de8995c
BLAKE2b-256 6fc2c765cb00163c3e31093bf52f54dda26da756004f36ba1332585117a66f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d999c8e5d5d48e9305c4132392825de402f13feea15694e4e7103029b6eae06
MD5 6a62c961612b03cf684ede3ca541bfa9
BLAKE2b-256 2fba23e0fee86294af9ce628ae9cad6e7f054c000381023a3a63fa72e7eb85e6

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cfbe07dcf0aaee8ce630624669cb2fb77b76743d4dd925f99331422be8704de3
MD5 2cbcd1dddba283679687b8c68bdf642c
BLAKE2b-256 cfd81f505bf7556a9db449cfe10a124accefda5682771f1ab7d152efbcdb9e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6182d82ebfbe46f0e7748d068c6a1c16c0f4fe1f34f1c390f63375cee79b44b0
MD5 019f3b42d0a0fc697d4aa803e2bba43a
BLAKE2b-256 2baf130e7012c6ab1a7f766dabfebaf34d3ac15c67a21e8f798915b926e14535

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp311-cp311-macosx_13_0_universal2.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp311-cp311-macosx_13_0_universal2.whl
Algorithm Hash digest
SHA256 0433ffa1c86290a93e81176f377621cb70405be66ade8f3070d3f5ec9cfebdba
MD5 b58f1f4d8338710c0e2e20e6e27704c8
BLAKE2b-256 cdb5c0eddea051884f315413e600fefe544061d2dd2f0a45c4d1a405d41eb696

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.1-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/5.1.1 CPython/3.10.11

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 791522339215cb7f88db54c831a2347e0c4d69dd3092a343eea5b9339adf4412
MD5 48c43b9b975b7d0ea848dda82dd982a7
BLAKE2b-256 2cc40a7212d32b822603aed9fba03df58c3257258dc23a78a5035856fc6ac1e1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2ef07fdee3e9652d39b4c081c5c5e1a1031abd122b402ed66813bceb3874ccea
MD5 4927fe953cc9826f8610f93140542b4b
BLAKE2b-256 d18606df652cd0985ead33b7cf503f28d9f6539ff39eba0640abef652691fa44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebb11b61d99ec5bbe0b8c411ff748a90263cdaf474881de231da8184e721c42c
MD5 5d0a3e6ea56cb2c37b407a642f706c8d
BLAKE2b-256 542e2f463b97342ec57beb0e3d5a852cf48a6b44c32b8b2e9bb09b1e89c37f01

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46f1074c6763e9a899128f22a0f72e9fb0035535f48efabd6a294db1c149e6f1
MD5 fe0563f53d97afab9e00ebd05dc999fd
BLAKE2b-256 f1b2e772bf3a5cb242a94ae301b36e2903e4a03b4021590548002b582c3075bf

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fdfadb055a9ecad58356decfecc41626999ad7b548cc7ea898cf159e2217f7bb
MD5 922c1299909c83a57e88c76f75cc0e92
BLAKE2b-256 c2a60d7c3bb53d8cb978300627b3c49f5990b3469c1c23c4ec12d1716501fcdb

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 44b1c8752c0fc6750902c1c521f258bdf4271bfbf7b2a5fee469b6ad00631aab
MD5 b31a33c60d6bc82b9cb100ad6f0c807f
BLAKE2b-256 ce311d89c23a7f3efdf340cbc1588bfc9ba7cae103aeed60b961df2d3ffb56c0

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b93ebe2feb45e772ca708bc4cd70f3e4c72796ec1b157fd5d80cdc589c786aa
MD5 fc43c0b1a0d1ec769c4523038bc70906
BLAKE2b-256 0021f7e36c686362d0a20b63169d00d2a8fc2c166242be4de79b988a1eeef6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc79dbe5eca8825b73830c8bb147b6f588300dc7510393822682162dc4ff003f
MD5 79e91e520f981e2811ce32aa3942ba0c
BLAKE2b-256 723e829047b3e96d00b454992d7f4f233cb20d64ea972af725cfffca43b2d8bf

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74349040d4ff6f05894aefb5109ecffcd416e1e366d9951085d3225a9d09c46b
MD5 ca16e7098381a77be9b895eb90d7f2af
BLAKE2b-256 029e232f4242b540f60ad7dda1f7598f0c509a8fbe1337887df2f41fc889188c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15466dd41be5e32302f0c4791f612aadd608a0e6ec0b10d769e76cbb4c86aa97
MD5 702bf0bfb6069ddb5667d4880f5d3311
BLAKE2b-256 bae333cedaf1f54f73bcc9f2b16b74ada5730a401df1580a0c73e657fa5ec414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 001b3321a5f620b80d1427933fcca11b05f29a808d7772a84d18d01e640ee60a
MD5 892e7128512f04ac7034287d1fa9bd2a
BLAKE2b-256 80572a21bffa24de74b33d3e8b3b53bc270dab9fd9010bdc94e2bf45d1001f43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.1-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/5.1.1 CPython/3.9.13

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c9ffb3ef110bf0fc2a41c845f231cf749162b1d71e02b0aceb6c0ebc603e2e9
MD5 9c1ccc42a1d16c9ceb2ab0c36c5870a5
BLAKE2b-256 73bd772ffe32ef1c78da8b3a7d7b2bb6af5b185ca2f1f6062182ecf92c03ea8d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6a2657152d4007314b66f353a25fc2742155c2770083320b5255fc576103661e
MD5 388523d7d47ec29f6ec9fa586dffa8b7
BLAKE2b-256 4859f06c7db1ecfa6d6161739bc6b25b79d7afde9914679ac47261d758eed402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d93a82f8ad7d3606354b81bbbe7e7832f70fd6e9ccb2e04a2975117da5df973
MD5 d6c7236793e2435c13d7b68bfdc1d337
BLAKE2b-256 429384f26b656c1cdd2fe7b0ebc6db2e6ee434ac1c36b771c4deef24b6e253f3

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ea04bf8e13d567650631a944c88886c99a5622d9491e896a9b5a9ffbef2e352
MD5 13d411666b73a2331a92ddf1d9ff3fa2
BLAKE2b-256 ca6b5d80ef0947002a6b1dca8e7170df1d1c8657f16dddd5b6950ebfe626c62c

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a87950fb1a2b1c4028064fac971f3e191adebb58657ca985330f70e02f95223e
MD5 ad232004e9254bf828bf4fadf3cd90f0
BLAKE2b-256 6e5c28d3460f5a603ed96a4e897fafe0f21291128c7b0a412f3fc2c5a66f7836

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 be8af4dea025f171ffb1e5b17cb0c9cbc92b0e3c32d0517bc678fff6f660e5fb
MD5 df737f7527cb80436522abdc52ff0060
BLAKE2b-256 f0e4ef743d02408e51731bc1c4dbe2593551228f57e4a971634673e9e3a53445

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da44761ca2f996d88f90c0f972b583dfe9c389db84888bd8209cdb83508f7c7a
MD5 b8fda2cba8a466f4d0d189f095225e14
BLAKE2b-256 43d2b5947363e911f8a4cd0aa38afa65e1f2eef4f57a32a4225b92dc9150d6c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 015f6ccd1bcb53f22a3226653d0d8155da40f4afbc1fd0cec25de5fe8decf126
MD5 24ae68885b59893867bf30fae0bfa911
BLAKE2b-256 65c52020ae1afc0964592f6bc7e9c8eb8c3b6f27bd08e61134864f0f71ca0768

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1ecedaeec8f4d8643d088b4985f0b742d9669bff701153a845b0d1900260b81
MD5 c9828ab0c2594649e284acf4a5417aa6
BLAKE2b-256 9bb6d3b6bba0f8d7d75ec950c616d2e1b1afd7a4ca9e30d5228212b1b4d9495d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a651dd98f67eef98f429c949fb50ea0a92fcf8668834cc35909237c24c1b906
MD5 9d4c136d7402cbad2dd038e475e5393d
BLAKE2b-256 a2838b671b99e4786ab2fae19bbe01c5ec999109cf06e4155e44226065d92111

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a1f3f2e2792364a50417f3c2dc0d8f125955c1b641f36eb313daf666045b9748
MD5 3024bffe03424df6de2c284ae7362493
BLAKE2b-256 571ff39b4524551e81bb173a37373463b0458688d270470d3d6a39173fdf0ab7

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9557b738475e06dfd53f97d8a2c2b259b9b9fd79bf1a4e084ae4e9f164be644d
MD5 b78e470e55e29df44fd5b1c7ead5e1c2
BLAKE2b-256 22f92c61700cbc4a73d444db84a3eab7c811a5e2021c777a525e217db2c7027a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.1-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 750078568dafc1e0a24cf0f51eecfe548b13440976a2c8b19cc6e5d38e7b10bc
MD5 a664076e67feada173e5fffe7342b998
BLAKE2b-256 6b8d2ff7c92ea85b32fc69599a6450e08b6918c60dab45410bb2870ad42bb1d9

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.8.10

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 02c4ab7a58bfb57edb2deee7e2aceed2512960e7c2c1fd2cb23c647471a36ba2
MD5 ec833168941bfb5a97fdf44f12e44539
BLAKE2b-256 3f74f0a7ea914a494fb8f5bc2a0c06613c230526a63965cdbf53ca9e1a925714

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: pymssql-2.3.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.8.10

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ce397eb6a2a90fcd2a83d8812c1b8752af3b5362e630da49aa556c947e32ce3d
MD5 5fc0544ea9949aedcc2889d01a9d953f
BLAKE2b-256 28bffd28189a68f95ab628b44872b72d46ba47dd9032745506a31bff314ad30a

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 425de7d3f38cd1867c30b7c352d66020f38fdcdf804282ee232f5e25672930c1
MD5 010d43b937f46764d068916866fdc874
BLAKE2b-256 36e7d6fdae61b050df9f93a87eca26df1f7aa19e0dab040ef2cd8b69e0334ba7

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a36c8b089e2d7b606aee823eefdfd72f5df110241fc5d913094b0b9da2692794
MD5 2758a40809bbe3ce85b6402c1fe68f5b
BLAKE2b-256 0aa8af58e7e6c920cfaa95483aa90d99c58b8228920ed85461038f83c4bbd1d8

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8eecb4f3b41b8b29a0cbe502ae37b6477063d690151f668c410328f101f6198b
MD5 b4542742fa693f79ed5208e1972601a7
BLAKE2b-256 d66ba9ce6dcf0495b5bc2106d4fe53e9307aee80e060be3de5fe7bcd65ca0a4e

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b0f1ba9befe23e6c4e75c2a626ffe59d159ab3a425a0208515888ec8670bf5bf
MD5 57b3c1c86ece2b509489b186caecf935
BLAKE2b-256 214359253be8f225eb02924192b8d6a0c5cae8ee171532ce20347f72cf4a39ae

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afd57a728e81d73a0f43f3d28216c402fea03bd06a382da881dfc8215fb4080d
MD5 6631e845e038f7c04d2c2ac76403e369
BLAKE2b-256 2bc6862eb93f0fed5427b378346b4f43342aa8a09caf674f1242eb9376cec7dc

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ecb0cdea24e2c019fb403fd642c04a64e8767c79f8dd38451eb5d72ceffce34
MD5 49be3fc3ffd2d78765cafda9908e6458
BLAKE2b-256 9d8048036fd1affcc6dd1cc1f167a3b03b66ce41af11127a0174217bc261a116

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c13ca6eaf0d7f16af9edf87d58070329bfacb7f27b90e1de16318d64c7b873b
MD5 3d8e9831851d25ea7790d2518d2e99d9
BLAKE2b-256 474cf1c1cd87f0d9bac4d05679badb086a85b89dcc0864d370a49b9aab2f80ee

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8d955e751fb125be2a8513b5a338457a3fe73e5daa094815f96a86e496f7149
MD5 5c81389b2e8ac4f280e6970f636bfd1a
BLAKE2b-256 158870fb709464187e2ac6438f48180c59b49eb180f0cf9e9303c3422819f9d5

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 02b808dbb86bbe751dd3fd117e83926b0a19ca9d9b833fae945bf2e31be66bf6
MD5 b41c674482318c9a6611e386c82c84f8
BLAKE2b-256 9b7bd3104c429c65ec87c9f2d62284d4c0437593ff748706b39028b93cca00c9

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e6f6d9de73309cda602bbb769cb707f08d6899664f3ac6e9ed3e3b1ad472cee
MD5 eba41fe15277c24cc216a4cd1010a8c7
BLAKE2b-256 71c423458e6b02b1b937c51e46a2e2fbeabf940168c900c9dc2cc72f78eed6f4

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.3.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 54bc10f28c0acc1347d3c7056e702ad21f128e6bf7737b4edc8c267372db9ce8
MD5 587ab914e02ec68e210266e63b0f668a
BLAKE2b-256 357573999583f7c6a5c7396904039ca086b646492fd15cc61b4c887de0b40db4

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pymssql-2.3.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.9

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b9cc14a9f63e632200f54311da9868ece2715fa9560f6272c9bb82c57edc0543
MD5 f8847fa9cfef606c0a96d4cc2334df8e
BLAKE2b-256 6b20943f8722cb6d979826d366a7f9e7811e1eb47b2fd4a9e71d58323a26feb7

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66afe6ee539e37cdfea0c6b2d596ec0d2a6223f09450c4df7cf872bad12691fe
MD5 b7145be4de03ec2ac4172de21471ff57
BLAKE2b-256 d55c71c450683685dc381e65b5faaafc9327c4fbd56a313797eadc04f96e6780

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ef157e63a1c19e7ab4823237b5f03a3bca45e1e94a4d5ed73baab6d019830c7
MD5 f94c1701fa7f68388b2c2f193411384e
BLAKE2b-256 c87002677b371b9611da5752b5820dc414fb28fc90dd8a42540bbc43ac109579

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 68f879b4ec4b2191a1d8b3bb24db04c3631737653785369c275bd5a574e54093
MD5 247062a4fb9963ecfa69beec7d08db76
BLAKE2b-256 efa234966f018407914d4b444398880271662cb268168c33b1d634e5d5c89580

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e594de69832ad13761412f4d5c981a6e5d931b22f25136c8cd3531d9c6cfdf63
MD5 21bdd07ef6e329c1b5f478fbec36ce5b
BLAKE2b-256 95f3f15281cf382e09aac3773d87b7c0621d47f48d06aeede95c7cabdaf62b18

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40778b65c09eef9e7c25c444b96e76f81d8b5cf1828cb555123d052b7d3b5661
MD5 291123e7859ceaa9f118b37067451075
BLAKE2b-256 b180f85af2c185bee19bdc8ff1c0df3a98dc55d537c36fd6ed5c63ca99c0cbc8

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f284fc052cf1dbc702a2f4d13442d87fc6847ba9054faccfc8d8446fcf00894
MD5 d9502831d3e17367e7438b3b941cbda1
BLAKE2b-256 e1c2cf6c212385c9b4fa235b290346d71287530e9ce22ae87222f98ef45dcb14

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47ac89098732c327725b53464932c6a532367271a3d5c5a988f61e23e0e0e286
MD5 06611509d1d9f4dbf32866fb340db341
BLAKE2b-256 7535e56613d4984440cf31b2941070368ca754f805bc1dc0687f1a82ba55aa00

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 095b50e43bfbc4d6f953810175ba275bb3e6136206f3a7146bdd1031e3f0dd9b
MD5 9fa6d85a76d35524c3029f25e5722712
BLAKE2b-256 f3486a535a1333bb992503dd46b81349500ddc8f36fc78181f55daef21ba337a

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ab2aea2ae8bc1aba0105fccbf9e4f6716648b2b8f9421fd3418c6cc798fca43e
MD5 be061e8e3a3bb9f02a836017028de318
BLAKE2b-256 2d9d6e510fd6862dadac7b64687bf7d71342fff451dc0a1185c5244528a1f4f8

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 22c8609bc7f8b13d383729ba09042b4d796a607c93779c616be51b37caa6b384
MD5 24f00717f5a3f0aad76d09f3e305cbcf
BLAKE2b-256 1c3099e33847c51b6d6d3128030f1b0cb92e900ccdcb63dd51a0f654d9bd0f0c

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.3.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.19 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for pymssql-2.3.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4f92e8657d42341dce01f7f57d03f84b35c0ed00a7bef24533ff80a37ffcfb4e
MD5 96e2433ef0eb73d71f673a4f7ab101d2
BLAKE2b-256 bedd7870a1f619410a099909a08e3d16d21dbb979adfa9a458c40d1ec79c1687

See more details on using hashes here.

File details

Details for the file pymssql-2.3.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pymssql-2.3.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.19 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

File hashes

Hashes for pymssql-2.3.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5a1a1c697596f23058697709144d00a44e7af6ecab6a517f2ecf28dcf8fb4280
MD5 86d17d279f5e930af3d48f90d387612f
BLAKE2b-256 f827f55f1295117cb57a315ac0d5d18e0a8e042ba77293a5ecf97a4ca2facbe8

See more details on using hashes here.

Supported by

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