New level of functionality and performance in data access via Python
Project description
Python Connector for SQL Server
Python Connector for SQL Server is a connectivity solution for accessing SQL Server databases from Python applications. It fully implements the Python DB API 2.0 specification. The connector is distributed as a wheel package for Windows, macOS, and Linux.
Direct connection
The connector enables you to establish a direct connection to SQL Server from a Python application via TCP/IP, eliminating the need for the database client library. A direct connection increases the speed of data transmission between the application and SQL Server database server. It also streamlines the deployment process since you don't have to distribute any client libraries with the application.
Secure communication
Connecting
To establish a connection to a SQL Server database, import the connector and
use the connect() method with your connection parameters.
Import the connector
First, import the SQL Server connector module:
import devart.sqlserver
Establish a connection
Connect to a database using the connect() module method and obtain a connection object.
You can connect using either mixed mode authentication and Windows authentication.
Mixed mode authentication
For mixed mode authentication, provide your server name, database, user ID, and password:
my_connection = devart.sqlserver.connect("Authentication=Windows;Server=your_server;Database=your_database")
Replace the example values with your actual server name, database, and database credentials.
Windows authentication
For Windows authentication, provide your server and database names. The connector will use your Windows account credentials:
my_connection = devart.sqlserver.connect("Authentication=Windows;Server=your_server;Database=your_database")
Replace the example values with your actual server and database names.
Querying data
Once connected to SQL Server, you can execute SQL queries to retrieve data from your SQL Server database.
Execute a query
Create a cursor object using the cursor() connection method.
my_cursor = my_connection.cursor()
Execute a SQL query using the execute() cursor method.
my_cursor.execute("SELECT * FROM employees")
Retrieve results using one of the fetch*() methods.
for row in my_cursor.fetchall():
print(row)
Parameterized queries
You can use parameterized queries to pass variable values to your SQL statements. This allows you to reuse the same query with different data and helps to prevent SQL injection attacks.
Pass parameters as a list or tuple to the
execute()
method:
query = "SELECT Id, Name FROM Contact WHERE Name = ? AND Email = ?"
params = ["Jordan Sanders", "jordansanders@example.com"]
my_cursor.execute(query, params)
results = my_cursor.fetchall()
for row in results:
print(row)
Each placeholder ? in the query is replaced with a corresponding value from the parameter list.
Ordering and activating the license
You can purchase a license for the connector on the ordering page:
https://www.devart.com/python/sqlserver/ordering.html
To activate the license, follow the instructions in the documentation:
https://docs.devart.com/python/sqlserver/activate-a-license.htm
What's new
Python Connector for SQL Server 1.3
- Added support for Python 3.14
- Added support for the Bearer Token authentication when using an HTTP tunnel
- Improved compatibility with Microsoft SQL Server 2000
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file devart_sqlserver_connector-1.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b40528ad3614ee47627313355ff7329f0f2a2e343525a2845de0ce52ce8883c5
|
|
| MD5 |
cfa70e3b6635ba5ace896dd2aa450519
|
|
| BLAKE2b-256 |
bec60a220328b8f782dd90f969d32c56b9b9c1c3e5a4bdfd3cf1f31298bc7f8b
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp314-cp314-win32.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp314-cp314-win32.whl
- Upload date:
- Size: 993.2 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8719f60ed0cfa98c676afd325039f15089f0292cb547cb86b7bac8e5e8ff02ca
|
|
| MD5 |
2dffad3b1522409b193475156dcdb2d8
|
|
| BLAKE2b-256 |
06409c234d1f6462b7a4cd4d750098b103ab88fc44deb11d4d9b1451224a6357
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.14, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8e26ad2b9bc9e15a4a46a19ee12414d44ee71c902d218237dddec1c10011672
|
|
| MD5 |
47b525ff23462fa2c7d689f36a24599e
|
|
| BLAKE2b-256 |
41cc84ab5ba38cdf30ed7379a89a58e2bf50934c14a1ba701edd41e954c04953
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.14, macOS 10.15+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a213668f3ae7dbbf99f5ce01f8f2fdaf38ab439587a715bbbd96861c7a43b877
|
|
| MD5 |
42c8941fae8393e8f1b6929669c8ce69
|
|
| BLAKE2b-256 |
8a800fd27350dfe6e5ca1742adcceb578b30e7499e927d59d01d1598e7c8d6a2
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b02c4dde02a835105a036198a9af91e0184b7cf45a9f635ab4caf4122f01c89a
|
|
| MD5 |
1f0f6568bf92c6e36b5bdc134f339c1f
|
|
| BLAKE2b-256 |
39971d9677318af8bbc4ca09cbfce0bf35c3b9ee10f78944b36de5ae49d5e395
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp313-cp313-win32.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp313-cp313-win32.whl
- Upload date:
- Size: 989.9 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6306a22a4e00bae55e40a7f2a430264cb94febd8b5590b5cf9b3437367ffd24a
|
|
| MD5 |
fdbec4029cf2257ab49ee81f449102f9
|
|
| BLAKE2b-256 |
035a6a192a7eb7fef90e6b092afe1d5d412aaa7e18ac8a893ac7561572149101
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ba06fb1232e4fd1c4aa0a3056cd165a6fa86e3038cba4846295f95419108b66
|
|
| MD5 |
f978ea46ea83f8ee3ce4b4a8a51fe507
|
|
| BLAKE2b-256 |
056df9017e222281e27ed98203d612eb4483a4394371b63d8f1442324877b5d7
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eb070636fca991d55a362d70ce31ce3f9fbb359e4ab30f8ef71e660adf0a65c
|
|
| MD5 |
265a96dab0c7bd220ae2d54088940d6c
|
|
| BLAKE2b-256 |
7001249f2f806c6b7f9043e5c989ec6ba0293ade541c786c7668a53ebf25c04e
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f051aedfd2d078fe011abbee01110c6351759338a25599ad1c34e881c8ac9cc4
|
|
| MD5 |
7b2db47d8c6f5932cdd13de8b795e562
|
|
| BLAKE2b-256 |
da434d8239fd6e56606bad659715af4a6a3289e81a7ae9b00d869e0b5d0fd1b7
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp312-cp312-win32.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp312-cp312-win32.whl
- Upload date:
- Size: 989.9 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95189e9fe669413c30660ed4d3cc2dfb4cc29d41acf5552feddf896e61eed761
|
|
| MD5 |
27b3e9953c4abd673bca2706bcb5e979
|
|
| BLAKE2b-256 |
0fbf8f9a72f95e9d8df20d785583ede23fb3387d67f881e2c19285fe8ea99c7b
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9de54243a98647c59f156fd2daa075d86cab97b51543c6e3c0db6b3db4e10177
|
|
| MD5 |
48e1a8fb7a3139df6d1234fba16e8779
|
|
| BLAKE2b-256 |
c1d63156b158a34d15a775c1506e1c5ed83d5019e2916ceff658c4dc858a088f
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.12, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28f1da0664fd31f6a20f633402d862b6325372b97b39594e294d6ea5c330b336
|
|
| MD5 |
6da6507d03e27575c08ab8235507f58c
|
|
| BLAKE2b-256 |
babed247aadd1490e0d56d72e07f443c8626c2e3af0fef505d0e24a08e08dee1
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
434c09b84e7cc5694f2e2a0cb155e7fd93e0addd237b9f317562236f2d37ae7e
|
|
| MD5 |
5760f4b89c446ac9c356e4dfa8e49e3c
|
|
| BLAKE2b-256 |
2f17e3460c9586fb8951c780de8b49f9a461546ac7e51a8db357fab048cb8c28
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp311-cp311-win32.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp311-cp311-win32.whl
- Upload date:
- Size: 989.9 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c526855007a8013ebbbac08c1c557e3847d07399058e30d2e03e4260951b4d1
|
|
| MD5 |
c8464402b3d0034d16ce0898cce321b6
|
|
| BLAKE2b-256 |
3f2a12a97a09239b6f1e26a1ae0605ccc4f98d4bbbd1a6c2f724937bb7ab5f0b
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3dd0948f3f30b36984a7eee63b737b53658846d7dff8c1c6363bd04fb47bd49
|
|
| MD5 |
8947db44bdbb6c52ab0bb89b9033a96d
|
|
| BLAKE2b-256 |
79e1afaff4329ac0fcbd41ac63e514ecde18e419ab26304cc18e7f657fba2fc5
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f74e2742e4ad13a4a27fba5af2b3ff83d22fa05bbce83d539a47acb87fac85b
|
|
| MD5 |
c7188fbb535c0edb6a85a4229f47c4d5
|
|
| BLAKE2b-256 |
25e8eb4265f1589ce7d2104221e9cf3dcbe0b2c86405f0131498cdfae6339f35
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b5ba4890841abd0f6995a416a63397cfaeed8721505cb8bdfbbf4e5ed88161f
|
|
| MD5 |
dfc1f6fd921aba91a2f10e7b7c93cdba
|
|
| BLAKE2b-256 |
29bb939e572965fffa7d4f02f42afcc235f0000c36712a8f96ee189520b563fe
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp310-cp310-win32.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp310-cp310-win32.whl
- Upload date:
- Size: 989.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8db714fdce94432add266ca2535581d8d891c8cba8c49cbc7a83b640ca8c18af
|
|
| MD5 |
a1762d3a75930e0473837e6400e8682b
|
|
| BLAKE2b-256 |
647d183e8343a2fd6e4fc54613cab86547dd613bfad0353f7ff4572a0127d2cf
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5a406d668757a15e9729ea5b864a851cd819e4f385bc615de0083c63af30887
|
|
| MD5 |
fff3e0ca65e566751117d40e59e16526
|
|
| BLAKE2b-256 |
ce26495bb13c625973e0f9581fa90a7f4a86a40cdf37007a1053570b796b09f3
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ad834b12af70ac3321b824c99e0d6592767f6df430eac41ecc153384d90a532
|
|
| MD5 |
2a25a2ab824b77d8a43a2bf9a4d76975
|
|
| BLAKE2b-256 |
5ef238240566e428efd5267bfe9ffd8b02f5f2f34b23cb7457fdd6467fed215d
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43ccd32a784fb484f0d2b38e83e2723c43dc74000cd028ecb8bad664d65dd0f1
|
|
| MD5 |
6a264dc33abd579e86ccb678b894cc35
|
|
| BLAKE2b-256 |
80ed377e8ef3b8e9d94ccbc930ae5e1e1b781fad529138b77b21ab5e80f7870b
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp39-cp39-win32.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp39-cp39-win32.whl
- Upload date:
- Size: 990.0 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c9db75f9471b2ffe0d6db93b2638542dc7b714b6934acf92f3e9223ef5a54c1
|
|
| MD5 |
e85be16133b60f22e7af396058bd9af2
|
|
| BLAKE2b-256 |
eae7cf18d2ab243496600d0799ffd6be48d1182cb47dc7f638a469798d73643c
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72829106342677d4310826ddb7233cbd730b114fa05c0133a6d41d0d24472ab6
|
|
| MD5 |
0fda1869b98223d15238b98e11c10368
|
|
| BLAKE2b-256 |
1ab677614f280ccd926949401cb4613c9e01f5cecfe8a69962c2f4f031bccd8b
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb46a124b264073833468a3d82840945f93e5b5a3a5a113f59685bf91af2e36d
|
|
| MD5 |
248d8c0c5fd6e8b2aef8c9a9f814c737
|
|
| BLAKE2b-256 |
a840135130d1b657d51cf2c97c38bb41b75fb9384e0273558a5fe3e0c622c7a0
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18684f219d2fafa632a501d8d15fad8a0c610f3e1bbe56562d6bf5122ca1b0d7
|
|
| MD5 |
71c4e5aa1e363dc89d05595fe0e6f5ab
|
|
| BLAKE2b-256 |
16533472ee41a9dd80396747dc9a050704b147d378788e397a7882b80ba7a7a7
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp38-cp38-win32.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp38-cp38-win32.whl
- Upload date:
- Size: 989.9 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c0724a73e86fe9cdefaf58c43b6b7a76a091ee56771f628ced7fb5b3b94e237
|
|
| MD5 |
66fd54723f0f8178481bb3d84e4535aa
|
|
| BLAKE2b-256 |
99a3fb5513240a2080a98bd0079a08690a8e490aafb82b3a7e0bb03fa680af11
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d71b8b6375e100a6435ef0c03919e50d2a424248f923e18099a0ef1abe52d745
|
|
| MD5 |
a82be77c3b00aa4c42d7522f28159a80
|
|
| BLAKE2b-256 |
c5b5391295537f4480dae0e585af05c031e39583b0c59dfe48cfc5eb88ede2e0
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0809c443f0e07d0960f7a25fb6c6c003f58396ab7e0220dacb9a0970dc9d6fc0
|
|
| MD5 |
63d1dff8104a01fda2b22c2090ed01c3
|
|
| BLAKE2b-256 |
b929e5728841f85dcd8db5c0886cc1042ae8c11b264f13f68b2738da427bc3de
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32d05420f6675335883ae813377dc7fcd477edaded236e7d1e699dd932894334
|
|
| MD5 |
991eb963bbc9c5ffa19cbd58204a252e
|
|
| BLAKE2b-256 |
555d3ef670938ccbc2910ec07c94f94970eee649c73dba07840200e9028def6c
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp37-cp37m-win32.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 990.0 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d961082140c13680ac25f61624835d07e8b50cde9a17ae040ff8e1df373b9060
|
|
| MD5 |
5b0c94ee8f83c07cf04cf2a0f26c2a20
|
|
| BLAKE2b-256 |
b9925d2bf4649d689b2290cfef3010ad54a86059f7ee5a8228b2ff928e4be002
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.7m, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba5d679e63ef2d45c0560b8600ad9253486127cf46bef518ef12a942c7b94742
|
|
| MD5 |
d837ba207a7ed492d1be710eef76ff1e
|
|
| BLAKE2b-256 |
6c2cd97e391b84762fb359bd2cd501df2c10c7508d120fa8128836d09e6eade1
|
File details
Details for the file devart_sqlserver_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: devart_sqlserver_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87ff95d5cb56725ed5fa210b8e1aebf3e01b8277c294e12b611dd79550cc076e
|
|
| MD5 |
c655f647b2168de7cc0732bf255b30cd
|
|
| BLAKE2b-256 |
25d19eb5b12a5d327b4f6a73a88ab72ab4f93ee0fc52aec2c2608ef3488743f0
|