pymssql 2.3.2
pip install pymssql
Released:
DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: GNU Library or Lesser General Public License (LGPL) (LGPL)
- Author: Damien Churchill
- Maintainer: Mikhail Terekhov
- Tags mssql, SQL Server, database, DB-API
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
pymssql - DB-API interface to Microsoft SQL Server
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:
New development is happening on GitHub at:
There is a Google Group for discussion at:
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.2 - 2024-11-20 - Mikhail Terekhov
General
Update FreeTDS to 1.4.23.
Build wheels for Python-3.13 on Windows and MacOS.
Internals
Fix build wheels for Python-3.13 on Windows.
Drop build in actions for Python 3.6, 3.7 and 3.8.
Add build in actions for Python-3.13.
Workaround setuptools-74.0 changes.
Version 2.3.1 - 2024-08-25 - Mikhail Terekhov
General
Fix SP returning NULL (closes #441).
Update FreeTDS to 1.4.22 (closes #895).
Require Cython>3.0.10.
Add python 3.13 Linux wheels (closes #900).
Drop manylinux2010 wheels.
Drop 3.7 and 3.8 wheels on MacOS.
Drop 3.6 wheels on Linux.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: GNU Library or Lesser General Public License (LGPL) (LGPL)
- Author: Damien Churchill
- Maintainer: Mikhail Terekhov
- Tags mssql, SQL Server, database, DB-API
Classifiers
- Development Status
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Uploaded
CPython 3.13
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.2+ i686
Uploaded
CPython 3.13
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.1+ i686
Uploaded
CPython 3.13
manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13
macOS 13.0+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.12
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.2+ i686
Uploaded
CPython 3.12
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.1+ i686
Uploaded
CPython 3.12
manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12
macOS 13.0+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.11
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.2+ i686
Uploaded
CPython 3.11
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.1+ i686
Uploaded
CPython 3.11
manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11
macOS 13.0+ universal2 (ARM64, x86-64)
Uploaded
CPython 3.10
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.2+ i686
Uploaded
CPython 3.10
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.1+ i686
Uploaded
CPython 3.10
manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10
macOS 13.0+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.2+ i686
Uploaded
CPython 3.9
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.1+ i686
Uploaded
CPython 3.9
manylinux: glibc 2.28+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ i686
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.5+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.9
macOS 13.0+ x86-64
File details
Details for the file pymssql-2.3.2.tar.gz
.
File metadata
- Download URL: pymssql-2.3.2.tar.gz
- Upload date:
- Size: 184.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18089641b687be1ebd0f64f0d1ff977478a397ffa1af372bdf10dbec29cf6d2e |
|
MD5 | e102e6966636a2a22d7b278d74464d35 |
|
BLAKE2b-256 | 81c82ce5b171581c2e4d5d9726aaa805eb01febc7ed70a3bf686e1e0f5501b07 |
File details
Details for the file pymssql-2.3.2-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 148b7714fff5a5b7ce038e92b02dd9bf68fe442c181a3aae32148e7b13f6db95 |
|
MD5 | 3c97c4949bbb11c73f3a60a780468f31 |
|
BLAKE2b-256 | adb96782fee30a1bb699aa023e132ca85d137e20466ef9fe562656a1e3dec25b |
File details
Details for the file pymssql-2.3.2-cp313-cp313-win32.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1037053e6c74d6fe14c428cc942968b4e4bf06854706a83fe8e822e475e3f107 |
|
MD5 | 7c978792d7e8dc9e4c59e87e1706aeac |
|
BLAKE2b-256 | 244f93438cd488497f1c089d077380c3bc9a7adf98666fa01d7a380861440965 |
File details
Details for the file pymssql-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef0d29c705db552f9e75230f946b0ca9db0db903c5c9ee79ce8b88ad25ea9670 |
|
MD5 | 108b1bbdc8c7fd4d3a7a9995f3858f38 |
|
BLAKE2b-256 | f1a1f99f37547126981a351e0c8854f35b7d984238c68af54ff8863ea2d3644b |
File details
Details for the file pymssql-2.3.2-cp313-cp313-musllinux_1_2_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cd806380d362d4cef2d925a6baee6a4b2b151a92cac2cab5c4bfabed4be4849 |
|
MD5 | 1b043def41d08225b8b30f30edc90fe1 |
|
BLAKE2b-256 | b694eed7fff479be51827e03c2bfcffda73dfe4e0d72c4c8144425aa63daede0 |
File details
Details for the file pymssql-2.3.2-cp313-cp313-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee8ee2c7c227c413ad9b88ddba1cb6a25e28c217ae73ecac1c7a6b8c29003604 |
|
MD5 | c740045e3d6d2794ba351bf2525b207c |
|
BLAKE2b-256 | f52a7ad8a39d8ff79a8f7ee7fc5a9c43f22cd365aff3f296b20a702c164eebb6 |
File details
Details for the file pymssql-2.3.2-cp313-cp313-musllinux_1_1_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.13, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2568944db3888996e161b40ad06c1b9e0fbb6cfcb38279a3abb98ece7a8e1c4a |
|
MD5 | 2404fe1b3dc193bf58c4798111723715 |
|
BLAKE2b-256 | 1cfa9e1d88e2f025ce8d389f861bd962c0558ee23bc1b6d18981a967b6b51e6d |
File details
Details for the file pymssql-2.3.2-cp313-cp313-manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0c2b11aca16617cacaf385fb94134e73ba0216a924f9b85778cc7e3d3713361 |
|
MD5 | 911ea6065adef31754c4be1d92beb1f8 |
|
BLAKE2b-256 | ca5fec35ac1efa66172c626a0e86cc1520d2964b415fae6f2a7a818ef1d98fcc |
File details
Details for the file pymssql-2.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1afda7b7022eff9451bd83e3f64c450a1a8cdff4ba8b8e399866dcd2cb861a1e |
|
MD5 | 1cdad8dec8561587348a99348df3317d |
|
BLAKE2b-256 | 405ca1e6bbb17c5a606eeba78da8f13784c5afa6e614c9a44348a95c229fbb0e |
File details
Details for the file pymssql-2.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3870085a49e5332bc67ecb24f217c586977d5352eb51598244fc7bc278eee3e1 |
|
MD5 | 7324cfa520f808509dcda1e70bdf5834 |
|
BLAKE2b-256 | 9775b1e7586c73e63f35664cf4dcf8df79d18892a3a57db3e93039443fb5a568 |
File details
Details for the file pymssql-2.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1791f4627c42fe2d2833c884d036b0c5c8cf628f2cdfa3536191c217acf729e |
|
MD5 | 440cce2e791cd56be162d7b1b13ba394 |
|
BLAKE2b-256 | ea8d8146de09a00a3c1737c1f1feb83a10519a406da045b3e7f5ad315d2266fd |
File details
Details for the file pymssql-2.3.2-cp313-cp313-macosx_13_0_universal2.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp313-cp313-macosx_13_0_universal2.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, macOS 13.0+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f282e701dca155b3e7f1644d7e3b60c201ca5f3be8045bce34042d3c737d63ee |
|
MD5 | ce6dd79d3755fb3a5a19e6d2bc493c1a |
|
BLAKE2b-256 | e026f90c0251c0452fb6a80c44a7d7eb9b1e63e1657098659364ec81cb9cbb87 |
File details
Details for the file pymssql-2.3.2-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3f9e7eb813dfeab6d01bf6474049bb76b0521235159d3e969ec82df384eac49 |
|
MD5 | 1d8ee233ccce8db1dc1d3b8c7f2b0a6f |
|
BLAKE2b-256 | 112ebe51090e0c1c99b9259d06d2e3533c0e3681fd95203fc50040e6c18685a5 |
File details
Details for the file pymssql-2.3.2-cp312-cp312-win32.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b16d5880f7028442d6c49c94801ce9bff3af8af0fbda7c6039febb936714aed5 |
|
MD5 | 7fa3caba9a2cb57d1198d45f3c172862 |
|
BLAKE2b-256 | 6e5bfa906b132431009174bb966c7b7ce0da3dbd9343dc6e1ed6c448b22a4291 |
File details
Details for the file pymssql-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41d09e1b2534229b288c37b88c1de3d964317af2c7eec58bfb97e01d679eba27 |
|
MD5 | f852713f12cd59d48724d4e6a05420c0 |
|
BLAKE2b-256 | 9beb376e2ae6ba7c7632137b9f46318573d0a988fc32184aea68eee64dc78d7a |
File details
Details for the file pymssql-2.3.2-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6019d2939963112662288704f608f31634038bffcfd5cad1bc79cb167edb3cc1 |
|
MD5 | a2d3d4b1a7ed6d20a23840e1dbdf6dfd |
|
BLAKE2b-256 | 7127aff4b90fcfdfb3227f881d9ca6665139adbf1c397106e0f588493156e449 |
File details
Details for the file pymssql-2.3.2-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc13c2e0f1b8efc3a46941de9db768fa59937b5a54081ec0cb0ff0da17d1fff3 |
|
MD5 | cb31445eaf2874a379439efe167669df |
|
BLAKE2b-256 | 85ed79ec7edbd5a99e445d85a46b48ea71ae9a920c9e92b743318446f4d4dffb |
File details
Details for the file pymssql-2.3.2-cp312-cp312-musllinux_1_1_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f4093b95f1f3a1232687fc92f652aaf675eb423db8549c16d146b91ac2f0eba |
|
MD5 | 3e29211ced4bad4f69422788eef8c659 |
|
BLAKE2b-256 | 67ecff4d831bd250b2b5491c7f85abf04ce2c5613cd955e1855957b98fd72b89 |
File details
Details for the file pymssql-2.3.2-cp312-cp312-manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2b1da4e68d618c7972e583ae19f386ae620258acb61564e8067c203f27cd769 |
|
MD5 | de5bf04589ac176b8914a76e8d5bcc87 |
|
BLAKE2b-256 | 3053626d5f203d3d05e6af5cfd1c611def622abb815ba7315c766c4faefd569d |
File details
Details for the file pymssql-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b156b15165f7a0bbb392a124d8e2d678145c93e5bfcfef3b637e4d87eadcc85b |
|
MD5 | d715827238e5ed76bb5628659c5b35ff |
|
BLAKE2b-256 | 38d328e827a01234853fcfbb71703a5dcee490988eb5d1ff8859ac9fcc6db38c |
File details
Details for the file pymssql-2.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 793a93da1521fa66bf02b3b873065e22bf14bda5570e005ce3d5fae0776d7b92 |
|
MD5 | b3ff46c1f3fe556e19f71ede43619968 |
|
BLAKE2b-256 | 9e80ae1a77e5de1ca0a9f0a1ff5d9b60dc9c270e3afa6932302e459bd529aadc |
File details
Details for the file pymssql-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1bc33ed9af6d8ebea2d49144cd2317b7ae1105dd51dddfd46982c90c8f0cf6ab |
|
MD5 | dc76128f280bc13726dc2eb0f637d841 |
|
BLAKE2b-256 | 76dabe4296cf0b4fd8b4f1a082cba2b8d08d7e730e98b8f0be62c84db891796f |
File details
Details for the file pymssql-2.3.2-cp312-cp312-macosx_13_0_universal2.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp312-cp312-macosx_13_0_universal2.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, macOS 13.0+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 235c230e56d8c8c5f289e665c538f31d967fec302d05ad269dcd64fa9d6eb3b7 |
|
MD5 | 4959d1bbae131280189db43e9abdc3e7 |
|
BLAKE2b-256 | 03b4d9b30b565cf8af6d3f0e90802694860ff2e1c269d444be6ca24c4cfd9761 |
File details
Details for the file pymssql-2.3.2-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79cdc3ed1da3129ba56232127db86279728c4328595e2532ed4d0da6379a5c72 |
|
MD5 | d2ab8c8be0191358f40cd6c001e60d3e |
|
BLAKE2b-256 | 65f89336690fb988f7a848aaafd0b1df9aff9e16b7c24be1da7fc27e64e0b30c |
File details
Details for the file pymssql-2.3.2-cp311-cp311-win32.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97fbd8491ad3ece0adcb321acec6db48b8fe37bc74af4c91bb657d4d9347d634 |
|
MD5 | a34303c126136acd048506c0b24ed02e |
|
BLAKE2b-256 | a49e94af63f23becb5b411eba30d2090f17b8455c91166209e3c672d3199e859 |
File details
Details for the file pymssql-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0768d90f96ae3267d7561d3bcfe94dd671d107489e870388b12570c3debbc552 |
|
MD5 | 62333db643da4a33b2ce5276600a0bf9 |
|
BLAKE2b-256 | 369b1ced1ab60e5b9e025aab65bede8f05595e1c763db1decd20c093f8267176 |
File details
Details for the file pymssql-2.3.2-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9361593a89c9162fc631baf648a87e2666373382d9d54aacfb19edab9ceb2007 |
|
MD5 | 84fac2a2708b1fc8072a9f34e82cee2b |
|
BLAKE2b-256 | 3d2907da1e426b9627a870e762ec2d1b7f5fc144d4c201a312cec79633486cb0 |
File details
Details for the file pymssql-2.3.2-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5904d78e61668ec89761d3ae01efd4b42b31d820f612929f449e93cd23ba3c54 |
|
MD5 | dcde34f239f457997b54afa4ad6ab5e2 |
|
BLAKE2b-256 | b9875247858d1a7d03634c2082679c1a4fe40775e226fb3fc70c855851fe9938 |
File details
Details for the file pymssql-2.3.2-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e3d6fada7fbe7a5f5fafc420673f777bab3f399c78fa44e29de6a8cbc36e515 |
|
MD5 | 403fcd12155f52358f957af74d54a511 |
|
BLAKE2b-256 | 2fa0d80b9ad5807f5a14e249f011a6d24f16fa6ef96bd6e643d9b677d74d90a0 |
File details
Details for the file pymssql-2.3.2-cp311-cp311-manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c99dba4bf5b1ce10657e9e2885f18ba9179190251b63d1498e7d6d72e64f1ce |
|
MD5 | 926c5fe05b461b71627a68382b07404c |
|
BLAKE2b-256 | 9fcbd8aadb2628917b2fc386446f871dc32124c5029c9e48f6dea4d887dba70c |
File details
Details for the file pymssql-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae02cc1594f0addd748bf5ac1ccc7a73c03846ada9c553663c381b242b586606 |
|
MD5 | 54d167363c0fbb27d7915a81c4a99ae3 |
|
BLAKE2b-256 | 06d63499b98a591bf713deed6f48b1b3b3e80c008b4ed1760d6f9c07f7824772 |
File details
Details for the file pymssql-2.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0831c5c95aab0b9aba5142dc97e28f59c4130e1c34ffc13ecbfdd4d2fe45b8a0 |
|
MD5 | c02e07b92f1b24c1d00be08099e28c2a |
|
BLAKE2b-256 | 1bf00359b8a371723d8e3a9255755e42fcb3ab32700a4a14b3121dbc438ad39f |
File details
Details for the file pymssql-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9737c06b13ca2012b9900185fa3af72a37941c532da2e6373dd7c9ab16abddf |
|
MD5 | e69f4286712a4f0c821a0563135a3f31 |
|
BLAKE2b-256 | e8e03a87b214403c361a19bd6c7d8462a6f3a1e87661909fc326b8f5f0efd9f8 |
File details
Details for the file pymssql-2.3.2-cp311-cp311-macosx_13_0_universal2.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp311-cp311-macosx_13_0_universal2.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.11, macOS 13.0+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a44a0898dacba4e25cac8778d0ed112e297883fe862204e447081888da78dc4 |
|
MD5 | 8e73f0c7f7824b8952b77ce98b6a0f85 |
|
BLAKE2b-256 | 310da919acf75a26a5c5dabceb11b4f7446d7860a761ef68bdce3cd1055c9d25 |
File details
Details for the file pymssql-2.3.2-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdd774b26407babd0205ef85a098f90553e6b3da77a22322a1e7d2cb51f742c0 |
|
MD5 | c533485c1bc9af6f9ee5a6249feaf4a7 |
|
BLAKE2b-256 | e23d0e5a83e081f1f2f19b6a0a65a98d8c77b794d80215938f195c5836c06238 |
File details
Details for the file pymssql-2.3.2-cp310-cp310-win32.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbe9058b6520be74463476ff2cdb17bbab5ff60b60b3ed7bd8bd2d086bdfd9bd |
|
MD5 | d73bdf9f4d957c317ad76fe39a3cc106 |
|
BLAKE2b-256 | cc5c0a7fa7e44aebbad2c2769091afe85cf1ebb65e811b970428103d659eb4b9 |
File details
Details for the file pymssql-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82ed3dd560d3fb222d26ce3a7373f46dc3ad1d50b6e6417ef7399e87fa9aefe1 |
|
MD5 | cf09a66d15434c2247edde0469fbd1b8 |
|
BLAKE2b-256 | 95b171e4f987d5facf1e6309583763c3769f454f061889326156d5350bfede09 |
File details
Details for the file pymssql-2.3.2-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23f5e2e2bdba1cf7cecbac66dd07de7631a8efca5692efee18ff46ebc087b757 |
|
MD5 | 008594c80c5458095c574cb2e3c6c972 |
|
BLAKE2b-256 | 20960e978914c5ac936b0ff547dda0abc8aa0393034a3e20932f524da4510d91 |
File details
Details for the file pymssql-2.3.2-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72b6599963b6e066998c4b27b7bf207684c243b12b1e5dcc180b2af22802ae6c |
|
MD5 | 217a319229120b9cbab51608eef8d9a6 |
|
BLAKE2b-256 | 481302d8d68637b9e35176c81a59758eee2d951713e742ffe426fd7b490d6ef2 |
File details
Details for the file pymssql-2.3.2-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26bdb7abd5f107b6be422635f03e2cecaa52a5f4c394a205014586abbff9e72a |
|
MD5 | 405583f2e88118b2ec21054a8dabdc92 |
|
BLAKE2b-256 | 60f1e50ee90dc03b1d57356ddefef037b0f5c1404c63ae1af2f2583184cfdd79 |
File details
Details for the file pymssql-2.3.2-cp310-cp310-manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c24ba6aedb9b5540b56f3e74bff92b687c6e90c00650823385729c7e55923cf5 |
|
MD5 | d8a806dee3b39f6e9fcab23f133d33e4 |
|
BLAKE2b-256 | 2e8fc58225d71a4c5929493c8af8ca004f2c539d456920ef0a20a70459891f8f |
File details
Details for the file pymssql-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06883bc9bdb297ae9132d9371b5b1a3a223c8f93dd6a87d1c112c6a688f26d53 |
|
MD5 | b277046c60489a2ca340a7306e92f579 |
|
BLAKE2b-256 | 9a786d78d3ed551341d86cc3b56dc944d0c6dea5ceab7c634b9b6e8fc51242f2 |
File details
Details for the file pymssql-2.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab912d1178d5977e421cf9c4d4071958b223cbe4a2b6dd64611d521aa6bb7187 |
|
MD5 | b0723267617acaeb4161e38eb5c06c1b |
|
BLAKE2b-256 | a778b47a88636cbe1a6f41cc11b45bd986aab891f1324843d3449ec83aebc2ba |
File details
Details for the file pymssql-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb629b5fb0376fbf39d575cf1365e504b84877b19f9e8d53caa5228fed56894a |
|
MD5 | 6f131f721a3e21c7369596510ead5094 |
|
BLAKE2b-256 | 8d76953d46be8d24a92806c060f1fad16f21e4aae8257fa30587e6eb8d5dac82 |
File details
Details for the file pymssql-2.3.2-cp310-cp310-macosx_13_0_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp310-cp310-macosx_13_0_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73fac766b448613d7ae26e6b304b2cb8a7ffebccaa373633bad3b3cbcc829935 |
|
MD5 | 86cd70bb1eafd88a0a84cf1ee50c44ee |
|
BLAKE2b-256 | 90a4dbabcdea2f07e580c30ad0e159e22227bf6c8e0ba5800e8bc29585d77f8e |
File details
Details for the file pymssql-2.3.2-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22fb0fdd3b889bc10abbe3aa2abe7a008b30a6367b9ba159412d185d7d8fda9d |
|
MD5 | ef33915eb49094ab09f3b7220638cb98 |
|
BLAKE2b-256 | 91260349fa033ae139fc8829837c4c26842ab5ef71a926fbadac81658f7171ad |
File details
Details for the file pymssql-2.3.2-cp39-cp39-win32.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-win32.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa08b6203b2b5ed5ce47f80d5c529459181300d7e0d0c1e84390a4d01d45e509 |
|
MD5 | ddb5ca05f4ea7d04748050452f9459b9 |
|
BLAKE2b-256 | 080ce340d3e20d7c8c55cad47f53e6b9de65ace4d4d341015718b74ebee1626f |
File details
Details for the file pymssql-2.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 4.7 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22b1ce3a48f28ee7d06ebc9ed94276d0bf1c99051ee1df3d2377b74721bd62ef |
|
MD5 | 4b18d808c18504905c0d9c615c94954f |
|
BLAKE2b-256 | a25e4f98dcd8aaaf364b86cb80d06fa28d8652e3de88eadfaa80900190377f88 |
File details
Details for the file pymssql-2.3.2-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b14cc65369d1425f2fb517609113465a0f55f19a49648160f2d10be4cb43ff4d |
|
MD5 | 9a4fd871b57133693c7ae2ef1815ac0b |
|
BLAKE2b-256 | 5f8d74097c30fb2a098c2498b922baf57d58c5f47009867dafdeacea1d8660a1 |
File details
Details for the file pymssql-2.3.2-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cdc2619e7b4192b8d6619fd52ba8a2eae18b38b376f8649fb8f0727c4e88ff9 |
|
MD5 | 59d09c57190c770bbddcfa76f30433bf |
|
BLAKE2b-256 | 7a5518d67fccc7b7501c2783f92eb0ddad251ea53715ed8d9368ba7d97dc5ed3 |
File details
Details for the file pymssql-2.3.2-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a20a17db870fb0e446a6d6bf7664aaf84af7be58ab1fad025cafa4e092507a1 |
|
MD5 | 01e52a93d3650dfdc27f6875743bc027 |
|
BLAKE2b-256 | 9f4f40180a3c509ac72f3703ac7eaf6485983744c492db5420ecd98e5fa20179 |
File details
Details for the file pymssql-2.3.2-cp39-cp39-manylinux_2_28_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 4.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3eb201c402bcf4f5b9399df0bb20d522636d2e87d1c6957a0b6d772ee636c61 |
|
MD5 | 93b16071d0317f3bb55a7ff3f498792b |
|
BLAKE2b-256 | 1891cb0c68f205464b8c4ac3144e032a89f26e483bdbfd02701e4d438ac7678b |
File details
Details for the file pymssql-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab48de09864fa6f49c575ef569f6773981d0cd905ff7288b5b185f8079a5a21f |
|
MD5 | 94dff0c8e3536f1392b6f32a36a5aaed |
|
BLAKE2b-256 | 3cbeb933e6f30b8f8a5028123db6c74a5d6b02bdba2fb69c4d8307d23d56b3da |
File details
Details for the file pymssql-2.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08facd25a50a7279385d1ffcee9d6d83c4e361db1af38e14519a87d7b1cadb10 |
|
MD5 | f4373b38e467fdd5e60869a5e9e09b49 |
|
BLAKE2b-256 | c8270bfb355f345fe8c91d5aa8feef05ab70d14bb9d121b1e587c538b5c4afe2 |
File details
Details for the file pymssql-2.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33ad813092f8fb8f74578c5b5e37c818c4ae130fd4047cb28f0b256f2f107367 |
|
MD5 | 595578fbc39f7f9acaa08ad6eb5073e7 |
|
BLAKE2b-256 | a8a3f42d5a6b7bfb358857ba631de588db4a29716a29b963d8a9596a99fd9a42 |
File details
Details for the file pymssql-2.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
- Upload date:
- Size: 2.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb8a7b197aaf466a7577ca6690aa9d747081b653ab212d052d71f3cc10587c3b |
|
MD5 | 8dcc2e5834013d5990a6a056ad83dfb1 |
|
BLAKE2b-256 | 75d8e3ffc5874e9d1dd11c6f7c2ff7a73f3bd9baba616ac093759578460e6490 |
File details
Details for the file pymssql-2.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd5fe7552edc81628e4242b4671f7bad5ff1ec790bae5c7615d989375620edac |
|
MD5 | 1cd39f00b50ee832013c774f9019e7f1 |
|
BLAKE2b-256 | f492767832c8dd2bfc2da812655ae7c2b9022d57c68da5f3cc52d116e1d55596 |
File details
Details for the file pymssql-2.3.2-cp39-cp39-macosx_13_0_x86_64.whl
.
File metadata
- Download URL: pymssql-2.3.2-cp39-cp39-macosx_13_0_x86_64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9, macOS 13.0+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bac6f355c454f94b0e15a04b7841236e5c5c4ef44d2d1beed00a3ad7b50ccc53 |
|
MD5 | 74a5badb1352f0e3e55d06e6f635f2ab |
|
BLAKE2b-256 | 72af7882f11de250b5713f48205a21b37f335097bf3c75e5a124441aac52889c |