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://travis-ci.org/pymssql/pymssql.svg?branch=master https://circleci.com/gh/pymssql/pymssql.svg?style=svg https://ci.appveyor.com/api/projects/status/ts4q4nptm15ac6j7/branch/master?svg=true 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.4 - 2018-08-28

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

Uploaded Source

Built Distributions

pymssql-2.1.4-cp37-cp37m-win_amd64.whl (411.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

pymssql-2.1.4-cp37-cp37m-win32.whl (353.4 kB view details)

Uploaded CPython 3.7mWindows x86

pymssql-2.1.4-cp37-cp37m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7m

pymssql-2.1.4-cp37-cp37m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m

pymssql-2.1.4-cp36-cp36m-win_amd64.whl (411.4 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymssql-2.1.4-cp36-cp36m-win32.whl (353.8 kB view details)

Uploaded CPython 3.6mWindows x86

pymssql-2.1.4-cp36-cp36m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6m

pymssql-2.1.4-cp36-cp36m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.6m

pymssql-2.1.4-cp35-cp35m-win_amd64.whl (406.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

pymssql-2.1.4-cp35-cp35m-win32.whl (350.7 kB view details)

Uploaded CPython 3.5mWindows x86

pymssql-2.1.4-cp35-cp35m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.5m

pymssql-2.1.4-cp35-cp35m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.5m

pymssql-2.1.4-cp34-cp34m-win_amd64.whl (409.8 kB view details)

Uploaded CPython 3.4mWindows x86-64

pymssql-2.1.4-cp34-cp34m-win32.whl (360.0 kB view details)

Uploaded CPython 3.4mWindows x86

pymssql-2.1.4-cp34-cp34m-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.4m

pymssql-2.1.4-cp34-cp34m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.4m

pymssql-2.1.4-cp27-cp27mu-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7mu

pymssql-2.1.4-cp27-cp27mu-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 2.7mu

pymssql-2.1.4-cp27-cp27m-win_amd64.whl (419.6 kB view details)

Uploaded CPython 2.7mWindows x86-64

pymssql-2.1.4-cp27-cp27m-win32.whl (359.0 kB view details)

Uploaded CPython 2.7mWindows x86

pymssql-2.1.4-cp27-cp27m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 2.7m

pymssql-2.1.4-cp27-cp27m-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 2.7m

File details

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

File metadata

  • Download URL: pymssql-2.1.4.tar.gz
  • Upload date:
  • Size: 691.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4.tar.gz
Algorithm Hash digest
SHA256 3201eb1b1263ad55b555d727ed8bed0b12b7b9de3ce5e529206e36d4be1a7afb
MD5 18547a8c7aaff6f7f65b9885de61c026
BLAKE2b-256 2e8199562b93d75f3fc5956fa65decfb35b38a4ee97cf93c1d0d3cb799fffb99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 411.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for pymssql-2.1.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4fd384371ddc260c12d79dc8bcc239c722d571d1701cba1ec7788617db603a06
MD5 8aad4edf7a2bcaedeb1ad1f16734741e
BLAKE2b-256 450c81bf31194f4dc0ee06b429efe98ce2fc202876cd4749f95bddfb9f3b0a50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 353.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for pymssql-2.1.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c830088a8c1571e4606edd461d5f2291c8dacea2cd615466fb4764773d968949
MD5 32443c9d9564ed0f1c204999ff5a3b05
BLAKE2b-256 e39e75b78d890a07e74f6876e1b22456f236887a4189d3e793cc04204ca15a32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fe7e4bf3c79b3f0425588bd99188e431727f4d6b19249dcb81b94e10d261d86f
MD5 5efae42c6781d69f5ec3f3385768b019
BLAKE2b-256 be09455835d22f84636dc646f4dc6afcc79c226d8bc253ef767ca8a922eec74a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a3869e6f0ea3a49f4faf8489638341578b4e638e86dc4067a69e8fa5d0469a2
MD5 1e6d5caec91f64370a55535fe55751cc
BLAKE2b-256 7add95d34a5cf832c2185882185017576c6df40e4fc67083df26afaa5c9eb7e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 411.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for pymssql-2.1.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 46dcd9c2f371d7d5744c22d6a3dc426b10debd12e0cab5b69c92f29b8eb90e21
MD5 01668a7b8543a0d0c2b2afb2891c4846
BLAKE2b-256 bd3729e06859fc71620d8eb4841a7701c9f60859223e442686de28d7697bcd2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 353.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for pymssql-2.1.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 056dacf9120ae3a01955c52ce425b7ee7da499b27bd80f3bfcfb4013ae7adff8
MD5 224e7dee17e7c3304337c1336da028eb
BLAKE2b-256 ab10377aff1ba8c10a93ed75c48bcf4089c152c5c6f6a4a940b00051818910c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d30001a9e00dbbb7ca04922eeb4df89e946bb083bbf7114667b8cbb7e08d9a0c
MD5 57f3507d6d5a5e6531529405a2d63a36
BLAKE2b-256 8480de3af1d2d76792841a94196c6c06c67fb4c3b11ae3a5f5811c5069b94d76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 47a567ed94618a89c83b8ce24c886ff65f0c063ef02ed7240b98ab953ca95b5d
MD5 d0c990614e3098889aae4314e019561a
BLAKE2b-256 7de7760023e62f14ed6a88227d62142f35318060e7107368892823b0b0415b4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 406.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.3

File hashes

Hashes for pymssql-2.1.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bc2f3f93711cb6262cee83f63e9e38021a79f0d1b4c0deec7f68de97b49a8938
MD5 61f6af06a254ee9f3e1d7778811e6691
BLAKE2b-256 ccb180d6aca20d1809dd2d7b5f03c2d2a58f211d71e28d4713dce2fb9e7f3a64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 350.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.3

File hashes

Hashes for pymssql-2.1.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 254e3552b6a52b40cb437f4b75683e003398f8ce12da0e40908a07703882802d
MD5 88be85c1e8a9f743c2842316cad637d0
BLAKE2b-256 5cfe906dda137a832d6857af277f5b75dd3d32c184c487390ab638eec9159f72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fb340fbf5525ea51c5d4b704340a6fe8ec97e5380b5cd17107ea48179d1c1605
MD5 c3507ae7960cffa860148492b6a7ffe9
BLAKE2b-256 81471fa6ef755f1149c290b07ad472c98a71601e35efd4f0817160f6fc65d8c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e730e1fbbde44227ad34c024e71c1764503cf97c3812c520766867d1ee916e68
MD5 d01ef42a26f2bad7598d8a3ec96b83db
BLAKE2b-256 73588e66c210642ff4dfdd89b70471704887d4579c9142e8bc46450219f5997c

See more details on using hashes here.

File details

Details for the file pymssql-2.1.4-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: pymssql-2.1.4-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 409.8 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/18.2 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for pymssql-2.1.4-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 c32df8c15dda0a23551348a51b7b41f0bfe25be8925c7afebcef977f89cceb62
MD5 cf4cc27e72539fbb5833d6004132d7ca
BLAKE2b-256 866134986f3350e1496de305917d34b9f1482792537960ee23bb751f5949d183

See more details on using hashes here.

File details

Details for the file pymssql-2.1.4-cp34-cp34m-win32.whl.

File metadata

  • Download URL: pymssql-2.1.4-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 360.0 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/18.2 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for pymssql-2.1.4-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 e077af5c80e768976b47789644bd7ea211131b5d8ed174e44995b3ef34009aad
MD5 59f7c542a53617a76f4be4d352a87b0f
BLAKE2b-256 d5dd391b51c0352e168e3783dce93d873b92cdb837e539cd91910a1203920960

See more details on using hashes here.

File details

Details for the file pymssql-2.1.4-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql-2.1.4-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ebecdd63e9a6c871dcd25c877895f9ed2ba96549743cb4d45d201fc478f1bf28
MD5 f6863070bc45c796ecf6c5fa79ce2209
BLAKE2b-256 2508a5a8f76457fedc963cbcafb8c7033070ca6b84483aed56b7486dabbdcc5d

See more details on using hashes here.

File details

Details for the file pymssql-2.1.4-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql-2.1.4-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 084deb1462fb52c0d802b006c673f3a02ce562b7b3a2f65f6a6bd2162a0850a2
MD5 432f046903d6177590fefc73a24b3375
BLAKE2b-256 50ba922667bcd5327c1fb1f009424eeaf6caf669ad20d3d70a109568d0b0f667

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f58810f6917916af539948b3ed53881aca4aa7db80b662dcabcbf93a3cdea938
MD5 8c0131905d1f96998cd85584a1184e2d
BLAKE2b-256 a643c8430ec972c15999921cbc1bb8396049878695b78c182056bd03240d8c5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3bf234eeb24ba6048ab1bb069395e3acd212376e91d8d7fdfdcfef60178cef4
MD5 665bbdeeb25418a56e0b444fbdcd2309
BLAKE2b-256 e7ba64acfbd968083d6e8c5276b0cedd9a4226ac722a85c4bb63f7036c4a23ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 419.6 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for pymssql-2.1.4-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 7544b8b1b38d101f0b7bd794d2da53dd19fee38e3dfe7312cd9bc87252347260
MD5 e388bef26401ba5335f59c494a3f5c48
BLAKE2b-256 a5d9ebcdebcc48557eb4d22bd0f0c3c82696e1feb0ded2667f08ea9170e6e898

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 359.0 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for pymssql-2.1.4-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6da06dd6a37b3472b034a82fd156c63c6cb288b996a6ef252e874e343b37a254
MD5 b11cf9088841e29a85ab07e085f9801f
BLAKE2b-256 9328b2cd07f23d93dba38e09b05c71b348a3dbbea80e8b46231485ff10c61097

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cfbce903ed29d2979168ac5d253e8241cb73901ec79c1e6692eb912ebc990be9
MD5 aaf265c8b788cf9585d3dc0cb3019403
BLAKE2b-256 5978ee8176773c3c717a64977bea61c0a9c453e4ffd6f03e76a70d88e510b2ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymssql-2.1.4-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5

File hashes

Hashes for pymssql-2.1.4-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0479294789d7f230016d87e115a23e51617909611de7b1ced1263c1e365f6c91
MD5 ea647f5985327da545d4119363e07114
BLAKE2b-256 d715e7220eaa97e78611b9c3d4d33ad31a76a230c2b2287943222a04872bc756

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page