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:

http://pymssql.org

New development is happening on GitHub at:

https://github.com/pymssql/pymssql

There is a Google Group for discussion at:

https://groups.google.com/forum/?fromgroups#!forum/pymssql

Do you use pymssql?

Can you take a minute and fill out this survey to help us prioritize development tasks?

https://www.surveymonkey.com/s/KMQ8BM5

Bitdeli badge

Recent Changes

Version 2.1.5 - 2020-09-17 - Mikhail Terekhov

General

  • Revert deprecation

  • Support Python-3.8. Update tests for Python-3.8 compatibility.

  • Use correct language level for building Cython extension.

  • Fix FreeTDS version checks. Add check for version 7.4.

  • Use Github Actions for building wheels for Linux, macOS and Windows.

  • Drop bundled FreeTDS-0.95 binaries.

  • Unless some critical bug is discovered, this will be the last release with Python2 support.

Version 2.1.4 - 2018-08-28 - Alex Hagerman

General

  • Drop support for versions of FreeTDS older than 0.91.

  • Add Python 3.7 support

  • Drop Python 3.3 support

Features

  • Support for new in SQL Server 2008 DATE, TIME and DATETIME2 data types (GH-156). The following conditions need to be additionally met so values of these column types can be returned from the database as their native corresponding Python data types instead of as strings:

    • Underlying FreeTDS must be 0.95 or newer.

    • TDS protocol version in use must be 7.3 or newer.

    Thanks Ed Avis for the implementation. (GH-331)

Bug fixes

  • Fix tds_version _mssql connection property value for TDS version. 7.1 is actually 7.1 and not 8.0.

Version 2.1.3 - 2016-06-22 - Ramiro Morales

  • We now publish Linux PEP 513 manylinux wheels on PyPI.

  • Windows official binaries: Rollback changes to Windows binaries we had implemented in pymssql 2.1.2; go back to using:

    • A statically linked version of FreeTDS (v0.95.95)

    • No SSL support

Version 2.1.2 - 2016-02-10 - Ramiro Morales

Features

  • Add ability to set TDS protocol version from pymssql when connecting to SQL Server. For the remaining pymssql 2.1.x releases its default value will be 7.1 (GH-323)

  • Add Dockerfile and a Docker image and instructions on how to use it (GH-258). This could be a convenient way to use pymssql without having to build stuff. See http://pymssql.readthedocs.org/en/latest/intro.html#docker Thanks Marc Abramowitz.

  • Floating point values are now accepted as Stored Procedure arguments (GH-287). Thanks Runzhou Li (Leo) for the report and Bill Adams for the implementation.

  • Send pymssql version in the appname TDS protocol login record field when the application doesn’t provide one (GH-354)

Bug fixes

  • Fix a couple of very common causes of segmentation faults in presence of network a partition between a pymssql-based app and SQL Server (GH-147, GH-271) Thanks Marc Abramowitz. See also GH-373.

  • Fix failures and inconsistencies in query parameter interpolation when UTF-8-encoded literals are present (GH-185). Thanks Bill Adams. Also, GH-291.

  • Fix login_timeout parameter of pymssql.connect() (GH-318)

  • Fixed some cases of cursor.rowcont having a -1 value after iterating over the value returned by pymssql cursor fetchmany() and fetchone() methods (GH-141)

  • Remove automatic treatment of string literals passed in queries that start with '0x' as hexadecimal values (GH-286)

  • Fix build fatal error when using Cython >= 0.22 (GH-311)

Internals

  • Add Appveyor hosted CI setup for running tests on Windows (GH-347)

  • Travis CI: Use newer, faster, container-based infrastructure. Also, test against more than one FreeTDS version.

  • Make it possible to build official release files (sdist, wheels) on Travis & AppVeyor.

Version 2.1.1 - 2014-11-25 - Ramiro Morales

Features

  • Custom message handlers (GH-139)

    The DB-Library API includes a callback mechanism so applications can provide functions known as message handlers that get passed informative messages sent by the server which then can be logged, shown to the user, etc.

    _mssql now allows you to install your own message handlers written in Python. See the _msssql examples and reference sections of the documentation for more details.

    Thanks Marc Abramowitz.

  • Compatibility with Azure

    It is now possible to transparently connect to SQL Server instances accessible as part of the Azure cloud services.

  • Customizable per-connection initialization SQL clauses (both in pymssql and _mssql) (GH-97)

    It is now possible to customize the SQL statements sent right after the connection is established (e.g. 'SET ANSI_NULLS ON;'). Previously it was a hard-coded list of queries. See the _mssql.MSSQLConnection documentation for more details.

    Thanks Marc Abramowitz.

  • Added ability to handle instances of uuid.UUID passed as parameters for SQL queries both in pymssql and _mssql. (GH-209)

    Thanks Marat Mavlyutov.

  • Allow using SQL Server autocommit mode from pymssql at connection opening time. This allows e.g. DDL statements like DROP DATABASE to be executed. (GH-210)

    Thanks Marat Mavlyutov.

  • Documentation: Explicitly mention minimum versions supported of Python (2.6) and SQL Server (2005).

  • Incremental enhancements to the documentation.

Bug fixes

  • Handle errors when calling Stored Procedures via the .callproc() pymssql cursor method. Now it will raise a DB-API DatabaseException; previously it allowed a _mssql.MSSQLDatabaseException exception to surface.

  • Fixes in tds_version _mssql connections property value

    Made it work with TDS protocol version 7.2. (GH-211)

    The value returned for TDS version 7.1 is still 8.0 for backward compatibility (this is because such feature got added in times when Microsoft documentation labeled the two protocol versions that followed 7.0 as 8.0 and 9.0; later it changed them to 7.1 and 7.2 respectively) and will be corrected in a future release (2.2).

  • PEP 249 compliance (GH-251)

    Added type constructors to increase compatibility with other libraries.

    Thanks Aymeric Augustin.

  • pymssql: Made handling of integer SP params more robust (GH-237)

  • Check lower bound value when convering integer values from to Python to SQL (GH-238)

Internals

  • Completed migration of the test suite from nose to py.test.

  • Added a few more test cases to our suite.

  • Tests: Modified a couple of test cases so the full suite can be run against SQL Server 2005.

  • Added testing of successful build of documentation to Travis CI script.

  • Build process: Cleanup intermediate and ad-hoc anciliary files (GH-231, GH-273)

  • setup.py: Fixed handling of release tarballs contents so no extraneous files are shipped and the documentation tree is actually included. Also, removed unused code.

Version 2.1.0 - 2014-02-25 - Marc Abramowitz

Features

Bug Fixes

See ChangeLog for older history…

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

Uploaded Source

Built Distributions

pymssql-2.1.5-cp39-cp39-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9

pymssql-2.1.5-cp39-cp39-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9

pymssql-2.1.5-cp38-cp38-win_amd64.whl (423.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymssql-2.1.5-cp38-cp38-win32.whl (369.8 kB view details)

Uploaded CPython 3.8 Windows x86

pymssql-2.1.5-cp38-cp38-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8

pymssql-2.1.5-cp38-cp38-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8

pymssql-2.1.5-cp38-cp38-macosx_10_14_x86_64.whl (288.5 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

pymssql-2.1.5-cp37-cp37m-win_amd64.whl (412.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymssql-2.1.5-cp37-cp37m-win32.whl (364.1 kB view details)

Uploaded CPython 3.7m Windows x86

pymssql-2.1.5-cp37-cp37m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m

pymssql-2.1.5-cp37-cp37m-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m

pymssql-2.1.5-cp37-cp37m-macosx_10_14_x86_64.whl (281.3 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

pymssql-2.1.5-cp36-cp36m-win_amd64.whl (411.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymssql-2.1.5-cp36-cp36m-win32.whl (364.0 kB view details)

Uploaded CPython 3.6m Windows x86

pymssql-2.1.5-cp36-cp36m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m

pymssql-2.1.5-cp36-cp36m-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.6m

pymssql-2.1.5-cp36-cp36m-macosx_10_14_x86_64.whl (297.0 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

pymssql-2.1.5-cp35-cp35m-win_amd64.whl (397.2 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymssql-2.1.5-cp35-cp35m-win32.whl (349.3 kB view details)

Uploaded CPython 3.5m Windows x86

pymssql-2.1.5-cp35-cp35m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.5m

pymssql-2.1.5-cp35-cp35m-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.5m

pymssql-2.1.5-cp27-cp27mu-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 2.7mu

pymssql-2.1.5-cp27-cp27mu-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 2.7mu

pymssql-2.1.5-cp27-cp27m-win_amd64.whl (393.0 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymssql-2.1.5-cp27-cp27m-win32.whl (343.2 kB view details)

Uploaded CPython 2.7m Windows x86

pymssql-2.1.5-cp27-cp27m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 2.7m

pymssql-2.1.5-cp27-cp27m-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 2.7m

pymssql-2.1.5-cp27-cp27m-macosx_10_14_x86_64.whl (255.4 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: pymssql-2.1.5.tar.gz
  • Upload date:
  • Size: 167.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.12

File hashes

Hashes for pymssql-2.1.5.tar.gz
Algorithm Hash digest
SHA256 d60f5f90337399668e10ab6a23a1657f190c9585401eb96a5456261f7c414864
MD5 8c5b1ad306d1d7f27f955181a0fb5c0a
BLAKE2b-256 b31e9a8be7852126306e6254eb3bd549f73b0c115c9d9b6963f5892467c284bb

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 70a5c67759254e982368c5b9ccfe076447a7fd545b8376eb62d60c3b85e3b94d
MD5 8a7783fcd2ab86e6d994307e04034911
BLAKE2b-256 d62c2733701c16cbd5aa047cff8e52b84dfa9fb583fc4afa3b2a5b7f03a4054a

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 04aab92d5a1a5d4e01a0797a939f103f02c0ef777bc8dcf1e952ed30dd1d43d4
MD5 eb8ed4db74cb4a045e05acea3570a243
BLAKE2b-256 d9d918458347d60b373f4177d1dd962d0dfd8056cdf644d4f742197e96d00390

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 423.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 557719b3ebc4617543de52eaadcdb6779f0c850e95b07be5f9775a2ef6a6c61f
MD5 5ec1f2afc0110739432f94be03c18996
BLAKE2b-256 7d532ec4fbba5f5aa90f8511f0976075e9a57f02928901c9c7b350980a6df59a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 369.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 10f9b5b033eb30a38f4b36144eb4583fd478fd30afa9d64cd9a1965d22740446
MD5 2bb661a2f159b3997c685f9189405a1b
BLAKE2b-256 a31b74dfe7491db830a0516bde2930cd782d10c39f647c997fa363a716a98d83

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d0f8094330523b8e4763a6903151bc35069309ccb57c61f87eeaa910a34f5a35
MD5 26b3288e7767ecd7fa72109e7b6a4178
BLAKE2b-256 0457f29a13a09f4ef4fa32d30f4b3753ff6a27135782a1a2a44c247dab61ed4d

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3977b056c5db8d01e74d88417cbb48e3e8bf03ab09ca6ef53790d025eae543df
MD5 9cc9f9801f09de010407c3f35357e102
BLAKE2b-256 46267fcbe2dbc6bf54d71cc05f6bdc737019d81ffdf6541a9e5ee5ba815dc931

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 288.5 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2108114e4cc34ebbb8031df3e5579320e7569d51cd5094c5ddc333bf749d09a0
MD5 d29890394393aacbaeb7ae784a989ec5
BLAKE2b-256 55fa00c1cd71a8e13fc2cf9814529a91c76dc102d457752f720bc662e57b17a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 412.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for pymssql-2.1.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e19a59eb8115418c3debcc9b685b2138d0abe6c9cb8c00bc2e738eb744bc6bda
MD5 1508c2c4a4c085166ac96f3af9d4ae2e
BLAKE2b-256 04625ee571b0cc5bf27e5c26c42422d9f69a5b737736296ee4908ccadd71a3a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 364.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for pymssql-2.1.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1e8d8abab391559b70f5df97fb22fc1d9ea627edcb943e558bdc7d7f455f93e2
MD5 db8e6ea003f80e8080f029101a3c6385
BLAKE2b-256 306350a45109dc4980948e4ad3d4053dbde47496185be13c8d93db7056aafc27

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fcf98e2c7cf18fa2fa09cdb7220849cd02e7b9481cb81ccdd8940da438f58d85
MD5 2eecc32c30b7de36321f43faf6b800fa
BLAKE2b-256 40fd93ed4522bfb4fbc5edf683b5e7bc25f70c174900eb1c0cedf4713f5e43c7

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec28c73afde96def469c581208903cf035923dc6313b6916f80cbcc71f9413d1
MD5 8af3475d051b8b1658e18f904b3093b8
BLAKE2b-256 36de75cb88f4fe7cddb24e23fcf519a48a888946f33d4ca8461ee56ba1f1dd48

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 281.3 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.7.9

File hashes

Hashes for pymssql-2.1.5-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1682ead549dcec31f3b8cc47da429572ea1c4b106cb4fa91df884f968123af93
MD5 a94c25d1089d545785e65fb750ec8ad8
BLAKE2b-256 e64759269144e19d238bb1b6886caa063c6d8a2cc4a172c834bbf0a46970ebd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 411.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.8

File hashes

Hashes for pymssql-2.1.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 aad5a1218691f83a16bab6dcfa24abf9da796abf5bf168a41972fe1cf93b3e37
MD5 75402e6a359c7beaec9ec4332160cfc2
BLAKE2b-256 e8fa6b35afa4b921434074cda783e0c40538f77fe6dadd5f441eeb2e81e38496

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 364.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.8

File hashes

Hashes for pymssql-2.1.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4f6d4434c29b846f491f5236daf06175f1652953d1d162be0f1b2b037bcf9a8d
MD5 b63310de8a9577f942a387ada01bb015
BLAKE2b-256 6214b735b4f97f16f36754b023040ca878df786e762a58a420fb2bde450bf8fe

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dfc764a5a07197d742da34a593578295e9f8b64bb035c07e0981961672e18c85
MD5 8093f9e675854a6c217ca785cf9fd590
BLAKE2b-256 feaa59c7c8a2cf1ef0726cd4c64bff7072147db8cbb6b4379fb0c3d7c67331b9

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3bdbeca64af7856923b7f84ed3355e2fd00bb1b897877b0bd4a74ec638801d52
MD5 4303a227226677ea318ec640420c4027
BLAKE2b-256 ccb65fe19c8d815ae0672a5c411eccdabfb65e8dccd76731ebcce6c0eed9e056

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.5-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 297.0 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.6.12

File hashes

Hashes for pymssql-2.1.5-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0ff55a944ee7506a5e9aef7b40f0cddabc0b61f9ba13d716bff5a308923b8111
MD5 4f101e090864e8730cb9eaf4760f0132
BLAKE2b-256 a76b00271387a560932f5a5a0988943f78ad0d262f1692c91bebe14092674fc3

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 397.2 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.5.4

File hashes

Hashes for pymssql-2.1.5-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 3e077455a11fcb4cb8705cb3ae83236b8e130df9fd4186c707d638e8e43f9646
MD5 71edc0546cd73c0a4b3027316155602b
BLAKE2b-256 8f75e9bfc970d434ad8e1fdfab732f9ba154c602e596de99ea6e441bfcdf2a57

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 349.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/28.8.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.5.4

File hashes

Hashes for pymssql-2.1.5-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e4741c6ec0483dcadb8a63077a7ceb17f263d9815ea842fed6663508c8852d7f
MD5 09a9b4c876eb091012989ecffc2f5acf
BLAKE2b-256 31f26a4cc6ec6f8afe7179ce0378b2059ed66435d36703295b5ab93df13e5ca9

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c7a715c0b2b3a37462a9cf7972ed9ef0be98b2c64aebd549359f08af7f53b9a9
MD5 a0396e47779f5fa8e4d586d7955ee613
BLAKE2b-256 c51d9942e654fccae53021d848f9bde067368e72978c16a88a68ad676706362a

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 18b6550a02b34e88134b4b70eedcc6982036e459b0c91c7dd248bb1926287264
MD5 8397572f48a87806651b614bde1018cc
BLAKE2b-256 e46fd1dea30706b1b2964c564c65fac99a1f044fc45fd7a3c4c2a76ec36d603a

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 36539e42e8bb33018a05f9bd524b5a76286132ab7c82bfe9b60c4169d460fdf5
MD5 4b89bdc08f7edcf9b24ced088564aa30
BLAKE2b-256 fe2d80b6855b6bc71a210f758f566e4015418f335ac4234050a4567276a96eec

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cfd9ae0484056e46b981b7c3893ddb620ccd52f48349bada78cb141192dfbfbe
MD5 a9b759a961794a5ac406d0ee432aa22b
BLAKE2b-256 73b03a32d3554f30c5ee3369767d1fb8320f44b92a97ded50f14ba9145bdc968

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 393.0 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/2.7.18

File hashes

Hashes for pymssql-2.1.5-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 4fd4991eee848a4fd7d0b19a24fe49b508633881e221004652ab15a7e4cfe041
MD5 49d35999d5ca8f350ca466342fec91ac
BLAKE2b-256 ffc9787907c8056161a1e03bb7cbfb57c919cbc3d328ce6cadeab153a4293dba

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp27-cp27m-win32.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 343.2 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/2.7.18

File hashes

Hashes for pymssql-2.1.5-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 f36392e1874445d7cb67b928686ad424b0b3980282512b21f640828ad3adf968
MD5 882a27784d8553e8d39e2282be18d377
BLAKE2b-256 5842a61650db4bb8d35df3d8347c52f81cbc6734148e91047d15c0a456de20c8

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 658b4ea09050c85c6be09e1371335198b9441d2b5b08ef4f0b250ee4e5e8afc3
MD5 18023962e3164dc013d421700dd62c94
BLAKE2b-256 6ea0b73e2490bc272b89089e4e1eeb1e20e26dce5f66192ff8c9fdd510d91888

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5

File hashes

Hashes for pymssql-2.1.5-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c47c093cc4dc60e3356458c8e2935bab3834cea1f94a66c8ca62a5af2f060d64
MD5 24a0ad24c98e62a618950083aad73740
BLAKE2b-256 643d7dde9f7c5c6a37c20a5d4dd9eaa00ba89e3789ac28e82fa0433d70a84c4f

See more details on using hashes here.

File details

Details for the file pymssql-2.1.5-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.5-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 255.4 kB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/2.7.18

File hashes

Hashes for pymssql-2.1.5-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 cff8e775fb6294effeb716735bfd7707e79a2a79b617d0f1984bd574f26bda65
MD5 f1905de7d90f062ea98e9f066a22f3fb
BLAKE2b-256 a219e841af170894bf3dffa924b6c53b76f9013feca5f9edbef9d578c4137e66

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