Skip to main content

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

Release files for pymssql 2.3.0

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

Source distribution (sdist)

Source distribution for pymssql 2.3.0
File Size Uploaded
pymssql-2.3.0.tar.gz 186.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymssql 2.3.0
File
pymssql-2.3.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pymssql-2.3.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
pymssql-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pymssql-2.3.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
pymssql-2.3.0-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
pymssql-2.3.0-cp312-cp312-musllinux_1_1_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-32 Details
pymssql-2.3.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
pymssql-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pymssql-2.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
pymssql-2.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
pymssql-2.3.0-cp312-cp312-macosx_12_0_universal2.whl CPython 3.12 CPython 3.12 macOS 12.0+ universal2 (ARM64, x86-64) Details
pymssql-2.3.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pymssql-2.3.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pymssql-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
pymssql-2.3.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
pymssql-2.3.0-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
pymssql-2.3.0-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
pymssql-2.3.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
pymssql-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pymssql-2.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
pymssql-2.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
pymssql-2.3.0-cp311-cp311-macosx_12_0_universal2.whl CPython 3.11 CPython 3.11 macOS 12.0+ universal2 (ARM64, x86-64) Details
pymssql-2.3.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pymssql-2.3.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pymssql-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
pymssql-2.3.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
pymssql-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
pymssql-2.3.0-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
pymssql-2.3.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
pymssql-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pymssql-2.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
pymssql-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pymssql-2.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-64 Details
pymssql-2.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-32 Details
pymssql-2.3.0-cp310-cp310-macosx_12_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 12.0+ x86-64 Details
pymssql-2.3.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pymssql-2.3.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pymssql-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
pymssql-2.3.0-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
pymssql-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
pymssql-2.3.0-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
pymssql-2.3.0-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
pymssql-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pymssql-2.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
pymssql-2.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pymssql-2.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-64 Details
pymssql-2.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
pymssql-2.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
pymssql-2.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
pymssql-2.3.0-cp39-cp39-macosx_12_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 12.0+ x86-64 Details
pymssql-2.3.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pymssql-2.3.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pymssql-2.3.0-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
pymssql-2.3.0-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
pymssql-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
pymssql-2.3.0-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
pymssql-2.3.0-cp38-cp38-manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64 Details
pymssql-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pymssql-2.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pymssql-2.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pymssql-2.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64 Details
pymssql-2.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
pymssql-2.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
pymssql-2.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
pymssql-2.3.0-cp38-cp38-macosx_12_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 12.0+ x86-64 Details
pymssql-2.3.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pymssql-2.3.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pymssql-2.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64 Details
pymssql-2.3.0-cp37-cp37m-musllinux_1_2_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32 Details
pymssql-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
pymssql-2.3.0-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
pymssql-2.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.28+ x86-64 Details
pymssql-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pymssql-2.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
pymssql-2.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pymssql-2.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Details
pymssql-2.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
pymssql-2.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymssql-2.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymssql-2.3.0-cp37-cp37m-macosx_12_0_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 12.0+ x86-64 Details
pymssql-2.3.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
pymssql-2.3.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
pymssql-2.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.2+ x86-64 Details
pymssql-2.3.0-cp36-cp36m-musllinux_1_2_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.2+ x86-32 Details
pymssql-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 Details
pymssql-2.3.0-cp36-cp36m-musllinux_1_1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 Details
pymssql-2.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.28+ x86-64 Details
pymssql-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
pymssql-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
pymssql-2.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
pymssql-2.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Details
pymssql-2.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Details
pymssql-2.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymssql-2.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
pymssql-2.3.0-cp36-cp36m-macosx_10_14_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.14+ x86-64 Details

Total release size: 328.3 MB

Release files / pymssql-2.3.0.tar.gz

Download URL pymssql-2.3.0.tar.gz
Size 186.3 kB
Tags Source
SHA-256 checksum
How to use checksums
f034e46b568061d17148f1dedea648f9d5f6b7340e8cffe0edbaa1713cb4abab
BLAKE2b-256 checksum
How to use checksums
13eecbcea68250177a4ceb8637f029b6c6ac2afa21e9b8c22314201e34f75f28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

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

Download URL pymssql-2.3.0-cp312-cp312-win_amd64.whl
Size 2.0 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
c7c5792f00d20126fe1098db6d1c320c86aaa2d35e8f26f237c22015568c7236
BLAKE2b-256 checksum
How to use checksums
dbd2dd13db4bf9a72615407489e81c4730dde8ddc8401aadedb8801846cf7588
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.2

Release files / pymssql-2.3.0-cp312-cp312-win32.whl

Download URL pymssql-2.3.0-cp312-cp312-win32.whl
Size 1.3 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
995aa63cabb60d2d0d9e0dbd9d25ce9a6dfdeeb8ef9fbbd1fdc5d3de42e316a5
BLAKE2b-256 checksum
How to use checksums
da12cadb4b56b709d6ea923e181c4c860e1b0d255e8366ace9e3c3eab8b49c48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.2

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

Download URL pymssql-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 4.6 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ecbdf7e2f25ee67360496eb86b2c4d9d919907078c77e0d9c8a58a64463fc9f8
BLAKE2b-256 checksum
How to use checksums
54625a71f55dcaf2c291ce8f3a3b5d265ef2f46ab13e66db5d6cf4a48cda8d2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL pymssql-2.3.0-cp312-cp312-musllinux_1_2_i686.whl
Size 4.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e5141e32e1cb15d5706605d283ccbff179a39c96d74c7c336d0811f7330a0cf9
BLAKE2b-256 checksum
How to use checksums
f0361ad978be34e81f96b3e30cf936a7fc0bfeb30c8ef0f0b5c81c2942878ad4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL pymssql-2.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Size 4.1 MB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
a533c5e5907d162d3686257ad8078c8ce8b55396748f91de20ec5a7825fd4841
BLAKE2b-256 checksum
How to use checksums
1ab3028d3d33277731b675cea73fbe46a46c2e280d2a854735ae426efbe319d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp312-cp312-musllinux_1_1_i686.whl

Download URL pymssql-2.3.0-cp312-cp312-musllinux_1_1_i686.whl
Size 4.1 MB
Tags CPython 3.12 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
0cc360b990384cca93f4e7be8e7e26d9d85c020329bcd704285a4c44e3f2f373
BLAKE2b-256 checksum
How to use checksums
6ae45d1752ceec82319068dfacf3affa9395b920c6656098103d30ce5120561c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL pymssql-2.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 4.7 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0e1a1bb67caa779beb2d588a7bef5c4ed5fe08b764a02ab22191c35719591d18
BLAKE2b-256 checksum
How to use checksums
9dff095d5b2de7759232d30eb88a7bf3a3adac4535b7f0c3d9180713113b629a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymssql-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.4 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7c90ba5513d53df23d3c9c6ddef23836dbb675dc1208478787ab2e1838fcfa11
BLAKE2b-256 checksum
How to use checksums
537a0d85fa6cdc5ad59548e53e5e42a84ef5c3d77c49247e75e63beb75e86409
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymssql-2.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 4.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
587ed39e2d077e2a34c6ee7538ab76fb7d9763d23d0968797e56de4833628d2b
BLAKE2b-256 checksum
How to use checksums
95a61cfed8434f27a4cfe3287104142c34b76f0f912b8175cef892b5bd18121a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymssql-2.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.0 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e3d2d416d9aea2cd6f683c46f18a25cd05ccef9c1841f2a072cb98138f5337c0
BLAKE2b-256 checksum
How to use checksums
854ec4aa092aa8f6a453e77ecd704354ec76e8f4c5e164ba8e85281fd23ca9a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp312-cp312-macosx_12_0_universal2.whl

Download URL pymssql-2.3.0-cp312-cp312-macosx_12_0_universal2.whl
Size 2.3 MB
Tags CPython 3.12 macOS 12.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
57f6e988bb78cbbd0dd07ee2a8e93034365aedf6f55128e7ee5f2d1112b16823
BLAKE2b-256 checksum
How to use checksums
b12f4bae982b6a89e6373428f3632207d324dc581ce810a1500df0ecc091cb54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.12.2

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

Download URL pymssql-2.3.0-cp311-cp311-win_amd64.whl
Size 2.0 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
b86d934397b6d0da2b31330026dd3dc9c464009e9deca2c70d702c4af0afdca8
BLAKE2b-256 checksum
How to use checksums
b8e2a756e59449c81ac259e606e7c99c5745bef85787581ce0b5647e88b1a23a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.11.8

Release files / pymssql-2.3.0-cp311-cp311-win32.whl

Download URL pymssql-2.3.0-cp311-cp311-win32.whl
Size 1.3 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
abd82eace1ae7c7bc69e96e4f9bd9f40054775a8e220d80f5156bd71c9d528b1
BLAKE2b-256 checksum
How to use checksums
5550a7448b566556c02863738256db7df426cd6cb61909b5da40790b32c6344b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.11.8

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

Download URL pymssql-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 4.6 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
53e1c367352ff25bbd8b86e113769b1635710c270c24cafc67fa9867db79420a
BLAKE2b-256 checksum
How to use checksums
2ed74cdada74ef4118abba79f56543aa92adc08e527fee836a8c3e48c35b7538
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL pymssql-2.3.0-cp311-cp311-musllinux_1_2_i686.whl
Size 4.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
141389e2011cf51de93ec9937b81d8b74b95c91e428413d2301193a4a4817e70
BLAKE2b-256 checksum
How to use checksums
8adbecb8a15b019cd7f23bb0c0a885e31f67ada56a5a01b4e2707e3b095f9233
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL pymssql-2.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Size 4.2 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
8b98a20cbc6a6b00c43fc237a8728f9f6d4b2fc493f4448f27d28e82bcd2a242
BLAKE2b-256 checksum
How to use checksums
5c6b18d6ab3d66bb58889bb4c02e60b3339a53fa12ed3b41d3e54753882326a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp311-cp311-musllinux_1_1_i686.whl

Download URL pymssql-2.3.0-cp311-cp311-musllinux_1_1_i686.whl
Size 4.1 MB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
fc9f60273fa1c679184114dfb3cddeebd4b368aabb3910a979d019a6c6a568f2
BLAKE2b-256 checksum
How to use checksums
71d5985054db7606e2b08ff3ad6016205ad620069d0afd4baffa509981a30194
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL pymssql-2.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 4.8 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
af69434169d9449a9fe0a1d476e4efd85c27bc6f45fc4be7b33cd5376f280d43
BLAKE2b-256 checksum
How to use checksums
7c144c5efd78eb3923d4e63cf240ab90ddb1130fdd6780b05883999b895d9713
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymssql-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4eb9d39e3174132896646deba97c52e26732a32f7dec5f800bb0cbdb82594fe3
BLAKE2b-256 checksum
How to use checksums
72fc18bcf65a653e2a51cc20ece8201999838231242052f79450cb8160fcd3db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymssql-2.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 4.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
fec42705bea52b801ea4ec509b3baec098c0557a5e1521638b6b90a852cbd70f
BLAKE2b-256 checksum
How to use checksums
b23683a6b22e939c3c8014523d523be4599b81fdeb1d7ca7661c36c4105fb401
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymssql-2.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.0 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
84ad1b24f26056c45f16fa022a8788e497aeff0c9531043cc109cf77804f44f9
BLAKE2b-256 checksum
How to use checksums
fe93ef8ff6aaefc38fa1eb8aadf7f223bcb186dc04367980799e54421279fd6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp311-cp311-macosx_12_0_universal2.whl

Download URL pymssql-2.3.0-cp311-cp311-macosx_12_0_universal2.whl
Size 2.3 MB
Tags CPython 3.11 macOS 12.0+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
86e4ef229bb277cfd5646ced3f215c04d7a8749986c05f4a312839a0222aaf1b
BLAKE2b-256 checksum
How to use checksums
e64e18f01ed0766bd74164c0688cae89e7b18688e06592ec4d6f7b07ddbe8401
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.11.8

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

Download URL pymssql-2.3.0-cp310-cp310-win_amd64.whl
Size 2.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
d6ec110711526ea6d8720e920cf3d0e022a5145ab693c9436f99c6a172692204
BLAKE2b-256 checksum
How to use checksums
c39486caea99e30089b02e7eea4f28c97ea82fc441b8dd618bd9bbe321ef1622
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.11

Release files / pymssql-2.3.0-cp310-cp310-win32.whl

Download URL pymssql-2.3.0-cp310-cp310-win32.whl
Size 1.3 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
5088eb8690f2003a68cef7719bf19e0c5bf90fd2c4ffd1e8ef43af9b70d718af
BLAKE2b-256 checksum
How to use checksums
d6d039eb1f356d5297ac65da0680d4e7a6b68a5553dd253abedf6d20cc51cb2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.11

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

Download URL pymssql-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 4.5 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e58f5215fbee42d703db3e62350c39f476d88d4d2a99e35a7b9fc6f4e96e3ed3
BLAKE2b-256 checksum
How to use checksums
c0b46ca39719788e842988e119769597fe6d38fe3de72c3edd94d182dc304365
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL pymssql-2.3.0-cp310-cp310-musllinux_1_2_i686.whl
Size 4.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
5bfe9ff6a66c94903877d9902ce103e7f14c8304955a26fd14607a1718f991f4
BLAKE2b-256 checksum
How to use checksums
dc72495fdae56716d4192a12f16a368ceaeb53457da40dc9cb9c71efefc37039
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL pymssql-2.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Size 4.0 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
cc627063e9dc4ab9ae45cde3ebf7a6ad1b56298bf6ead21f04c8ea16a5891d58
BLAKE2b-256 checksum
How to use checksums
ad37b74fe5c31698699ce86dd2b42c67700dbd1c83a30c315134028a991871d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-musllinux_1_1_i686.whl

Download URL pymssql-2.3.0-cp310-cp310-musllinux_1_1_i686.whl
Size 4.0 MB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
bf44e0a55cd04b2ab92a3a2d9a8691bdf48f51e5a88cb34882ea9c61988ac25b
BLAKE2b-256 checksum
How to use checksums
53816b03936b58748fc5ec10dd1b2f518f857b4df79a846791489d4b7a7def7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL pymssql-2.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 4.6 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
04d4bc68c1b7f2524dd79e669f7336c31eefeb18f197f0d8a216a0034226eb95
BLAKE2b-256 checksum
How to use checksums
3e4ebbd5b0778afd372922d8f2819340f434bdd509f8b448b97876db7ade1622
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymssql-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0ffe74469e5d0309faae9df31426d435e09ada9d09ca40ef6e09bd3fd895830b
BLAKE2b-256 checksum
How to use checksums
1d38e30e5a2e57bf00236dc2a09a066f9740c81d4c8729ae10e032ec37dc7d57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymssql-2.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 3.9 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
8d1e12b678e58cc0b9e4f81e557fcbe197e6b471eb6601a0d397a8e32c77d086
BLAKE2b-256 checksum
How to use checksums
91ff9ffb2e81b703a8e331e694d055a4576d39adfc109477ffdb6e3055406d27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymssql-2.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 3.9 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1a02e15bac7f4f91c3104ac0e8c3a13ce975d7f13513111eede81bed9e85631e
BLAKE2b-256 checksum
How to use checksums
a29b70b2c0c2dffe4432fd4b0b1f03b1d1789e49342f1e09b7337bb3b9acbf10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL pymssql-2.3.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 3.5 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
6beb580d8cfc757da4317968c207468935c682de9d8f5f15c9c1c8f9ce15b2d0
BLAKE2b-256 checksum
How to use checksums
37ea6429c7156cf889c535ade7d40aafcb7aae7f179f11f2c689b7d57be66299
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL pymssql-2.3.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Size 3.4 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
f4144175b39cc6b39e3001343d17569edbdebbda68e0ba9f87ddf8b864deda03
BLAKE2b-256 checksum
How to use checksums
d59145f07b74cad3fffb83bd3058eb5e3a455164aa6fb07ad203328a94548ddf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp310-cp310-macosx_12_0_x86_64.whl

Download URL pymssql-2.3.0-cp310-cp310-macosx_12_0_x86_64.whl
Size 2.0 MB
Tags CPython 3.10 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
a3b7b398a6910e4b147f0508abd95e95020eb4f7ede0fbb46ee229b95dd923c1
BLAKE2b-256 checksum
How to use checksums
569eacd3275655ded108a4610054aa9ff7795b5c089a7d4d604d61f210d3b9ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.14

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

Download URL pymssql-2.3.0-cp39-cp39-win_amd64.whl
Size 2.0 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
f3fc76f6addfc06839ffb95c6c13560a46385a4de16811c38016c82db9ca364d
BLAKE2b-256 checksum
How to use checksums
4eabf7cb1c0e455286d1779af08ffb811b61e3b623c8ea30312a66dbd04822f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.13

Release files / pymssql-2.3.0-cp39-cp39-win32.whl

Download URL pymssql-2.3.0-cp39-cp39-win32.whl
Size 1.3 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
5db14c3196117488d926f2e1f45fde9decc5873ddfb0fa743798c4a7b3f90b74
BLAKE2b-256 checksum
How to use checksums
de6cf780c0252ea7a9c4ddef79050dd17378734c8974d6d8c1c243f4030c34e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.13

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

Download URL pymssql-2.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 4.5 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d9959b55bf82350520084a7f0f1234c7b8d989505c1a347feb780277414610e0
BLAKE2b-256 checksum
How to use checksums
79ab1f8c90e24b35413ee8059546808fe371694cf1999b68a4c4572234faa5aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-musllinux_1_2_i686.whl

Download URL pymssql-2.3.0-cp39-cp39-musllinux_1_2_i686.whl
Size 4.3 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
fd6cc1bb4d3b11fb911268e48b75d5f9ee7f899295e48fe3354fdefa8645180b
BLAKE2b-256 checksum
How to use checksums
40ea19c33516abbecc5412203cfe50414852efdae3d9ed342d8e2c491b49944b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL pymssql-2.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Size 4.0 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
f42ee62343954c4a29b86a572220b4598fad62bdb448cc603abcc3df8498d311
BLAKE2b-256 checksum
How to use checksums
24c7d5e94788c96ae565ad857b3807397112f89d39b6a5debab2c463bfee1255
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-musllinux_1_1_i686.whl

Download URL pymssql-2.3.0-cp39-cp39-musllinux_1_1_i686.whl
Size 4.0 MB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
174181a6363be88bf18d2e7a4fc522560707c625eec826c3f682f0d0ba1c1713
BLAKE2b-256 checksum
How to use checksums
98520ac3d040fb66a1f12daad5e39fa5803ae56868a5cc4883344f9ff326748c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL pymssql-2.3.0-cp39-cp39-manylinux_2_28_x86_64.whl
Size 4.6 MB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
95bb77c9ea9f218447177040f3c1879cfdeabf3f148d4e0e0dfc7582652018af
BLAKE2b-256 checksum
How to use checksums
552014a673fdcd402a886d8da8b686db640e0553be7a1efc7c170fe485b0b88d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymssql-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.2 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ef189ca39ca1071a291f31a8b4781a98f6c1fd0a598faf63f005f31159c4e644
BLAKE2b-256 checksum
How to use checksums
65b48730def90dfad9c482e786aadd7b1391f7a9476cdfe0d40e037e17ec8610
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymssql-2.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 3.9 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
8f914dc411526c412a4c261cb10af8a5f89198c02576d4521bcc3178516efa0c
BLAKE2b-256 checksum
How to use checksums
dec10f5a4d7d5036499d4e6a2991ec138afc16787fb688525b52f16e5c652586
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymssql-2.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 3.9 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
309a75c509637578afee5c4fd6762e611112012031ea82fc06f715cf030c5d05
BLAKE2b-256 checksum
How to use checksums
dc6b428ac7f94568776f867b55ecb3ea499bb66a8f824731e4e404c43fe31ea3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL pymssql-2.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 3.5 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
a124ef9d24e19d98b1ee6dd94397f9dd40823821b9ad218fc4542d73e5ddf467
BLAKE2b-256 checksum
How to use checksums
7d11317f04dce010a14d082e1aee0cdfbd0f90f3335a6390b88e1568801b8b36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL pymssql-2.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Size 3.4 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
27ce8591b5cd3f44ade472f8f332fa1471329bea4cb1c127348ad5153459fde0
BLAKE2b-256 checksum
How to use checksums
bc819a4a797c9d709ec481780835c6f036091a40824ad94ead7f6a02185be39f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymssql-2.3.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 2.9 MB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
0bcdb19e90976aab0d76133a8c35aed7637ae625fc4c83642c001c30caee7cd8
BLAKE2b-256 checksum
How to use checksums
a609623a7081f1610fc862e8a57ea6d2fece0b04667e4ac3264d4af9ff95aa2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymssql-2.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 2.8 MB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e5e719e522533eeb4b76e18c427755423f415abe501df1dd008ff108712b244e
BLAKE2b-256 checksum
How to use checksums
2d9f9316cb70b3938bd4eb0fe7b950b12209526c40aaef8b8f2475fa5f17ef70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp39-cp39-macosx_12_0_x86_64.whl

Download URL pymssql-2.3.0-cp39-cp39-macosx_12_0_x86_64.whl
Size 2.0 MB
Tags CPython 3.9 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
5ae1eb39bb2a17c4da30f76d74387baca8c39d1f38533216097c2ab0bf1cdbb6
BLAKE2b-256 checksum
How to use checksums
f3641935666d704dcae13ee90247bffe482e2d476d008c0c14d7e121221760a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.9.19

Release files / pymssql-2.3.0-cp38-cp38-win_amd64.whl

Download URL pymssql-2.3.0-cp38-cp38-win_amd64.whl
Size 2.0 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
065e73fa53bf9bb166567192651233981929c4955e35ac8f0306e974cc4b4aaf
BLAKE2b-256 checksum
How to use checksums
465a6ed7c09d656ac8351818e655fbe68af8e0f705193ac44b13dccf904f1f0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.8.10

Release files / pymssql-2.3.0-cp38-cp38-win32.whl

Download URL pymssql-2.3.0-cp38-cp38-win32.whl
Size 1.3 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
d56e9248adc8c43786434fd409697fd1761dd667a1b4d9bbe4fb6e80dfe7a9bc
BLAKE2b-256 checksum
How to use checksums
b6738d157942d98b39328748da860d17725626f4bd02b5dd7fb8c94770a44782
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.8.10

Release files / pymssql-2.3.0-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL pymssql-2.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Size 4.5 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a727c98a3801e2b2156244d20fb99f4c88ceef00dc0f06609bc235d508c7574c
BLAKE2b-256 checksum
How to use checksums
c369facbfc145e6fed0b1c1e84a443f27728da2124752092c42e8ca1a18eb255
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-musllinux_1_2_i686.whl

Download URL pymssql-2.3.0-cp38-cp38-musllinux_1_2_i686.whl
Size 4.3 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2aa2bf5eb8a030f0f29a15b87e4575e120959b4c8c7a3f012a6aa3f47dc73279
BLAKE2b-256 checksum
How to use checksums
fe7607d51a5141270a7bfc9d159542e4992e2031910a884f381ec3e642eea23a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL pymssql-2.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Size 4.2 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
89e0316b6d6cbf18421e36eb49e07f117e983d3c1dacd768a9ba443b3ed165ff
BLAKE2b-256 checksum
How to use checksums
b436883da9d0279b8524a88d7dc52d80c5411a90c56017f1e5941f853496fe0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-musllinux_1_1_i686.whl

Download URL pymssql-2.3.0-cp38-cp38-musllinux_1_1_i686.whl
Size 4.2 MB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
2b123c37a7b93bd90b711a3b602ebe05a38d5a3f5380589bb425bdc1beb58628
BLAKE2b-256 checksum
How to use checksums
2130abb5f356c19b41286454912d9b140f8c2fce6c3eeeeabdc3d13abaff818e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-manylinux_2_28_x86_64.whl

Download URL pymssql-2.3.0-cp38-cp38-manylinux_2_28_x86_64.whl
Size 4.7 MB
Tags CPython 3.8 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3ebbe68de33ce82b5a55951dc54a7ddca5323ab86f9ec1fa4c77076af3fca353
BLAKE2b-256 checksum
How to use checksums
e32957551e0b0dc9bee0b248d3448d15d51875d8a10f4e38e50bf5b65969c320
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymssql-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b2bc6b564654b93d5bbb5e1c1766fae7a8395bbd23fae8fae9e1c30e6c03f134
BLAKE2b-256 checksum
How to use checksums
f7ff846730bc312994a04d89c1c99a46e3d5944276606818420a72a95b279f1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymssql-2.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 4.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
8420a0f76a4f5a75a18ce751ba61d781f4de962a4a05b2824b2727bdaee0382c
BLAKE2b-256 checksum
How to use checksums
98ba63617a469ceab9793988a9600bafbd643506f6d6ea827dfc8c5c342dc9cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymssql-2.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.0 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9e9388613266a263fa1754836c6c22e0698d717cf657a829eefe21902e29114a
BLAKE2b-256 checksum
How to use checksums
a76692dc0c1f5b903b37b9de6121d514361abb1fd76c790af4159e77ffed5754
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL pymssql-2.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 3.7 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
afdc3bbba28995ed2184def6a205b1ab040c4088f5ed0c07299bc9d9605bb05b
BLAKE2b-256 checksum
How to use checksums
0f62e96bc04bec689c36390ab5866c5a5753249b4a23208c687b3d38d209ffcb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL pymssql-2.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Size 3.6 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
712c1a4dcf9891b96779b3fdeddc1670fa0723c14c2441bf45793657da4e79ca
BLAKE2b-256 checksum
How to use checksums
afd5cf7b166e05b826cf1e7ead829cf53bda8ca55ad8f2dccde0671dc5ea9c8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymssql-2.3.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 3.0 MB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
214eb45fb8047b5524505a2721bcc2871fbf6e0293dbb876588d4f2cbaf7bb2b
BLAKE2b-256 checksum
How to use checksums
acfb979c07c2761042b34aaf3bdb87bede2f1f07ab679edd43cfe2df91984dfe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymssql-2.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 2.9 MB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
dd541fbfe6cbb9ff3347da656ff4eb93f404cb20c2160fca734636abf86ef820
BLAKE2b-256 checksum
How to use checksums
12de9299c7ca169fb0f891189aca51f0de9fb9354bb9669f10e909933e54c4de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp38-cp38-macosx_12_0_x86_64.whl

Download URL pymssql-2.3.0-cp38-cp38-macosx_12_0_x86_64.whl
Size 2.0 MB
Tags CPython 3.8 macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
ac5ea86f68d19b88e274d9105b21833965f9513838390175e5003480c323a5fb
BLAKE2b-256 checksum
How to use checksums
c930d71bdc9163f19ea6b1c242e9bffab7724d8fd47c4ee452e3c8372b917d7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.8.18

Release files / pymssql-2.3.0-cp37-cp37m-win_amd64.whl

Download URL pymssql-2.3.0-cp37-cp37m-win_amd64.whl
Size 2.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
8b1e2a23b49101aa2880a181108541056b3ffc6a2a504f04c55b98128c4c6487
BLAKE2b-256 checksum
How to use checksums
ec6eb9b2078f8ad0b26a79c6e4dcb51cd958b07cf27b39b8e950a4580c971429
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.9

Release files / pymssql-2.3.0-cp37-cp37m-win32.whl

Download URL pymssql-2.3.0-cp37-cp37m-win32.whl
Size 1.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b712a52eb81dca8a6cab8ea4fcc6fff302b0df2503979d0cd661531d654edfc1
BLAKE2b-256 checksum
How to use checksums
b24a6fe40f14eb782eb9601bd72fffd6336c4a110ee42fefd3cc766f9220039a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.9

Release files / pymssql-2.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl

Download URL pymssql-2.3.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Size 4.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
42b05ce4fb35158a68b1d2d0f9d9574a0d805a06e634b41528205fff7a9ed871
BLAKE2b-256 checksum
How to use checksums
35b089c017b8fbde0cf2c976d020297b65fa81a69c80734378fa5bfcd2c8d84f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-musllinux_1_2_i686.whl

Download URL pymssql-2.3.0-cp37-cp37m-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
339881f49ae9b980bc0d0d838c7ea2ccceffbd111c348b1d42aa8f6a289f4546
BLAKE2b-256 checksum
How to use checksums
d64b49ddae05727d6d7aa155c7ec0c8e21ea6d48623892ce7b0b4dd9f7420a5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL pymssql-2.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 3.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
f34795e5dbe3db4a15e59fb05ca69882aa6a70a48c99526b58cafb805c067c1e
BLAKE2b-256 checksum
How to use checksums
7356ac6b09d434ba923c12750c00f56bff974cdbe2d9d0b7e18f464c7d3a6650
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-musllinux_1_1_i686.whl

Download URL pymssql-2.3.0-cp37-cp37m-musllinux_1_1_i686.whl
Size 3.8 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
7b129abec2c1dedd5d27583b19c580f4eb079a4774ce87a8139ea0ed6f2538f9
BLAKE2b-256 checksum
How to use checksums
a33e2f6447193905fbba2157089b64ebd77967463d731a3175005402713536b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl

Download URL pymssql-2.3.0-cp37-cp37m-manylinux_2_28_x86_64.whl
Size 4.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6b263242ab3cb8f8237a8de6d397aebc11ca7a0453a452d86ef41ba730b3f148
BLAKE2b-256 checksum
How to use checksums
037189561d02c567a9190fdfdd53167f05b7b6998d698aa63554bcec0461af5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymssql-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5f262b27e4d6f87caf6467da343c4f1dcd4bee5659e234555fbc337b540e0247
BLAKE2b-256 checksum
How to use checksums
0ec7c4b767aa3bfab27e8b6f711ad70817831427efb6b6f70cf12a2f77b96320
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymssql-2.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 3.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6ad5c414ce4927d6e3131aa37b066b08865305da1573c3bf983b63dbacd2f1b8
BLAKE2b-256 checksum
How to use checksums
6f818de56b9cf445bb6a7cd155364c9d6a4c07ce7fc120e5c3d22bd86d8addc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymssql-2.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 3.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5e0b53eb3d66ae7f7968382947a32999d6231daf267a67b6bc075f2ae0411e83
BLAKE2b-256 checksum
How to use checksums
4a386750095a1407cfbb87022a8df7643ae571012fe1762a0f95f3d39114672d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL pymssql-2.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 3.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
c6f2fd09d044babbae0aff55393c468c30df22a395168eb68c134e25c27bccd7
BLAKE2b-256 checksum
How to use checksums
686c2de4cb5d2197261fa41a1271a7fd66e2e7495cd2b2bbc1514346dccdf467
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL pymssql-2.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Size 3.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
6d9777b1ec7097b8d376df7efff8990049a669a643cf47ddc4fe2157eaf8894f
BLAKE2b-256 checksum
How to use checksums
b538d30a61c51ea52f2430098035687053b5addc95a756025067508916422506
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymssql-2.3.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 2.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
5214d39834fedf58b66145c86b57dc21b8eadd2c9986a8080c41b494e76d4ff8
BLAKE2b-256 checksum
How to use checksums
e06930b89ac2275de4a453d696194595a2d1310ee71da8f8b08b631c9c523296
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymssql-2.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 2.8 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
88224785d1730b402e02a6dc964ecf2d5791e09c86014d22fc6fd108d3cc77b2
BLAKE2b-256 checksum
How to use checksums
5ddc665ccbf88493e64595672c984cc44c787e6fc830bd1e7ad7ee88ab5cb040
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp37-cp37m-macosx_12_0_x86_64.whl

Download URL pymssql-2.3.0-cp37-cp37m-macosx_12_0_x86_64.whl
Size 2.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 12.0+ x86-64
SHA-256 checksum
How to use checksums
bdb8eaccc3c1eea217f13fb6cd5f09675463076e09998ebee465138d93bee314
BLAKE2b-256 checksum
How to use checksums
9c9670647f19534303e9262c406f5cda93af1910463634b526e92a03d3f92f01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.17

Release files / pymssql-2.3.0-cp36-cp36m-win_amd64.whl

Download URL pymssql-2.3.0-cp36-cp36m-win_amd64.whl
Size 2.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
0a61ec69635a787ecbcd846e1e1f842f519f031dd2af8ee21c5a6aa546785964
BLAKE2b-256 checksum
How to use checksums
bcdb8a0ce5c056674c6761e2dd40cf9724cc21f7c458ad6196c291367441dfb5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.3.0-cp36-cp36m-win32.whl

Download URL pymssql-2.3.0-cp36-cp36m-win32.whl
Size 1.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
79aecf41bb667e1dbc15f181dc62a431b6cb69e84cc48ee2e36534a97c4391f1
BLAKE2b-256 checksum
How to use checksums
816a073dfca5d464ddde29af78f7c0ec43be68c0fcb98f0241e0afedba241e6f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl

Download URL pymssql-2.3.0-cp36-cp36m-musllinux_1_2_x86_64.whl
Size 4.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
58baa08f7155697e595e8cc79feccd8722538c331d379895ed4581a0efdcbba9
BLAKE2b-256 checksum
How to use checksums
efbd3f721503ce793e9c909606c3c5a4d9729ba3b5339e2bd6ec41e8840b9a8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-musllinux_1_2_i686.whl

Download URL pymssql-2.3.0-cp36-cp36m-musllinux_1_2_i686.whl
Size 4.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
ad79f71316b39c6d8d70144af0c9c8fd82022494a90717fa332d64ec6432ffe9
BLAKE2b-256 checksum
How to use checksums
12fbccac0d21936677aaca4f5c0fd8627133b8c0989082c3eec944e990059e02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl

Download URL pymssql-2.3.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 3.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
92618ed6eb8edc2acf77478ba159dac4e523992a587b9912290b4f45d8407994
BLAKE2b-256 checksum
How to use checksums
313f97e49d3271f142394dc3e6f7a8a0a277da5824e1933368c87e49d4caa4f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-musllinux_1_1_i686.whl

Download URL pymssql-2.3.0-cp36-cp36m-musllinux_1_1_i686.whl
Size 3.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
fd67cd9bd67c371bcf34c8981d56299ac53f37b3cff913b3d5016b558e89656e
BLAKE2b-256 checksum
How to use checksums
c971123a17a2da9f59688436e40fd6cc0dc2ecf309a068c6c15f561e8c3c596e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl

Download URL pymssql-2.3.0-cp36-cp36m-manylinux_2_28_x86_64.whl
Size 4.5 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6d9fd01e01aa0bd0ededd9c84fdcc76106bdaa00fa900ef31cc83f6f52c9214b
BLAKE2b-256 checksum
How to use checksums
035c6c2bdb300dd38c77cf66866cad4ad0b857dffd0bae85919ceeebc1475308
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymssql-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 4.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2223c78cd4c27e99128499a09a0f04a971774559ebd59ea0a4978e26045974b9
BLAKE2b-256 checksum
How to use checksums
cf15460b38d99fb7c3307fc8f01ad77ade186a85e5851f0eb9d8c5847c5bb9e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymssql-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 3.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c83cb9e99d5631400513b47cc4d4e99073dceed249d2a687a591ea269235af73
BLAKE2b-256 checksum
How to use checksums
eb866ba488721a989fa0f3b48913e2bd4485462c8b44df157abfffd508b26f79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymssql-2.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 3.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d234e6555acf5baf05ef1e1f3d86d7975414de0817d29045888d56d5bedf534e
BLAKE2b-256 checksum
How to use checksums
0c4a723eb2e0bdc321e8b2ffa4b82547ce7d48090b568b84dc3b045712eab41e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL pymssql-2.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 3.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
faed0289445817e1c1eb6ebddc47f4de90ec633e127b6fa4476226f5c47aaa88
BLAKE2b-256 checksum
How to use checksums
d2dd7e2eb279d6221712216758dd2a01193784d06172841a7cc8e62f2df7d32f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL pymssql-2.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Size 3.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
4cd8c77f3ddcf583df3016ef21451b609da41b4429328794cef3575a2bd4a22e
BLAKE2b-256 checksum
How to use checksums
b68575c60f8f94ef0e3eb140e42ccde8147f9144212d5c573c03b09412160f8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymssql-2.3.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 2.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8eb13eee0e462fddb25cc600c196790f9279aaa5e1d73ff143d2c959da1c291c
BLAKE2b-256 checksum
How to use checksums
e473d49e01e1e31bb53f80469b6c4924353628b78130c6f7ee0b4f0c55de4ed0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymssql-2.3.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Size 2.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
eb12836b7de9d81f1e28700f7a814f0ea3f0e88c172f12799d3a23aea72cd525
BLAKE2b-256 checksum
How to use checksums
e49e552a99e3abd29bfb05b89c48a4cb4141c1ac2470da30dba32b3bdd6a20b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.12

Release files / pymssql-2.3.0-cp36-cp36m-macosx_10_14_x86_64.whl

Download URL pymssql-2.3.0-cp36-cp36m-macosx_10_14_x86_64.whl
Size 1.9 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.14+ x86-64
SHA-256 checksum
How to use checksums
a1ba994227926d1138ccac18bc4e85d828521da8fa27f7eb00f373c91b4c439f
BLAKE2b-256 checksum
How to use checksums
89556f2b4b5edbe76bc0e5790bb8ad5fab2a612059cacd097e539dbe4ab450dc
Upload date
Uploaded using Trusted Publishing?
What is 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

Release history Release notifications | RSS feed

2.4.2

64 release files

2.3.8

49 release files

2.3.7

41 release files

2.3.6

41 release files

2.3.5

41 release files

2.3.2

58 release files

2.3.1

81 release files

This release

2.3.0 This release

96 release files

2.2.9

58 release files

2.2.8

32 release files

2.2.7

61 release files

2.2.6

50 release files

2.2.5

51 release files

2.2.4

51 release files

2.2.3

45 release files

2.2.2

42 release files

2.2.1

42 release files

2.1.5

29 release files

2.1.4

23 release files

2.1.3

17 release files

2.1.2

9 release files

2.1.1

25 release files

2.1.0

23 release files

2.0.1

23 release files

2.0.0

23 release files

1.0.3

6 release files

1.0.2

5 release files

1.0.1

5 release files

1.0.0

4 release files

0.7.4

0.7.1

0.6.0

0.5.2

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