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

Version 2.2.11 - 2023-12-03 - Mikhail Terekhov

General

  • Use FreeTDS-1.4.9 for official wheels on PyPi.

  • Add workflow for aarch64 wheel. Thanks to juntangc (fix #692, #759, #791, #819, #826, #858).

  • Add datetime.date to SQLDATE conversion.

  • Add encription parameter to connect (fix #797).

Bug fixes

  • Fix version parsing in development.

  • Add missing charset parameter when formatting query (fix #650).

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

  • Fix convert_python_value to work with datetime.date (fix #811).

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pymssql-2.3.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

pymssql-2.3.0-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.0-cp312-cp312-musllinux_1_1_i686.whl (4.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

pymssql-2.3.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_12_0_universal2.whl (2.3 MB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pymssql-2.3.0-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.0-cp311-cp311-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

pymssql-2.3.0-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.0-cp311-cp311-musllinux_1_1_i686.whl (4.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

pymssql-2.3.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_12_0_universal2.whl (2.3 MB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pymssql-2.3.0-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.0-cp310-cp310-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

pymssql-2.3.0-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.0-cp310-cp310-musllinux_1_1_i686.whl (4.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

pymssql-2.3.0-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.0-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.0-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.0-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.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

pymssql-2.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

pymssql-2.3.0-cp310-cp310-macosx_12_0_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 macOS 12.0+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pymssql-2.3.0-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.0-cp39-cp39-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

pymssql-2.3.0-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.0-cp39-cp39-musllinux_1_1_i686.whl (4.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

pymssql-2.3.0-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.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

pymssql-2.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

pymssql-2.3.0-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.0-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.0-cp39-cp39-macosx_12_0_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 macOS 12.0+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

pymssql-2.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

pymssql-2.3.0-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.0-cp38-cp38-musllinux_1_1_i686.whl (4.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

pymssql-2.3.0-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.0-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.0-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.0-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.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pymssql-2.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (3.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pymssql-2.3.0-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.0-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.0-cp38-cp38-macosx_12_0_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 macOS 12.0+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

pymssql-2.3.0-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.0-cp37-cp37m-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

pymssql-2.3.0-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.0-cp37-cp37m-musllinux_1_1_i686.whl (3.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

pymssql-2.3.0-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.0-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.0-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.0-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.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3 MB view details)

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

pymssql-2.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pymssql-2.3.0-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.0-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.0-cp37-cp37m-macosx_12_0_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7m macOS 12.0+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

pymssql-2.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl (4.4 MB view details)

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

pymssql-2.3.0-cp36-cp36m-musllinux_1_2_i686.whl (4.1 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

pymssql-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl (3.8 MB view details)

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

pymssql-2.3.0-cp36-cp36m-musllinux_1_1_i686.whl (3.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

pymssql-2.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl (4.5 MB view details)

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

pymssql-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

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

pymssql-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

pymssql-2.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pymssql-2.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

pymssql-2.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pymssql-2.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.8 MB view details)

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

pymssql-2.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ i686

pymssql-2.3.0-cp36-cp36m-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.3.0.tar.gz
Algorithm Hash digest
SHA256 f034e46b568061d17148f1dedea648f9d5f6b7340e8cffe0edbaa1713cb4abab
MD5 cde04342a593bb38db7fcc6b3989b00d
BLAKE2b-256 13eecbcea68250177a4ceb8637f029b6c6ac2afa21e9b8c22314201e34f75f28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.12.2

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7c5792f00d20126fe1098db6d1c320c86aaa2d35e8f26f237c22015568c7236
MD5 b7c3fc8835867db6275360c0fae68153
BLAKE2b-256 dbd2dd13db4bf9a72615407489e81c4730dde8ddc8401aadedb8801846cf7588

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.12.2

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 995aa63cabb60d2d0d9e0dbd9d25ce9a6dfdeeb8ef9fbbd1fdc5d3de42e316a5
MD5 2ca6c8af38cfef363f4caa22aca46c93
BLAKE2b-256 da12cadb4b56b709d6ea923e181c4c860e1b0d255e8366ace9e3c3eab8b49c48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecbdf7e2f25ee67360496eb86b2c4d9d919907078c77e0d9c8a58a64463fc9f8
MD5 b021e4cc50784234b48361f5a1292c27
BLAKE2b-256 54625a71f55dcaf2c291ce8f3a3b5d265ef2f46ab13e66db5d6cf4a48cda8d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5141e32e1cb15d5706605d283ccbff179a39c96d74c7c336d0811f7330a0cf9
MD5 ce0356c53e87ac22a11c0d795bdec415
BLAKE2b-256 f0361ad978be34e81f96b3e30cf936a7fc0bfeb30c8ef0f0b5c81c2942878ad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a533c5e5907d162d3686257ad8078c8ce8b55396748f91de20ec5a7825fd4841
MD5 f3f003abd6b65823bd2dd9ac13e46f45
BLAKE2b-256 1ab3028d3d33277731b675cea73fbe46a46c2e280d2a854735ae426efbe319d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 0cc360b990384cca93f4e7be8e7e26d9d85c020329bcd704285a4c44e3f2f373
MD5 35e8c9d2fbfe1150f6907dbb6206319e
BLAKE2b-256 6ae45d1752ceec82319068dfacf3affa9395b920c6656098103d30ce5120561c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e1a1bb67caa779beb2d588a7bef5c4ed5fe08b764a02ab22191c35719591d18
MD5 90a214e375a48105e89879bcf496a5b6
BLAKE2b-256 9dff095d5b2de7759232d30eb88a7bf3a3adac4535b7f0c3d9180713113b629a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c90ba5513d53df23d3c9c6ddef23836dbb675dc1208478787ab2e1838fcfa11
MD5 059f565113969c9d659c5880e05e4434
BLAKE2b-256 537a0d85fa6cdc5ad59548e53e5e42a84ef5c3d77c49247e75e63beb75e86409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 587ed39e2d077e2a34c6ee7538ab76fb7d9763d23d0968797e56de4833628d2b
MD5 b87e9dccb8bbf456fa0fec61ef3c7742
BLAKE2b-256 95a61cfed8434f27a4cfe3287104142c34b76f0f912b8175cef892b5bd18121a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3d2d416d9aea2cd6f683c46f18a25cd05ccef9c1841f2a072cb98138f5337c0
MD5 d2a0fcb534b161cd533b2bdfe58b5572
BLAKE2b-256 854ec4aa092aa8f6a453e77ecd704354ec76e8f4c5e164ba8e85281fd23ca9a5

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp312-cp312-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp312-cp312-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 57f6e988bb78cbbd0dd07ee2a8e93034365aedf6f55128e7ee5f2d1112b16823
MD5 cd970ce960727fdf6724dbd1f62cc998
BLAKE2b-256 b12f4bae982b6a89e6373428f3632207d324dc581ce810a1500df0ecc091cb54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.11.8

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b86d934397b6d0da2b31330026dd3dc9c464009e9deca2c70d702c4af0afdca8
MD5 77def612973a45e2b5f50ef6b718cf36
BLAKE2b-256 b8e2a756e59449c81ac259e606e7c99c5745bef85787581ce0b5647e88b1a23a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.11.8

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 abd82eace1ae7c7bc69e96e4f9bd9f40054775a8e220d80f5156bd71c9d528b1
MD5 f48dbb2e146bb41a01a4206d2c027812
BLAKE2b-256 5550a7448b566556c02863738256db7df426cd6cb61909b5da40790b32c6344b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53e1c367352ff25bbd8b86e113769b1635710c270c24cafc67fa9867db79420a
MD5 6c76b58bdcc96f66fb269b66c226d735
BLAKE2b-256 2ed74cdada74ef4118abba79f56543aa92adc08e527fee836a8c3e48c35b7538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 141389e2011cf51de93ec9937b81d8b74b95c91e428413d2301193a4a4817e70
MD5 a0116d0a5110d3f45fb35ec7b8e2da80
BLAKE2b-256 8adbecb8a15b019cd7f23bb0c0a885e31f67ada56a5a01b4e2707e3b095f9233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8b98a20cbc6a6b00c43fc237a8728f9f6d4b2fc493f4448f27d28e82bcd2a242
MD5 a738bb8147b38039cd5abb5aa2583b35
BLAKE2b-256 5c6b18d6ab3d66bb58889bb4c02e60b3339a53fa12ed3b41d3e54753882326a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fc9f60273fa1c679184114dfb3cddeebd4b368aabb3910a979d019a6c6a568f2
MD5 1af229f014bda365fd43d6d01e5463be
BLAKE2b-256 71d5985054db7606e2b08ff3ad6016205ad620069d0afd4baffa509981a30194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af69434169d9449a9fe0a1d476e4efd85c27bc6f45fc4be7b33cd5376f280d43
MD5 5394471a5878021f1c00ca15637a4621
BLAKE2b-256 7c144c5efd78eb3923d4e63cf240ab90ddb1130fdd6780b05883999b895d9713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4eb9d39e3174132896646deba97c52e26732a32f7dec5f800bb0cbdb82594fe3
MD5 1e9224655c1000d0ae3747a201f76503
BLAKE2b-256 72fc18bcf65a653e2a51cc20ece8201999838231242052f79450cb8160fcd3db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fec42705bea52b801ea4ec509b3baec098c0557a5e1521638b6b90a852cbd70f
MD5 932b3d6e2056efa1b299bbb978311fd1
BLAKE2b-256 b23683a6b22e939c3c8014523d523be4599b81fdeb1d7ca7661c36c4105fb401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84ad1b24f26056c45f16fa022a8788e497aeff0c9531043cc109cf77804f44f9
MD5 0ef590c1319704bedd84a3db4a7400f3
BLAKE2b-256 fe93ef8ff6aaefc38fa1eb8aadf7f223bcb186dc04367980799e54421279fd6c

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp311-cp311-macosx_12_0_universal2.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp311-cp311-macosx_12_0_universal2.whl
Algorithm Hash digest
SHA256 86e4ef229bb277cfd5646ced3f215c04d7a8749986c05f4a312839a0222aaf1b
MD5 02ac7455eb9f588d524aea640cbfc8f2
BLAKE2b-256 e64e18f01ed0766bd74164c0688cae89e7b18688e06592ec4d6f7b07ddbe8401

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.10.11

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6ec110711526ea6d8720e920cf3d0e022a5145ab693c9436f99c6a172692204
MD5 9c5623a5f66dd0fe565b5b9e4e40a00e
BLAKE2b-256 c39486caea99e30089b02e7eea4f28c97ea82fc441b8dd618bd9bbe321ef1622

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.10.11

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5088eb8690f2003a68cef7719bf19e0c5bf90fd2c4ffd1e8ef43af9b70d718af
MD5 4a4d0189a1c23aef12ef71f2648699c5
BLAKE2b-256 d6d039eb1f356d5297ac65da0680d4e7a6b68a5553dd253abedf6d20cc51cb2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e58f5215fbee42d703db3e62350c39f476d88d4d2a99e35a7b9fc6f4e96e3ed3
MD5 4a696f7a555793201b9fb9085f3e22ad
BLAKE2b-256 c0b46ca39719788e842988e119769597fe6d38fe3de72c3edd94d182dc304365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5bfe9ff6a66c94903877d9902ce103e7f14c8304955a26fd14607a1718f991f4
MD5 ee573af063cb256f6bf4a98806de62a5
BLAKE2b-256 dc72495fdae56716d4192a12f16a368ceaeb53457da40dc9cb9c71efefc37039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc627063e9dc4ab9ae45cde3ebf7a6ad1b56298bf6ead21f04c8ea16a5891d58
MD5 835e691aec0e80ebed09365b248b4715
BLAKE2b-256 ad37b74fe5c31698699ce86dd2b42c67700dbd1c83a30c315134028a991871d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bf44e0a55cd04b2ab92a3a2d9a8691bdf48f51e5a88cb34882ea9c61988ac25b
MD5 9594c8fc437f272d9a3f348c0fef47f6
BLAKE2b-256 53816b03936b58748fc5ec10dd1b2f518f857b4df79a846791489d4b7a7def7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04d4bc68c1b7f2524dd79e669f7336c31eefeb18f197f0d8a216a0034226eb95
MD5 578b67c9cc163a203387d5665dbc2152
BLAKE2b-256 3e4ebbd5b0778afd372922d8f2819340f434bdd509f8b448b97876db7ade1622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ffe74469e5d0309faae9df31426d435e09ada9d09ca40ef6e09bd3fd895830b
MD5 4a24a94777d17f66897997226b6ef271
BLAKE2b-256 1d38e30e5a2e57bf00236dc2a09a066f9740c81d4c8729ae10e032ec37dc7d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d1e12b678e58cc0b9e4f81e557fcbe197e6b471eb6601a0d397a8e32c77d086
MD5 a1ede7cf7b9e5f2f14cac9e12cf6f5de
BLAKE2b-256 91ff9ffb2e81b703a8e331e694d055a4576d39adfc109477ffdb6e3055406d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a02e15bac7f4f91c3104ac0e8c3a13ce975d7f13513111eede81bed9e85631e
MD5 e141cdfa725caf27968ea8f3307f713b
BLAKE2b-256 a29b70b2c0c2dffe4432fd4b0b1f03b1d1789e49342f1e09b7337bb3b9acbf10

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6beb580d8cfc757da4317968c207468935c682de9d8f5f15c9c1c8f9ce15b2d0
MD5 12b6f6cae97f425a092aee9ae374f3f2
BLAKE2b-256 37ea6429c7156cf889c535ade7d40aafcb7aae7f179f11f2c689b7d57be66299

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f4144175b39cc6b39e3001343d17569edbdebbda68e0ba9f87ddf8b864deda03
MD5 1fb4d6bf91d1b4296cf2491e7a4e108e
BLAKE2b-256 d59145f07b74cad3fffb83bd3058eb5e3a455164aa6fb07ad203328a94548ddf

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 a3b7b398a6910e4b147f0508abd95e95020eb4f7ede0fbb46ee229b95dd923c1
MD5 cb06d0f69ca98022bfe17492df0e99de
BLAKE2b-256 569eacd3275655ded108a4610054aa9ff7795b5c089a7d4d604d61f210d3b9ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.9.13

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f3fc76f6addfc06839ffb95c6c13560a46385a4de16811c38016c82db9ca364d
MD5 09d77b057f37c8380db7dca2e758b22f
BLAKE2b-256 4eabf7cb1c0e455286d1779af08ffb811b61e3b623c8ea30312a66dbd04822f7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.9.13

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5db14c3196117488d926f2e1f45fde9decc5873ddfb0fa743798c4a7b3f90b74
MD5 6dcc944ed97ba97b5c635133e0c747e3
BLAKE2b-256 de6cf780c0252ea7a9c4ddef79050dd17378734c8974d6d8c1c243f4030c34e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9959b55bf82350520084a7f0f1234c7b8d989505c1a347feb780277414610e0
MD5 a8fd1d6ad185a73c95201771d257d0fd
BLAKE2b-256 79ab1f8c90e24b35413ee8059546808fe371694cf1999b68a4c4572234faa5aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd6cc1bb4d3b11fb911268e48b75d5f9ee7f899295e48fe3354fdefa8645180b
MD5 237f025e089167b317dacc07fc416888
BLAKE2b-256 40ea19c33516abbecc5412203cfe50414852efdae3d9ed342d8e2c491b49944b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f42ee62343954c4a29b86a572220b4598fad62bdb448cc603abcc3df8498d311
MD5 2f3b336505973de55c93a341450b1cc9
BLAKE2b-256 24c7d5e94788c96ae565ad857b3807397112f89d39b6a5debab2c463bfee1255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 174181a6363be88bf18d2e7a4fc522560707c625eec826c3f682f0d0ba1c1713
MD5 0360a7496c2f8c6e2a374c24b60856e5
BLAKE2b-256 98520ac3d040fb66a1f12daad5e39fa5803ae56868a5cc4883344f9ff326748c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95bb77c9ea9f218447177040f3c1879cfdeabf3f148d4e0e0dfc7582652018af
MD5 7b1143d8a6b4258072b2b51ee6d37a50
BLAKE2b-256 552014a673fdcd402a886d8da8b686db640e0553be7a1efc7c170fe485b0b88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef189ca39ca1071a291f31a8b4781a98f6c1fd0a598faf63f005f31159c4e644
MD5 4a579bff93851fd97b73df778ccb50f3
BLAKE2b-256 65b48730def90dfad9c482e786aadd7b1391f7a9476cdfe0d40e037e17ec8610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f914dc411526c412a4c261cb10af8a5f89198c02576d4521bcc3178516efa0c
MD5 4e04fbac1d0b4c3f0a4975d4fa7ee4cc
BLAKE2b-256 dec10f5a4d7d5036499d4e6a2991ec138afc16787fb688525b52f16e5c652586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 309a75c509637578afee5c4fd6762e611112012031ea82fc06f715cf030c5d05
MD5 16e7819631a90991d3f797dd3ec73e9e
BLAKE2b-256 dc6b428ac7f94568776f867b55ecb3ea499bb66a8f824731e4e404c43fe31ea3

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a124ef9d24e19d98b1ee6dd94397f9dd40823821b9ad218fc4542d73e5ddf467
MD5 1929dd472924aabe15479536b32def98
BLAKE2b-256 7d11317f04dce010a14d082e1aee0cdfbd0f90f3335a6390b88e1568801b8b36

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 27ce8591b5cd3f44ade472f8f332fa1471329bea4cb1c127348ad5153459fde0
MD5 6ab169e85c16f2eaabef3e1c2c270c11
BLAKE2b-256 bc819a4a797c9d709ec481780835c6f036091a40824ad94ead7f6a02185be39f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0bcdb19e90976aab0d76133a8c35aed7637ae625fc4c83642c001c30caee7cd8
MD5 66991e3a0d52bb91ae590cf6c13e7441
BLAKE2b-256 a609623a7081f1610fc862e8a57ea6d2fece0b04667e4ac3264d4af9ff95aa2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5e719e522533eeb4b76e18c427755423f415abe501df1dd008ff108712b244e
MD5 195cb666ab7a07e20fa2152f92389342
BLAKE2b-256 2d9f9316cb70b3938bd4eb0fe7b950b12209526c40aaef8b8f2475fa5f17ef70

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 5ae1eb39bb2a17c4da30f76d74387baca8c39d1f38533216097c2ab0bf1cdbb6
MD5 1740129b620c9986c47af7d85b15f936
BLAKE2b-256 f3641935666d704dcae13ee90247bffe482e2d476d008c0c14d7e121221760a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.8.10

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 065e73fa53bf9bb166567192651233981929c4955e35ac8f0306e974cc4b4aaf
MD5 0970aa2fae382e420d2ac9eb86c71ae6
BLAKE2b-256 465a6ed7c09d656ac8351818e655fbe68af8e0f705193ac44b13dccf904f1f0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0.0 CPython/3.8.10

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d56e9248adc8c43786434fd409697fd1761dd667a1b4d9bbe4fb6e80dfe7a9bc
MD5 021b80ee0adfb4b61cc52644f653c8c9
BLAKE2b-256 b6738d157942d98b39328748da860d17725626f4bd02b5dd7fb8c94770a44782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a727c98a3801e2b2156244d20fb99f4c88ceef00dc0f06609bc235d508c7574c
MD5 fe6f3f6210bc1d09f1103cd0489afaa5
BLAKE2b-256 c369facbfc145e6fed0b1c1e84a443f27728da2124752092c42e8ca1a18eb255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2aa2bf5eb8a030f0f29a15b87e4575e120959b4c8c7a3f012a6aa3f47dc73279
MD5 4719789e5d12b35c41af9c3372ad00b8
BLAKE2b-256 fe7607d51a5141270a7bfc9d159542e4992e2031910a884f381ec3e642eea23a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 89e0316b6d6cbf18421e36eb49e07f117e983d3c1dacd768a9ba443b3ed165ff
MD5 dd9f4a8b1aff36d048d758ea74a66c5a
BLAKE2b-256 b436883da9d0279b8524a88d7dc52d80c5411a90c56017f1e5941f853496fe0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2b123c37a7b93bd90b711a3b602ebe05a38d5a3f5380589bb425bdc1beb58628
MD5 b1b9b8717e9d7878f4bbd3a2eb1f82fc
BLAKE2b-256 2130abb5f356c19b41286454912d9b140f8c2fce6c3eeeeabdc3d13abaff818e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ebbe68de33ce82b5a55951dc54a7ddca5323ab86f9ec1fa4c77076af3fca353
MD5 82d6c99289e86b98e334c59c76ed9927
BLAKE2b-256 e32957551e0b0dc9bee0b248d3448d15d51875d8a10f4e38e50bf5b65969c320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2bc6b564654b93d5bbb5e1c1766fae7a8395bbd23fae8fae9e1c30e6c03f134
MD5 6d42d1e1097224c30d8002bbd982d8e3
BLAKE2b-256 f7ff846730bc312994a04d89c1c99a46e3d5944276606818420a72a95b279f1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8420a0f76a4f5a75a18ce751ba61d781f4de962a4a05b2824b2727bdaee0382c
MD5 69bc85e59e384d890299e87e1a9f9cde
BLAKE2b-256 98ba63617a469ceab9793988a9600bafbd643506f6d6ea827dfc8c5c342dc9cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e9388613266a263fa1754836c6c22e0698d717cf657a829eefe21902e29114a
MD5 cbb83fdcb4fce2e5084745af38a4e221
BLAKE2b-256 a76692dc0c1f5b903b37b9de6121d514361abb1fd76c790af4159e77ffed5754

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 afdc3bbba28995ed2184def6a205b1ab040c4088f5ed0c07299bc9d9605bb05b
MD5 f959c855ea0239476c550544bdd9a9e1
BLAKE2b-256 0f62e96bc04bec689c36390ab5866c5a5753249b4a23208c687b3d38d209ffcb

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 712c1a4dcf9891b96779b3fdeddc1670fa0723c14c2441bf45793657da4e79ca
MD5 383bd5be1c525591b2130f4c358528f3
BLAKE2b-256 afd5cf7b166e05b826cf1e7ead829cf53bda8ca55ad8f2dccde0671dc5ea9c8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 214eb45fb8047b5524505a2721bcc2871fbf6e0293dbb876588d4f2cbaf7bb2b
MD5 a3b5a802e1965aebb65b14bc99dc4db5
BLAKE2b-256 acfb979c07c2761042b34aaf3bdb87bede2f1f07ab679edd43cfe2df91984dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd541fbfe6cbb9ff3347da656ff4eb93f404cb20c2160fca734636abf86ef820
MD5 345c4c15b5420b3261484a49e18faa92
BLAKE2b-256 12de9299c7ca169fb0f891189aca51f0de9fb9354bb9669f10e909933e54c4de

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 ac5ea86f68d19b88e274d9105b21833965f9513838390175e5003480c323a5fb
MD5 caf3fff3b61609ef84d7535b26bcde94
BLAKE2b-256 c930d71bdc9163f19ea6b1c242e9bffab7724d8fd47c4ee452e3c8372b917d7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8b1e2a23b49101aa2880a181108541056b3ffc6a2a504f04c55b98128c4c6487
MD5 a82ab7e44918bb1c3a40545e0fb1b103
BLAKE2b-256 ec6eb9b2078f8ad0b26a79c6e4dcb51cd958b07cf27b39b8e950a4580c971429

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b712a52eb81dca8a6cab8ea4fcc6fff302b0df2503979d0cd661531d654edfc1
MD5 388cf66780b375898ba79c54056db891
BLAKE2b-256 b24a6fe40f14eb782eb9601bd72fffd6336c4a110ee42fefd3cc766f9220039a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42b05ce4fb35158a68b1d2d0f9d9574a0d805a06e634b41528205fff7a9ed871
MD5 26f124afdda8969ce45149e18aeb2bff
BLAKE2b-256 35b089c017b8fbde0cf2c976d020297b65fa81a69c80734378fa5bfcd2c8d84f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 339881f49ae9b980bc0d0d838c7ea2ccceffbd111c348b1d42aa8f6a289f4546
MD5 ed102988cfb3ed3d6d1b9ca315918609
BLAKE2b-256 d64b49ddae05727d6d7aa155c7ec0c8e21ea6d48623892ce7b0b4dd9f7420a5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f34795e5dbe3db4a15e59fb05ca69882aa6a70a48c99526b58cafb805c067c1e
MD5 84cf34ed940fcfde0e0e59185ca9be41
BLAKE2b-256 7356ac6b09d434ba923c12750c00f56bff974cdbe2d9d0b7e18f464c7d3a6650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7b129abec2c1dedd5d27583b19c580f4eb079a4774ce87a8139ea0ed6f2538f9
MD5 6aa78c4d4d2de91d96139c642bb289d9
BLAKE2b-256 a33e2f6447193905fbba2157089b64ebd77967463d731a3175005402713536b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b263242ab3cb8f8237a8de6d397aebc11ca7a0453a452d86ef41ba730b3f148
MD5 a2e4570f77a6a14145feb443c4d577a7
BLAKE2b-256 037189561d02c567a9190fdfdd53167f05b7b6998d698aa63554bcec0461af5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f262b27e4d6f87caf6467da343c4f1dcd4bee5659e234555fbc337b540e0247
MD5 091be3e11bd4c8467b435948c9b69f9a
BLAKE2b-256 0ec7c4b767aa3bfab27e8b6f711ad70817831427efb6b6f70cf12a2f77b96320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ad5c414ce4927d6e3131aa37b066b08865305da1573c3bf983b63dbacd2f1b8
MD5 bcc992226f746faed753eb232b2581f0
BLAKE2b-256 6f818de56b9cf445bb6a7cd155364c9d6a4c07ce7fc120e5c3d22bd86d8addc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e0b53eb3d66ae7f7968382947a32999d6231daf267a67b6bc075f2ae0411e83
MD5 359c779d41e0ba38f727ac500de1f098
BLAKE2b-256 4a386750095a1407cfbb87022a8df7643ae571012fe1762a0f95f3d39114672d

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c6f2fd09d044babbae0aff55393c468c30df22a395168eb68c134e25c27bccd7
MD5 d12aef652ca74eca54c03e8ed947e76b
BLAKE2b-256 686c2de4cb5d2197261fa41a1271a7fd66e2e7495cd2b2bbc1514346dccdf467

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6d9777b1ec7097b8d376df7efff8990049a669a643cf47ddc4fe2157eaf8894f
MD5 b26dad68aaf44c0c5ce6f4f08dd8870c
BLAKE2b-256 b538d30a61c51ea52f2430098035687053b5addc95a756025067508916422506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5214d39834fedf58b66145c86b57dc21b8eadd2c9986a8080c41b494e76d4ff8
MD5 6dc6efd3dc31a2d5886e65c9f78645e0
BLAKE2b-256 e06930b89ac2275de4a453d696194595a2d1310ee71da8f8b08b631c9c523296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 88224785d1730b402e02a6dc964ecf2d5791e09c86014d22fc6fd108d3cc77b2
MD5 5b4670efd4446ec863a187de00d922d9
BLAKE2b-256 5ddc665ccbf88493e64595672c984cc44c787e6fc830bd1e7ad7ee88ab5cb040

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp37-cp37m-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp37-cp37m-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 bdb8eaccc3c1eea217f13fb6cd5f09675463076e09998ebee465138d93bee314
MD5 afb2e93dc068a7826237bd6e02e77338
BLAKE2b-256 9c9670647f19534303e9262c406f5cda93af1910463634b526e92a03d3f92f01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.18 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.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0a61ec69635a787ecbcd846e1e1f842f519f031dd2af8ee21c5a6aa546785964
MD5 274c98a910818bacf998d8763f69745a
BLAKE2b-256 bcdb8a0ce5c056674c6761e2dd40cf9724cc21f7c458ad6196c291367441dfb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.3.0-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.18 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.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 79aecf41bb667e1dbc15f181dc62a431b6cb69e84cc48ee2e36534a97c4391f1
MD5 a048ec8e880c7c982cd54be00d04d0eb
BLAKE2b-256 816a073dfca5d464ddde29af78f7c0ec43be68c0fcb98f0241e0afedba241e6f

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58baa08f7155697e595e8cc79feccd8722538c331d379895ed4581a0efdcbba9
MD5 ac4e983c236745d1cdcbe1813ce04098
BLAKE2b-256 efbd3f721503ce793e9c909606c3c5a4d9729ba3b5339e2bd6ec41e8840b9a8f

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad79f71316b39c6d8d70144af0c9c8fd82022494a90717fa332d64ec6432ffe9
MD5 4db03e0993c5d064a4a53759696b85a9
BLAKE2b-256 12fbccac0d21936677aaca4f5c0fd8627133b8c0989082c3eec944e990059e02

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 92618ed6eb8edc2acf77478ba159dac4e523992a587b9912290b4f45d8407994
MD5 a1898fda82a3f74ecc701e06a24d130c
BLAKE2b-256 313f97e49d3271f142394dc3e6f7a8a0a277da5824e1933368c87e49d4caa4f0

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fd67cd9bd67c371bcf34c8981d56299ac53f37b3cff913b3d5016b558e89656e
MD5 fbeb2d5cd6fb6cfc25816f8d1ce028fd
BLAKE2b-256 c971123a17a2da9f59688436e40fd6cc0dc2ecf309a068c6c15f561e8c3c596e

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d9fd01e01aa0bd0ededd9c84fdcc76106bdaa00fa900ef31cc83f6f52c9214b
MD5 0d444ceeda2f6a09c025439e4e8eb275
BLAKE2b-256 035c6c2bdb300dd38c77cf66866cad4ad0b857dffd0bae85919ceeebc1475308

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2223c78cd4c27e99128499a09a0f04a971774559ebd59ea0a4978e26045974b9
MD5 451ac6e0e9d7c1bfc78878d2770fa7b1
BLAKE2b-256 cf15460b38d99fb7c3307fc8f01ad77ade186a85e5851f0eb9d8c5847c5bb9e2

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c83cb9e99d5631400513b47cc4d4e99073dceed249d2a687a591ea269235af73
MD5 5c7d4686ce0a3c01c841eec5f5a4963f
BLAKE2b-256 eb866ba488721a989fa0f3b48913e2bd4485462c8b44df157abfffd508b26f79

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d234e6555acf5baf05ef1e1f3d86d7975414de0817d29045888d56d5bedf534e
MD5 73819800bdcb9b75c6e7fec4e6422ece
BLAKE2b-256 0c4a723eb2e0bdc321e8b2ffa4b82547ce7d48090b568b84dc3b045712eab41e

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 faed0289445817e1c1eb6ebddc47f4de90ec633e127b6fa4476226f5c47aaa88
MD5 2a7c3685ea86d4a3309063da9778507d
BLAKE2b-256 d2dd7e2eb279d6221712216758dd2a01193784d06172841a7cc8e62f2df7d32f

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4cd8c77f3ddcf583df3016ef21451b609da41b4429328794cef3575a2bd4a22e
MD5 597f18c2926230670f5c4dafcbd85b89
BLAKE2b-256 b68575c60f8f94ef0e3eb140e42ccde8147f9144212d5c573c03b09412160f8c

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8eb13eee0e462fddb25cc600c196790f9279aaa5e1d73ff143d2c959da1c291c
MD5 f091c605315346bb1cf4578d93cf8fc6
BLAKE2b-256 e473d49e01e1e31bb53f80469b6c4924353628b78130c6f7ee0b4f0c55de4ed0

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb12836b7de9d81f1e28700f7a814f0ea3f0e88c172f12799d3a23aea72cd525
MD5 30ae4872525b4d73cb6a6d031ce0ae20
BLAKE2b-256 e49e552a99e3abd29bfb05b89c48a4cb4141c1ac2470da30dba32b3bdd6a20b8

See more details on using hashes here.

File details

Details for the file pymssql-2.3.0-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pymssql-2.3.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, macOS 10.14+ 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.18 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.15

File hashes

Hashes for pymssql-2.3.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a1ba994227926d1138ccac18bc4e85d828521da8fa27f7eb00f373c91b4c439f
MD5 092a29124e0e9c1f0f679e7baa93ce36
BLAKE2b-256 89556f2b4b5edbe76bc0e5790bb8ad5fab2a612059cacd097e539dbe4ab450dc

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