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

Version 2.2.10 - 2023-10-20 - Mikhail Terekhov

General

  • Publish Linux wheels for Python-3.12

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pymssql-2.2.11-cp312-cp312-manylinux_2_28_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

pymssql-2.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymssql-2.2.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pymssql-2.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymssql-2.2.11-cp312-cp312-macosx_10_9_universal2.whl (2.2 MB view details)

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pymssql-2.2.11-cp311-cp311-manylinux_2_28_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

pymssql-2.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymssql-2.2.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pymssql-2.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymssql-2.2.11-cp311-cp311-macosx_10_9_universal2.whl (2.2 MB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pymssql-2.2.11-cp310-cp310-manylinux_2_28_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

pymssql-2.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymssql-2.2.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pymssql-2.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymssql-2.2.11-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64

pymssql-2.2.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (3.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

pymssql-2.2.11-cp310-cp310-macosx_11_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pymssql-2.2.11-cp39-cp39-manylinux_2_28_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

pymssql-2.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymssql-2.2.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pymssql-2.2.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymssql-2.2.11-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

pymssql-2.2.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (3.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

pymssql-2.2.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymssql-2.2.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymssql-2.2.11-cp39-cp39-macosx_11_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

pymssql-2.2.11-cp38-cp38-manylinux_2_28_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ x86-64

pymssql-2.2.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymssql-2.2.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pymssql-2.2.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymssql-2.2.11-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

pymssql-2.2.11-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (3.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

pymssql-2.2.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymssql-2.2.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymssql-2.2.11-cp38-cp38-macosx_11_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 11.0+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

pymssql-2.2.11-cp37-cp37m-manylinux_2_28_x86_64.whl (4.3 MB view details)

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

pymssql-2.2.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

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

pymssql-2.2.11-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

pymssql-2.2.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymssql-2.2.11-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.2 MB view details)

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

pymssql-2.2.11-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (3.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

pymssql-2.2.11-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.8 MB view details)

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

pymssql-2.2.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymssql-2.2.11-cp37-cp37m-macosx_11_0_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m macOS 11.0+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

pymssql-2.2.11-cp36-cp36m-manylinux_2_28_x86_64.whl (4.3 MB view details)

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

pymssql-2.2.11-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

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

pymssql-2.2.11-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

pymssql-2.2.11-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pymssql-2.2.11-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (3.2 MB view details)

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

pymssql-2.2.11-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (3.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

pymssql-2.2.11-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.7 MB view details)

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

pymssql-2.2.11-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ i686

pymssql-2.2.11-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.2.11.tar.gz.

File metadata

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

File hashes

Hashes for pymssql-2.2.11.tar.gz
Algorithm Hash digest
SHA256 15815bf1ff9edb475ec4ef567f23e23c4e828ce119ff5bf98a072b66b8d0ac1b
MD5 c5cdd15a60b596c701b1c51b7a193429
BLAKE2b-256 06b119a4463840c541413e58d13c1116b33669412c61528d53e02daf5e5e082b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0ebb0e40c93f8f1e40aad80f512ae4aa89cb1ec8a96964b9afedcff1d5813fd
MD5 1f7122ed8ad06710a98ae54f990937c8
BLAKE2b-256 feea24f53e9b4efb7705ab10533fbdd62cbb6524da5fe992b95705fbcf5fae2e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.2.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1f7ba71cf81af65c005173f279928bf86700d295f97e4965e169b5764bc6c4f2
MD5 2afd07d89a3c2657ef15488e218902e3
BLAKE2b-256 d24ae504492e6ced1820fba3e6a1b16e6805fb5576c9d6206576656353673225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d5aa1a090b17f4ba75ffac3bb371f6c8c869692b653689396f9b470fde06981
MD5 feaf0dac7a21174a7f38c57ac8cd6c0b
BLAKE2b-256 f02ecb5e2b175f85cc59da1a1ffe839df35839470557f8e8deb32bed50bd0b2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee8b10f797d0bfec626b803891cf9e98480ee11f2e8459a7616cdb7e4e4bf2de
MD5 757c466e7d751b5a60d0e807aabb69f1
BLAKE2b-256 ce717d0c4914a1548141ea8b53d3b8db897dc1b8e2ca6439b4d4172cbbf11f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5928324a09de7466368c15ece1de4ab5ea968d24943ceade758836f9fc7149f5
MD5 ac185ac4257fa772d8e94148c36aa06c
BLAKE2b-256 a05b056c7bf7e22eaf1b1e14423dafc746e077a5ea071a3f16313f42a36fe090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c382aea9adaaee189f352d7a493e3f76c13f9337ec2b6aa40e76b114fa13ebac
MD5 52d7230575b0c46f03112e7862975d13
BLAKE2b-256 177ddac7053be014db8f77863a2caf5619766a3fa9ac4a1d41a2c78407259a21

See more details on using hashes here.

File details

Details for the file pymssql-2.2.11-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymssql-2.2.11-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2609bbd3b715822bb4fa6d457b2985d32ad6ab9580fdb61ae6e0eee251791d24
MD5 2589537e1b6be450330aa9562e6470cb
BLAKE2b-256 44e7c1b34350541e499a18f0d0225bb244e5e0040c6fca2cfd8a6c3c32b3825e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0bdd1fb49b0e331e47e83f39d4af784c857e230bfc73519654bab29285c51c63
MD5 c3f2d933cd6a51c65c8691a0315957ee
BLAKE2b-256 45d0b63572a104eba465905d3bc3cc5ec0d1350fec0f9d311bfa883c15acefd0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.2.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1956c111debe67f69a9c839b33ce420f0e8def1ef5ff9831c03d8ac840f82376
MD5 9f971cd5e73511093890c7604a5f019f
BLAKE2b-256 5db318c5af078a9e34327ed4cc682f8951a1f93e37a627b71d9a9d5dbd2766c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a644e4158fed30ae9f3846f2f1c74d36fa1610eb552de35b7f611d063fa3c85
MD5 f5a4d3b6a8a8f44706afd0974e5e9ac7
BLAKE2b-256 0e3e34d854e782990864dbc6ccdc694d9aef109a9f61b8bdfbbea1e916d342ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa1767239ed45e1fa91d82fc0c63305750530787cd64089cabbe183eb538a35b
MD5 faa912fe0f870b09b8b903bf310cd23a
BLAKE2b-256 a60bf2de7c8fdfbbdbc817edfcbb1d2ade2b0701a7ac02dc95b1d168cf6bee3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 410e8c40b7c1b421e750cf80ccf2da8d802ed815575758ac9a78c5f6cd995723
MD5 9bb373bd7c599272c12a5d6b1abb4939
BLAKE2b-256 e32ffd8f5076c27588487f114fb41b893895e49bb654ec851ed283fe9e0225ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c26af25991715431559cb5b37f243b8ff676540f504ed0317774dfc71827af1
MD5 72c85aca2c6fb4edd5c045ab8b068d85
BLAKE2b-256 9865a7195cde3d4608c2b81ef7c2078c145eac4b7f4c63154c088a9f8fce0a24

See more details on using hashes here.

File details

Details for the file pymssql-2.2.11-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymssql-2.2.11-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6ddaf0597138179517bdbf5b5aa3caffee65987316dc906359a5d0801d0847ee
MD5 638e535b014a665aa8daf6cf92e113bb
BLAKE2b-256 0cc567807c057b33ba31f643b785d3fdfc121d324373b8a3e7fea0d5e811978d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1bde266dbc91b100abd0311102a6585df09cc963599421cc12fd6b4cfa8e3d3
MD5 47721f57b2ee7cc5a24ebd2363f0e418
BLAKE2b-256 031f297ed765c4f866979581ca79432fa218514b53723b6716cdd340d73c8e34

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.2.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6452326cecd4dcee359a6f8878b827118a8c8523cd24de5b3a971a7a172e4275
MD5 d5228bffa1e07dfa7ebb247477ae9582
BLAKE2b-256 b879ac0a7386ab581d553ace2481cf066d5228c8225d3fef0d8ae5a07cc56d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c389c8041c94d4058827faf5735df5f8e4c1c1eebdd051859536dc393925a667
MD5 8a8ea05f730821cf45cf87ab0182eabe
BLAKE2b-256 65e510cbb5265ecdb1505accdddb8ae05e861997d7f50268e81380d801d26c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aec64022a2419fad9f496f8e310522635e39d092970e1d55375ea0be86725174
MD5 2c6a02b6f42dffc30c949d2d3085b1e1
BLAKE2b-256 fd0e9ca280589c626390dd8d2176f0389d9b132a0be1114942334ba326e1c42e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8d9d42a50f6e8e6b356e4e8b2fa1da725344ec0be6f8a6107b7196e5bd74906
MD5 1e87d2a53f6da9d5d177c35ffacc9bba
BLAKE2b-256 3d1c42bbfd0ecc2b05d7e9fee82dfac3c93a58386c0849b18521aa3133dc73c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bc0ba19b4426c57509f065a03748d9ac230f1543ecdac57175e6ebd213a7bc0
MD5 0d3b9f2a7109fb0e1b30b05c1f3abe0c
BLAKE2b-256 3101685d2c4b376103c9331146795d9b2e36397d62b11e7e48f88e43228041be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 34ab2373ca607174ad7244cfe955c07b6bc77a1e21d3c3143dbe934dec82c3a4
MD5 cfde7eaf2d721ccec0d9c016f39f1f56
BLAKE2b-256 a7cf068ad1306b9aa64489ef4b3932ebe375d4d2642c9aef05d7b51a76c62a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 723a4612421027a01b51e42e786678a18c4a27613a3ccecf331c026e0cc41353
MD5 16f916214f673f45e63536da326989ec
BLAKE2b-256 e01b2f7236d076ca9914381f8dd074370028fa5a8c6cd8cdc3c351d81f78cac0

See more details on using hashes here.

File details

Details for the file pymssql-2.2.11-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.2.11-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 692ab328ac290bd2031bc4dd6deae32665dfffda1b12aaa92928d3ebc667d5ad
MD5 a82266820371ff1c20dbd8df1be1a63d
BLAKE2b-256 03c996f5f4b54ded80b4d31bc8aff9a76b969c6759a9a057778ac5b693a0ba53

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 65bb674c0ba35379bf93d1b2cf06fdc5e7ec56e1d0e9de525bdcf977190b2865
MD5 edd4d6022b7def904fe8e8d2743a6c88
BLAKE2b-256 26c0ed32d1b00c50b74c44ecf97e0fa9220fa15b0bf738bdd0b51cc8022537ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 15257c7bd89c0283f70d6eaafd9b872201818572b8ba1e8576408ae23ef50c7c
MD5 16b8c46d998c3f93c102ba1872ad41ac
BLAKE2b-256 76075aeb2926ea8b836b36affb92e7c45ca2bd1d78b2aefd7f0729088fb7819c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe0cc975aac87b364fdb55cb89642435c3e859dcd99d7260f48af94111ba2673
MD5 6fdc9ae8ef1474ac1ebc7579a84c5726
BLAKE2b-256 ec5268f689c4eaa38e7dd244225c57c9bf95b33189176795e990e7e1c49821f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdca43c42d5f370358535b2107140ed550d74f9ef0fc95d2d7fa8c4e40ee48c2
MD5 bf548dfd3fa61579347caa6457b8f181
BLAKE2b-256 6a2264a9591c2376c3dae7b36bc969b9f044058ab8c7503a448986745e513d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5308507c2c4e94ede7e5b164870c1ba2be55abab6daf795b5529e2da4e838b6
MD5 a00308c00a42ba1959189be72378619c
BLAKE2b-256 c68a84153ce4c8b88c81582403332993f691c964c84c09b26b6157cadb249abd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e57fbfad252434d64bdf4b6a935e4241616a4cf8df7af58b9772cd91fce9309a
MD5 419f2f78b2b6186e71b39396fea880b7
BLAKE2b-256 8a1dfa7a1fdba730439064bb08b9f51d19d21d9898ee0945eafab780bcfb6774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 139a833e6e72a624e4f2cde803a34a616d5661dd9a5b2ae0402d9d8a597b2f1f
MD5 8e90fabf4c237d2aa073d5c1a46e7f45
BLAKE2b-256 3f61b6ccc0a372ee59144728bb68379d0c74ac9f2ac9771abc2aedeb8feb3ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 da492482b923b9cc9ad37f0f5592c776279299db2a89c0b7fc931aaefec652d4
MD5 680c23e431b89ce062edba3ed3ca54d7
BLAKE2b-256 73443c8f1b778c924cc7a205e2c3b8ec7a7d56bfdbfb0168b35349691d4747fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ae9818df40588d5a49e7476f05e31cc83dea630d607178d66762ca8cf32e9f77
MD5 c1cd77d2f8fe83f20fbb50210010a729
BLAKE2b-256 40720ec894f465b7234cedfff55613529296ea97e97d4a37d4a9ef99673cab7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4551f50c8a3b6ffbd71f794ee1c0c0134134c5d6414302c2fa28b67fe4470d07
MD5 628fc4d08ca203ec1722d84b49a484e9
BLAKE2b-256 690885496c2719f028309231a6b754e9c9a76b247337977e96644f226f5c4fc6

See more details on using hashes here.

File details

Details for the file pymssql-2.2.11-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.2.11-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 001242cedc73587cbb10aec4069de50febbff3c4c50f9908a215476496b3beab
MD5 07925283b1975a924d1ca68992a1a945
BLAKE2b-256 3ae02962c86431164351a3fc3374a04855a0137e612f8e2a1894dffb22863a5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.2.11-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/4.0.2 CPython/3.8.10

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 452b88a4ceca7efb934b5babb365851a3c52e723642092ebc92777397c2cacdb
MD5 e04007ea4e21e23370704f787a382db9
BLAKE2b-256 a28d25ebd3a38173bc7319b10a780e6ae2143be620d3ff0c26136f309fc3fa01

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fbca115e11685b5891755cc22b3db4348071b8d100a41e1ce93526d9c3dbf2d5
MD5 06a96917afb08202602e58f3a4a816de
BLAKE2b-256 3d390576ec316776eab06d8030cf2edae8ecd951fc3d8006b63a457c56fd2b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a114633fa02b7eb5bc63520bf07954106c0ed0ce032449c871abb8b8c435a872
MD5 0a2764f7608f426cbf08c65277af43b8
BLAKE2b-256 423bee340d4f4249b5ac9574b4f9c62d4e19f88704ee087fdc97b884ad55227c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85ea4ea296afcae34bc61e4e0ef2f503270fd4bb097b308a07a9194f1f063aa1
MD5 dbc78dd6e42c5c45dbc1a55bc33f7009
BLAKE2b-256 af24ff7dd92523096b88bf54be812124e6ce1017b0777b1b77e91059fda9ac73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 287c8f79a7eca0c6787405797bac0f7c502d9be151f3f823aae12042235f8426
MD5 ad817eab9bfc18b469f4f97f853f4e23
BLAKE2b-256 7c505cef55d9b949046e5a436aa27243c271e3bbbaea05cd44f177b022df0f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 984d99ee6a2579f86c536b1b0354ad3dc9701e98a4b3953f1301b4695477cd2f
MD5 531d9a81f330551e09bf4f6d79a5ac82
BLAKE2b-256 e89ad90b3f6b3b4a9dd3c159e2082eb4804190f6a1ae13606fb44ee893d33ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b78032e45ea33c55d430b93e55370b900479ea324fae5d5d32486cc0fdc0fedd
MD5 8a6b785356c791816030d0aa80082111
BLAKE2b-256 f1f14da16a30c799d6bb2735b63d3b01a7eb4cb95e9a70c23bf3812a3baa9a3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f0c44169df8d23c7ce172bd90ef5deb44caf19f15990e4db266e3193071988a4
MD5 88393bc9b141b3938ec62919de236b02
BLAKE2b-256 59276bc445d159a43b87ff03b8ac2b448717e4df0a7ea9512cd7d3471c66dabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cd7292d872948c1f67c8cc12158f2c8ed9873d54368139ce1f67b2262ac34029
MD5 09d1c92aa13221f4a77fdc315804aadf
BLAKE2b-256 8f481acf7ad64aa1826684cf5651f3aa8d9c84839aaa7bd6f2a1ef0a58dcdfaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7332db36a537cbc16640a0c3473a2e419aa5bc1f9953cada3212e7b2587de658
MD5 84764dff72a40863a4e6f97755247585
BLAKE2b-256 0f25eb914c3a5e9b943db2f272e550915b9d87d20dcd9bd0158cfe4380e8e005

See more details on using hashes here.

File details

Details for the file pymssql-2.2.11-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.2.11-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 8d418f4dca245421242ed9df59d3bcda0cd081650df6deb1bef7f157b6a6f9dd
MD5 24846d053ca259cd84ab99738b81abee
BLAKE2b-256 4e726cf17cdabe7fd8bb12a499f6f73e8895d45d6b278309b4cd69a145290244

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.2.11-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.2.11-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 167313d91606dc7a3c05b2ad60491a138b7408a8779599ab6430a48a67f133f0
MD5 bce245e0059c78e6d70acaf4f234e84d
BLAKE2b-256 06b8fccf14db79d01463c1a203cc4227e7aca155da55e12e132fa4a7338f8cdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.2.11-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.2.11-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b4a8377527702d746c490c2ce67d17f1c351d182b49b82fae6e67ae206bf9663
MD5 e903057691d5e72379555eda5872afea
BLAKE2b-256 d56b237d6636f485c87fd1b597eae1d27d60000770f5d3034a57370f5727e7a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 492e49616b58b2d6caf4a2598cb344572870171a7b65ba1ac61a5e248b6a8e1c
MD5 a0a94905079fc10986aeaf2a4f6a077b
BLAKE2b-256 c8b7cec33d286bd57e939abb07ada26b5de3bf860613d9c32f89555830ca879e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 070181361ab94bdaeb14b591a35d853f327bc90c660b04047d474274fbb80357
MD5 a00628834722a03940b26bfab4260277
BLAKE2b-256 a07b679d625517c1bc0ba78ea0098f2c85b78a227f21347e1729bf0a26621776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 658c85474ea01ca3a30de769df06f46681e882524b05c6994cd6fd985c485f27
MD5 ffb8d22ffa2a80248e69fbacdc9ea8f5
BLAKE2b-256 56450e49a4815c976c4a3a24c64f55b606ae6072407bf8e374ad7c48b710e9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b621c5e32136dabc2fea25696beab0647ec336d25c04ab6d8eb8c8ee92f0e52
MD5 90da80d89c14959425937eff53ff4ab3
BLAKE2b-256 7d407f96392066a5019c09f76f590f075761085fe100c90437dc4acd0b056019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 428e32e53c554798bc2d0682a169fcb681df6b68544c4aedd1186018ea7e0447
MD5 9d95332c979a0b89e201ce3d85de9d1f
BLAKE2b-256 991feff909b55620f54a88bb3946f7e42a21afe6dc2151810c98092737b7fe6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4eeaacc1dbbc678f4e80c6fd6fc279468021fdf2e486adc8631ec0de6b6c0e62
MD5 d1460bb6fcabba24f930a30532af2485
BLAKE2b-256 e0394763cc27957fd0b6d6efaefcfe4e7fd617bd3772696f93391e2123044358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 09075e129655ab1178d2d60efb9b3fbf5cdb6da2338ecdb3a92c53a4ad7efa0c
MD5 5b91317b1472a961e8e4bfb5bf2b6a9f
BLAKE2b-256 17cd40727b7b35355cb2ba179009eead101d1ea533bf4d3a2b62098451396bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 803122aec31fbd52f5d65ef3b30b3bd2dc7b2a9e3a8223d16078a25805155c45
MD5 7407f4904fa213160ccda737181feeea
BLAKE2b-256 ae679eeb376d7c4127125861e23683865d1ca52c03359195b61511fffc4649fe

See more details on using hashes here.

File details

Details for the file pymssql-2.2.11-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pymssql-2.2.11-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7bac28aed1d625a002e0289e0c18d1808cecbdc12e2a1a3927dbbaff66e5fff3
MD5 7aea38cfdcf45d163c83e9e28dc3ce91
BLAKE2b-256 85dc91cb9c16880b7db9d2dffcf664f634c17ed4b4109eba09b095d53ee8a314

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.2.11-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.9.6 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.2.11-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 139c5032e0a2765764987803f1266132fcc5da572848ccc4d29cebba794a4260
MD5 dfe3f2d4d22461805042119ca7cb20f9
BLAKE2b-256 04f43fb7de2c030267ca80f1018a8f864c00875d4dd2b71bdf6deb7c688d7e3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.2.11-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.9.6 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.2.11-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c8b35b3d5e326729e5edb73d593103d2dbfb474bd36ee95b4e85e1f8271ba98a
MD5 047c0e2662007f61c2811bc1eded4bcd
BLAKE2b-256 d7fb49544817f5edc04e808d4af76fed9c5a85d876ba834f800c4d993a6295c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp36-cp36m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84aff3235ad1289c4079c548cfcdf7eaaf2475b9f81557351deb42e8f45a9c2d
MD5 8aa83facb36e74c35f29c3afae5b2917
BLAKE2b-256 459641c4f4cb1e14c2db1940507743eca8857be3b231aad289953b250f5bedad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dcd76a8cc757c7cfe2d235f232a20d74ac8cebf9feabcdcbda5ef33157d14b1
MD5 8496c9c47e7433d90eb8533f2b2b7484
BLAKE2b-256 a3ae43d4fbba36cd6eb2fbadadae2a7010483ff0e13744cbdc76319d22b7b272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7234b0f61dd9ccb2304171b5fd7ed9db133b4ea7c835c9942c9dc5bfc00c1cb
MD5 8f034670da700ae3698c2ce8e62fe4f2
BLAKE2b-256 ac30e7b8a84c7ee7bf92bd51a2e8d478f51906fbdeb8864e1d16579bddc28a32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f13710240457ace5b8c9cca7f4971504656f5703b702895a86386e87c7103801
MD5 efdc246e1bb8f43002c8cb0a18a532b6
BLAKE2b-256 0ba9b1a73e1aeae0da7de32ee3245d4d0f69fb3892e03e538ae17eddb6dbf9c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d2ae69d8e46637a203cfb48e05439fc9e2ff7646fa1f5396aa3577ce52810031
MD5 f6c27e01152a92322dcf9aed172d1ac8
BLAKE2b-256 acd2796c36165b00a9107f84a321707f12323990532742321474a02ba368c039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a75afa17746972bb61120fb6ea907657fc1ab68250bbbd8b21a00d0720ed0f4
MD5 7bba1a81e5e9896191598bce2cda1d1d
BLAKE2b-256 a86721628bdea4d424c75fe110a7a232943bf840f57c6679adaae115fce9c0e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d315f08c106c884d6b42f70c9518e765a5bc23f6d3a587346bc4e6f198768c7a
MD5 67c1ed7b285f3c4b882bdfc3438238a3
BLAKE2b-256 b281ee0221c7e4ffee95de46fed9602eb9c276e4b2164cdb0ce72c784b0a5d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymssql-2.2.11-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b081aa7b02911e3f299f7d1f68ce8ca585a5119d44601bf4483da0aae8c2181
MD5 050a0a27b653eaa80ef2588a02440df2
BLAKE2b-256 41d4f6ffcd183d46a81f7e3c2783130c26749b7eb23f0994a3ec94cbb41ed948

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.2.11-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.9.6 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.2.11-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e0ed115902956efaca9d9a20fa9b2b604e3e11d640416ca74900d215cdcbf3ab
MD5 adc57338df907d0633c3da5279a35ff1
BLAKE2b-256 d39e15837047414ec6d32877a7ef00abbdb8317c31dccb599518d412d13ea12f

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