Skip to main content

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…

Release files for pymssql 2.1.4

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

Source distribution (sdist)

Source distribution for pymssql 2.1.4
File Size Uploaded
pymssql-2.1.4.tar.gz 691.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymssql 2.1.4
File
pymssql-2.1.4-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pymssql-2.1.4-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pymssql-2.1.4-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymssql-2.1.4-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymssql-2.1.4-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
pymssql-2.1.4-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
pymssql-2.1.4-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymssql-2.1.4-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
pymssql-2.1.4-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
pymssql-2.1.4-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
pymssql-2.1.4-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
pymssql-2.1.4-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
pymssql-2.1.4-cp34-cp34m-win_amd64.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-64 Details
pymssql-2.1.4-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
pymssql-2.1.4-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
pymssql-2.1.4-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
pymssql-2.1.4-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
pymssql-2.1.4-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
pymssql-2.1.4-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
pymssql-2.1.4-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
pymssql-2.1.4-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymssql-2.1.4-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details

Total release size: 20.6 MB

Release files / pymssql-2.1.4.tar.gz

Download URL pymssql-2.1.4.tar.gz
Size 691.6 kB
Tags Source
SHA-256 checksum
How to use checksums
3201eb1b1263ad55b555d727ed8bed0b12b7b9de3ce5e529206e36d4be1a7afb
BLAKE2b-256 checksum
How to use checksums
2e8199562b93d75f3fc5956fa65decfb35b38a4ee97cf93c1d0d3cb799fffb99
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymssql-2.1.4-cp37-cp37m-win_amd64.whl
Size 411.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
4fd384371ddc260c12d79dc8bcc239c722d571d1701cba1ec7788617db603a06
BLAKE2b-256 checksum
How to use checksums
450c81bf31194f4dc0ee06b429efe98ce2fc202876cd4749f95bddfb9f3b0a50
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymssql-2.1.4-cp37-cp37m-win32.whl
Size 353.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
c830088a8c1571e4606edd461d5f2291c8dacea2cd615466fb4764773d968949
BLAKE2b-256 checksum
How to use checksums
e39e75b78d890a07e74f6876e1b22456f236887a4189d3e793cc04204ca15a32
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp37-cp37m-manylinux1_x86_64.whl

Download URL pymssql-2.1.4-cp37-cp37m-manylinux1_x86_64.whl
Size 1.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
fe7e4bf3c79b3f0425588bd99188e431727f4d6b19249dcb81b94e10d261d86f
BLAKE2b-256 checksum
How to use checksums
be09455835d22f84636dc646f4dc6afcc79c226d8bc253ef767ca8a922eec74a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp37-cp37m-manylinux1_i686.whl

Download URL pymssql-2.1.4-cp37-cp37m-manylinux1_i686.whl
Size 1.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7a3869e6f0ea3a49f4faf8489638341578b4e638e86dc4067a69e8fa5d0469a2
BLAKE2b-256 checksum
How to use checksums
7add95d34a5cf832c2185882185017576c6df40e4fc67083df26afaa5c9eb7e7
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymssql-2.1.4-cp36-cp36m-win_amd64.whl
Size 411.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
46dcd9c2f371d7d5744c22d6a3dc426b10debd12e0cab5b69c92f29b8eb90e21
BLAKE2b-256 checksum
How to use checksums
bd3729e06859fc71620d8eb4841a7701c9f60859223e442686de28d7697bcd2e
Upload date
Uploaded using Trusted Publishing?
What is 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

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

Download URL pymssql-2.1.4-cp36-cp36m-win32.whl
Size 353.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
056dacf9120ae3a01955c52ce425b7ee7da499b27bd80f3bfcfb4013ae7adff8
BLAKE2b-256 checksum
How to use checksums
ab10377aff1ba8c10a93ed75c48bcf4089c152c5c6f6a4a940b00051818910c4
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp36-cp36m-manylinux1_x86_64.whl

Download URL pymssql-2.1.4-cp36-cp36m-manylinux1_x86_64.whl
Size 1.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d30001a9e00dbbb7ca04922eeb4df89e946bb083bbf7114667b8cbb7e08d9a0c
BLAKE2b-256 checksum
How to use checksums
8480de3af1d2d76792841a94196c6c06c67fb4c3b11ae3a5f5811c5069b94d76
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp36-cp36m-manylinux1_i686.whl

Download URL pymssql-2.1.4-cp36-cp36m-manylinux1_i686.whl
Size 1.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
47a567ed94618a89c83b8ce24c886ff65f0c063ef02ed7240b98ab953ca95b5d
BLAKE2b-256 checksum
How to use checksums
7de7760023e62f14ed6a88227d62142f35318060e7107368892823b0b0415b4a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp35-cp35m-win_amd64.whl

Download URL pymssql-2.1.4-cp35-cp35m-win_amd64.whl
Size 406.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
bc2f3f93711cb6262cee83f63e9e38021a79f0d1b4c0deec7f68de97b49a8938
BLAKE2b-256 checksum
How to use checksums
ccb180d6aca20d1809dd2d7b5f03c2d2a58f211d71e28d4713dce2fb9e7f3a64
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp35-cp35m-win32.whl

Download URL pymssql-2.1.4-cp35-cp35m-win32.whl
Size 350.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
254e3552b6a52b40cb437f4b75683e003398f8ce12da0e40908a07703882802d
BLAKE2b-256 checksum
How to use checksums
5cfe906dda137a832d6857af277f5b75dd3d32c184c487390ab638eec9159f72
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp35-cp35m-manylinux1_x86_64.whl

Download URL pymssql-2.1.4-cp35-cp35m-manylinux1_x86_64.whl
Size 1.4 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
fb340fbf5525ea51c5d4b704340a6fe8ec97e5380b5cd17107ea48179d1c1605
BLAKE2b-256 checksum
How to use checksums
81471fa6ef755f1149c290b07ad472c98a71601e35efd4f0817160f6fc65d8c7
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp35-cp35m-manylinux1_i686.whl

Download URL pymssql-2.1.4-cp35-cp35m-manylinux1_i686.whl
Size 1.3 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e730e1fbbde44227ad34c024e71c1764503cf97c3812c520766867d1ee916e68
BLAKE2b-256 checksum
How to use checksums
73588e66c210642ff4dfdd89b70471704887d4579c9142e8bc46450219f5997c
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp34-cp34m-win_amd64.whl

Download URL pymssql-2.1.4-cp34-cp34m-win_amd64.whl
Size 409.8 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
c32df8c15dda0a23551348a51b7b41f0bfe25be8925c7afebcef977f89cceb62
BLAKE2b-256 checksum
How to use checksums
866134986f3350e1496de305917d34b9f1482792537960ee23bb751f5949d183
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp34-cp34m-win32.whl

Download URL pymssql-2.1.4-cp34-cp34m-win32.whl
Size 360.0 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e077af5c80e768976b47789644bd7ea211131b5d8ed174e44995b3ef34009aad
BLAKE2b-256 checksum
How to use checksums
d5dd391b51c0352e168e3783dce93d873b92cdb837e539cd91910a1203920960
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp34-cp34m-manylinux1_x86_64.whl

Download URL pymssql-2.1.4-cp34-cp34m-manylinux1_x86_64.whl
Size 1.4 MB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ebecdd63e9a6c871dcd25c877895f9ed2ba96549743cb4d45d201fc478f1bf28
BLAKE2b-256 checksum
How to use checksums
2508a5a8f76457fedc963cbcafb8c7033070ca6b84483aed56b7486dabbdcc5d
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp34-cp34m-manylinux1_i686.whl

Download URL pymssql-2.1.4-cp34-cp34m-manylinux1_i686.whl
Size 1.3 MB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
084deb1462fb52c0d802b006c673f3a02ce562b7b3a2f65f6a6bd2162a0850a2
BLAKE2b-256 checksum
How to use checksums
50ba922667bcd5327c1fb1f009424eeaf6caf669ad20d3d70a109568d0b0f667
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp27-cp27mu-manylinux1_x86_64.whl

Download URL pymssql-2.1.4-cp27-cp27mu-manylinux1_x86_64.whl
Size 1.3 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f58810f6917916af539948b3ed53881aca4aa7db80b662dcabcbf93a3cdea938
BLAKE2b-256 checksum
How to use checksums
a643c8430ec972c15999921cbc1bb8396049878695b78c182056bd03240d8c5d
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp27-cp27mu-manylinux1_i686.whl

Download URL pymssql-2.1.4-cp27-cp27mu-manylinux1_i686.whl
Size 1.2 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d3bf234eeb24ba6048ab1bb069395e3acd212376e91d8d7fdfdcfef60178cef4
BLAKE2b-256 checksum
How to use checksums
e7ba64acfbd968083d6e8c5276b0cedd9a4226ac722a85c4bb63f7036c4a23ad
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp27-cp27m-win_amd64.whl

Download URL pymssql-2.1.4-cp27-cp27m-win_amd64.whl
Size 419.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
7544b8b1b38d101f0b7bd794d2da53dd19fee38e3dfe7312cd9bc87252347260
BLAKE2b-256 checksum
How to use checksums
a5d9ebcdebcc48557eb4d22bd0f0c3c82696e1feb0ded2667f08ea9170e6e898
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp27-cp27m-win32.whl

Download URL pymssql-2.1.4-cp27-cp27m-win32.whl
Size 359.0 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
6da06dd6a37b3472b034a82fd156c63c6cb288b996a6ef252e874e343b37a254
BLAKE2b-256 checksum
How to use checksums
9328b2cd07f23d93dba38e09b05c71b348a3dbbea80e8b46231485ff10c61097
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp27-cp27m-manylinux1_x86_64.whl

Download URL pymssql-2.1.4-cp27-cp27m-manylinux1_x86_64.whl
Size 1.3 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
cfbce903ed29d2979168ac5d253e8241cb73901ec79c1e6692eb912ebc990be9
BLAKE2b-256 checksum
How to use checksums
5978ee8176773c3c717a64977bea61c0a9c453e4ffd6f03e76a70d88e510b2ff
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / pymssql-2.1.4-cp27-cp27m-manylinux1_i686.whl

Download URL pymssql-2.1.4-cp27-cp27m-manylinux1_i686.whl
Size 1.2 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0479294789d7f230016d87e115a23e51617909611de7b1ced1263c1e365f6c91
BLAKE2b-256 checksum
How to use checksums
d715e7220eaa97e78611b9c3d4d33ad31a76a230c2b2287943222a04872bc756
Upload date
Uploaded using Trusted Publishing?
What is 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

Release history Release notifications | RSS feed

2.3.8

49 release files

2.3.7

41 release files

2.3.6

41 release files

2.3.5

41 release files

2.3.2

58 release files

2.3.1

81 release files

2.2.9

58 release files

2.2.8

32 release files

2.2.7

61 release files

2.2.6

50 release files

2.2.5

51 release files

2.2.4

51 release files

2.2.3

45 release files

2.2.2

42 release files

2.2.1

42 release files

2.1.5

29 release files

This release

2.1.4 This release

23 release files

2.1.3

17 release files

2.1.2

9 release files

2.1.1

25 release files

2.1.0

23 release files

2.0.1

23 release files

2.0.0

23 release files

1.0.3

6 release files

1.0.2

5 release files

1.0.1

5 release files

1.0.0

4 release files

0.7.4

0.7.1

0.6.0

0.5.2

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