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

Feature:
  1. Fine-grained number types, such as int, long, float, double

  2. Cursor description has richer information, such as precision, scale

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.

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-plus-0.1.1.tar.gz (164.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pymssql_plus-0.1.1-cp39-cp39-win_amd64.whl (434.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pymssql_plus-0.1.1-cp39-cp39-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9

pymssql_plus-0.1.1-cp39-cp39-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9

pymssql_plus-0.1.1-cp39-cp39-macosx_10_14_x86_64.whl (289.4 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

pymssql_plus-0.1.1-cp38-cp38-win_amd64.whl (434.2 kB view details)

Uploaded CPython 3.8Windows x86-64

pymssql_plus-0.1.1-cp38-cp38-manylinux1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8

pymssql_plus-0.1.1-cp38-cp38-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8

pymssql_plus-0.1.1-cp38-cp38-macosx_10_14_x86_64.whl (286.0 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

pymssql_plus-0.1.1-cp37-cp37m-win_amd64.whl (423.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

pymssql_plus-0.1.1-cp37-cp37m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m

pymssql_plus-0.1.1-cp37-cp37m-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m

pymssql_plus-0.1.1-cp37-cp37m-macosx_10_14_x86_64.whl (277.9 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

pymssql_plus-0.1.1-cp36-cp36m-win_amd64.whl (422.3 kB view details)

Uploaded CPython 3.6mWindows x86-64

pymssql_plus-0.1.1-cp36-cp36m-manylinux1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m

pymssql_plus-0.1.1-cp36-cp36m-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.6m

pymssql_plus-0.1.1-cp36-cp36m-macosx_10_14_x86_64.whl (291.0 kB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

pymssql_plus-0.1.1-cp35-cp35m-manylinux1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.5m

pymssql_plus-0.1.1-cp35-cp35m-manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.5m

pymssql_plus-0.1.1-cp27-cp27mu-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 2.7mu

pymssql_plus-0.1.1-cp27-cp27mu-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 2.7mu

pymssql_plus-0.1.1-cp27-cp27m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 2.7m

pymssql_plus-0.1.1-cp27-cp27m-manylinux1_i686.whl (1.0 MB view details)

Uploaded CPython 2.7m

File details

Details for the file pymssql-plus-0.1.1.tar.gz.

File metadata

  • Download URL: pymssql-plus-0.1.1.tar.gz
  • Upload date:
  • Size: 164.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for pymssql-plus-0.1.1.tar.gz
Algorithm Hash digest
SHA256 6a30faa1943718fbc835d1b2d8ec34f0ea1cb5e466f3c11f3dfb774e583bfdee
MD5 e0b5270da4afa8b8a37603c22cae4b52
BLAKE2b-256 eb2e573ecead0984f5a88e35256052ce1035c8be43e829d68643b9806db89054

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 434.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fc66797a45dd64a5c02f70fc6d9d9a90586ef6a4300232759ccc14a300f4d08b
MD5 d12888a6a15d8b003428ad1a72398d55
BLAKE2b-256 482828c18ea2059aa620b8ba539c00ea536b29ce279be2f6fc6562c2a4f4c21c

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 54bd3443982c645d7b35b77e9e755b33e18526e9ef8347b6ba171b7b62a4a651
MD5 31346e4d4c19bf9c80fdc6889b7a8bf7
BLAKE2b-256 5707b43ca33910f144b40a7d44f26f641d31fa954d7fb425043a240a0d2e24d6

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3cc9d9cf6a2226a5ed1590171d937dc541844e01ccbd035fe2bc8161628694ea
MD5 765d618bcc38003b1e4f697ad0a6d139
BLAKE2b-256 21012f8af450a10fd90604d5482937fe3d736f952f24c01bad01045bca0a931e

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 289.4 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9eb98d6fb29da3a27dc72e8a66f1fe31aa7ba2b4557e38a672e3d4885cb0ea3c
MD5 c5ecf73d8e17d14bae47e4869658ac35
BLAKE2b-256 626b45898c5381882f8c9e4c47ec98795f5cc613ff2055a78803d674bf625f1b

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 434.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for pymssql_plus-0.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8ac923c86d2fa50667fc0e904b2bf8815871e2fa8ff19cdd1fea707483da1934
MD5 da5ff0f4f14aac02a1d0a473eec03f1e
BLAKE2b-256 07e7bf8b4f12e25eaf4188218ca43a6a5bbb6b44366f696f1e6add5aab8df62d

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4a1c56fe6be725d7b6df9267bea27c6a9dac151a0fc415f7d9cf786ed1ad5d06
MD5 db589a99c1215630adc69fd4b74ea0cf
BLAKE2b-256 b73d20a4eddd5e0eb175eb9b1891360619f4d480ab2025a9396542fe7ddddea8

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8bf66e689bda00b5d4a5910e046a26e42652ae45281939d04ed3dd258bc1045
MD5 2781ebdfab2ddb7335e704828f0a0a15
BLAKE2b-256 469a906190fa45a9255724ca37e5cce9bd9ca350e4a7985a715b88bd63876961

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 286.0 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.6

File hashes

Hashes for pymssql_plus-0.1.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1512542e22912e9c7c91548b003f3879fb4340eef44de3f08c1b4efcb90f816c
MD5 93a6a0782e2980eb09b402f2fca3f12a
BLAKE2b-256 16de678832cc33b29537242404c17f2ec94fe55bcd60054d65b7963f3041d4af

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 423.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for pymssql_plus-0.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e78328d86f8117efc557226001655a0362e18f74740edf7dddce092bc58c27fa
MD5 88c1ad4d4cc10677b1386f0f0650526a
BLAKE2b-256 a5fae063297bfc1bbb7b02f22a0678555b7f8a76c2f8b909e69a1ba6e500e7e6

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e80809b379b17de51080ffe838993a922633d46941192b8c00a3b0f218ec0dcf
MD5 b5a77c241b8c53909fbeeb411f5f4fa4
BLAKE2b-256 b116ac26300504320ca955601f9749b351ee109f9405cc57be950ce70bf278e9

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 274e607544b7e2387daf49a93705866a0b27144490f505780b9f4be022d3b41b
MD5 e0080c100504e86cf14d7b3fcd697010
BLAKE2b-256 4eea17746ed681db2263b97a97cb540d90e7f8c676cb5da2e12c8c29376c308d

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 277.9 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.7.9

File hashes

Hashes for pymssql_plus-0.1.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2111fedb3b7354d4fb5956dd28a9a0b5314187c5378454cd41049fa4f20fcd89
MD5 416408de5875dd8079560f5ef8feda7c
BLAKE2b-256 2ee2683e56232eaeca5058da7e435ac83f8e52991733873763e93f76d327f89b

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 422.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.8

File hashes

Hashes for pymssql_plus-0.1.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 34bfa8d941586aae76fb2b951259d6c87e8435c9f75595252f69b0a542992a47
MD5 47e3f144e58c25e6bbcf44ecee4fde12
BLAKE2b-256 77b548e476f2eefbab9c4ad2350087d180c845e16fefb30042dad61cd47d2d92

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3a1c7cd5303455b4051fa6747764a0b7e5ddcf854a2065f30daa4dbfb99b1318
MD5 4b96a2073a9f1e55f4a2c696c4857986
BLAKE2b-256 97ddc01c177b1f05aaba17ae01e22647c525072741e10b48f129b868d62e6527

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 48b96ac389ba1614ee44a119ab26a4288c9ea67d0dd2d20ff413f7f3bdac547a
MD5 ff3eb301b9ee52faebc267b316be7dbd
BLAKE2b-256 2755557deb7fb2a66fb4386da47fd58f4d687c58fae8c569051b0f576c0676e9

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 291.0 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.6.12

File hashes

Hashes for pymssql_plus-0.1.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bc67d343ae68e46e3215b5190cb43d9acc864d03a81efffe3bf8f92a8563b2b7
MD5 318da5b6bfd48239c808cd922d17ae63
BLAKE2b-256 0576c054752b90f5d32d36818df33568e175468b0953b57e61230de3376f4209

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ebf6ebdddf6a48d3e01a6d3b55e8ed54c73175d7b74888274874de5c6c81e611
MD5 0e173c7633dd76e2e5cd180bd20e14e0
BLAKE2b-256 2590a64cb183e1a2f9f62c894df3a20cd828f3a73ac527af886610530a787795

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b604461a49fa024fc7a73a81bb8f8248ebb6eeace1816dc8f5d06ec17f1409e0
MD5 215e86a80c9299697696ff2f92c1c4ec
BLAKE2b-256 5c735d3696b10d2737b783b0a68143055410964d2ea019739c7125767f8347da

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 131d22c23c2589c5a93bff946be02dfe2d0f595bb9e8b67b203dd3398f2617a2
MD5 b67c630a0bb6b2ab66e20cbd5deba07f
BLAKE2b-256 887911b0a9914e76031b9ce6a88e5979816c402a3e3a2b393af8dd493b5658a2

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6a93c4ea3300fc8f6207cc7229a40c4197df7a5eb7c6bbbe00eceb23030efe2
MD5 32257c259efdd26ebba9a09452081077
BLAKE2b-256 edb6c1a7e4fb96fa54011adf27b6b740c57bc6414f4206b0c16d40775950b511

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2d49b79756e754b726621a0511bd9c7764493bc32456ca72352d73edcb2dcae6
MD5 f07e1df9261dd88c31ab1f3a82007e1e
BLAKE2b-256 2e48b750e8c409ea4d1229f53a52c6f90c68da818c3074880757bf3dd1a02788

See more details on using hashes here.

File details

Details for the file pymssql_plus-0.1.1-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: pymssql_plus-0.1.1-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.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for pymssql_plus-0.1.1-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 91dd051a3056ca9049530e6e99751b214d59c1ba4b4a56f6bf71f7bf3498a13c
MD5 ee5bb50b4d3c9b90abea4a7207c2a5c7
BLAKE2b-256 79566e45a02075f4f9a0e7d56b7b0a4183818f085f6a62a9d8d527896d8b7833

See more details on using hashes here.

Supported by

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