New level of functionality and performance in data access via Python
Project description
Python Connector for Microsoft Access
Python Connector for Microsoft Access is a connectivity solution for accessing Microsoft Access 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
Python offers a standard pyodbc module, which you can use to access Microsoft Access databases through the Microsoft Access ODBC Driver. This method has several disadvantages:
- Microsoft offers Access ODBC drivers only for the Windows platform.
- Users might experience issues opening databases created in the latest versions of Microsoft Access.
- Users have to install either Microsoft Access or Microsoft Access Database Engine Redistributable on their machine.
- By default, Microsoft Access is a single-user database system. An Access database cannot be opened concurrently in multiple applications. Our connector provides the following advantages:
- A direct access to a database without installing Microsoft Access or Microsoft Access Database Engine Redistributable on the user's machine
- Support for all major desktop platforms: Windows, macOS, and Linux
- Support for the .mdb and .accdb file formats, including databases created in the latest Microsoft Access versions
- A read-only multi-user mode to enable several users to read data from a database simultaneously
Connecting
To establish a connection to a Microsoft Access database, import the connector
and use the connect() method with your connection parameters.
Import the connector
First, import the Access connector module:
import devart.access as access
Establish a connection
Call the connect() method and obtain a connection object.
my_connection = access.connect(
Database="path_to_db"
)
Replace Database with the actual path to your Access database file.
Querying data
Once connected to Microsoft Access, you can execute SQL queries to retrieve data from your Access 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/access/ordering.html
To activate the license, follow the instructions in the documentation:
https://docs.devart.com/python/access/activate-a-license.htm
What's new
Python Connector for Microsoft Access 1.3
- Added support for Python 3.14
- Added CacheSize and CacheLifetime options to improve performance in the ExclusiveLock mode
- Added the PartialIndex option to improve SELECT performance
- Significantly improved the performance of DML operations executed within a transaction
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_access_connector-1.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.5 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 |
c7cae4ea82499a91b3e01ff6ded8267dde8504f2fea9e7839772f0f5816cc254
|
|
| MD5 |
29a4876a29b34a9d97d8172a38bcbce0
|
|
| BLAKE2b-256 |
7cc3890e3f68cc6625b0185db2b4de3ac054828f060f7e996add21f21dc6f05a
|
File details
Details for the file devart_access_connector-1.3.0-cp314-cp314-win32.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp314-cp314-win32.whl
- Upload date:
- Size: 1.3 MB
- 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 |
8a330154e018de285c4d78461fcc993e7ec1ac8563b375546700fb29104c8c2f
|
|
| MD5 |
a2192469d96aa47cffe5f954a1821606
|
|
| BLAKE2b-256 |
ae239fd29460c582459c2c0330e5829b63c06ce308da2097e3f5ffd4f4ff1f25
|
File details
Details for the file devart_access_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.9 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 |
d40c1d453e11733092dec077607bf103dc046fdb379c79a62116ab4186d18aaf
|
|
| MD5 |
7ec146d8b6389744f8708ea0e9a3b092
|
|
| BLAKE2b-256 |
cae48666a9a43dda5e91603184f4798fc7ef2e9cc16b1e7f415170223f8cd5dd
|
File details
Details for the file devart_access_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 5.7 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 |
9403b08a5477d8526f7df2447363c531e401e6c1e1952401aa8375fdf11bcd63
|
|
| MD5 |
01058407c9ef08cb7507eba0687f5d8e
|
|
| BLAKE2b-256 |
f724f63ea76ae02b6ea1be558acdc000fccc512527262930d1499905f66f710b
|
File details
Details for the file devart_access_connector-1.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.5 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 |
2e759f4df3651c2cc9a57d76daf75a76e2b115ee3f6215b3abe0eefd50914f0b
|
|
| MD5 |
576873ef77c8068beb72c70dfe75912f
|
|
| BLAKE2b-256 |
5f4677d553e47866e0866128dc288a20f722ab5b89edc72ba5ef09479e11ba3c
|
File details
Details for the file devart_access_connector-1.3.0-cp313-cp313-win32.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp313-cp313-win32.whl
- Upload date:
- Size: 1.3 MB
- 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 |
452a56d17ebb317b1d42ea5b2314c80cadf0886109027a5c7450cd1d90900697
|
|
| MD5 |
4441001f91840ec52305e8037a2acdf9
|
|
| BLAKE2b-256 |
f259d0307be9065e36e7aa6329629980fb1db75e48c3d385a355cbfde6cf7dbc
|
File details
Details for the file devart_access_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.9 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 |
b0621789f95bad92e10623588ee7fd7b96fef101dab0aa001ee95a4fd49f22dd
|
|
| MD5 |
f6468001f3e347afe89cdf54670c34e1
|
|
| BLAKE2b-256 |
33213a922e7e23f35ddaaa52516657b228738f314e4f3f93429b9acd13dc0f87
|
File details
Details for the file devart_access_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 5.7 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 |
0aa75fa31757c5c2de09200bba1d52e77bf6bf3133cc16ede345985507e1e9b9
|
|
| MD5 |
a4accd50b9cddfbd802a20f2ee7b10a4
|
|
| BLAKE2b-256 |
c840e7dbe2ffcf8543ec7d504c5110cead3a49458fa3a08e661960096bca2a86
|
File details
Details for the file devart_access_connector-1.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.5 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 |
e5d7f0cbabca73182c0c92c931ba15cb65e608de2b6a1f188885b7dacf86ac63
|
|
| MD5 |
905d0872ba9de832976a80de010df045
|
|
| BLAKE2b-256 |
ba723990a291fe3422267fcc682ab447fe207e92b4174e3336873023e33923fe
|
File details
Details for the file devart_access_connector-1.3.0-cp312-cp312-win32.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp312-cp312-win32.whl
- Upload date:
- Size: 1.3 MB
- 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 |
f6ca536e081614b0b4f2902bef831f003b5c5139518091f651b69c3367803142
|
|
| MD5 |
b1bc0fcfed12d5601eebca9e4dd8c8c6
|
|
| BLAKE2b-256 |
aa8af360fdc273a2a2bd67b55702ac0daa80f1e16d7ee9d598c8eca200b0a584
|
File details
Details for the file devart_access_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.9 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 |
130118fa2e81ad17680f0d84cc017561e55be08e492358c88cb44a6075d0574d
|
|
| MD5 |
b4af657d88fdc289b7a7d15c74678754
|
|
| BLAKE2b-256 |
1dc6fa81ffa16dbd1c623d520714f9f6e357e26e86aa814c31d5c48bd3a481ea
|
File details
Details for the file devart_access_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
- Upload date:
- Size: 5.7 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 |
02873f7d74430193e332821053daabd6f5afb97ce6de956f7ccadaad2dc7615d
|
|
| MD5 |
8a76fd06e943fa4a4f3478a67c589155
|
|
| BLAKE2b-256 |
e53ec1f045b1ff20c1dc77ebe40f9e650429948be90173dd8dda791671b1cf72
|
File details
Details for the file devart_access_connector-1.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.5 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 |
4376bd7b9ede2f6ab62499d50804fae665798f9fce7d3d5645cb963546e57557
|
|
| MD5 |
5c45d0bb0cbf55ffcd2e26c9fed67847
|
|
| BLAKE2b-256 |
d48ec3894794a5f605cf3fcb01451f8cd8dc5e0ef0b04c2ff28320473ca7fdea
|
File details
Details for the file devart_access_connector-1.3.0-cp311-cp311-win32.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp311-cp311-win32.whl
- Upload date:
- Size: 1.3 MB
- 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 |
b57f44b942a5686c2dd6e1166edb8783ad6aa7807935e1675a5d4fd6aca1dede
|
|
| MD5 |
62fb04353ecec9beaad651e1ef592641
|
|
| BLAKE2b-256 |
fdf3d50c9c4b455e279bd48cf6faa26367bf67246372a193a551e38bd30c033a
|
File details
Details for the file devart_access_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.9 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 |
80612234aaed2f7b1603b23041543af0fdeee99355c4908648713d6dce76a054
|
|
| MD5 |
b83cb0030da47400f158c35a00a5832d
|
|
| BLAKE2b-256 |
11ffbbf6ec9e2fcfc66a333b3f38a266591cdcd579d88830d89fa337fbf2800e
|
File details
Details for the file devart_access_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 5.7 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 |
a9b70657540a3c04bcf482dc4e3438f607791c76e5a39b7cb4b424b88e6e9870
|
|
| MD5 |
1f214b330a989a59a4dbaf9c6723e66c
|
|
| BLAKE2b-256 |
5a2a1b3a108a34c47edd9a21e06ff40a23332b631c7745f2ee9c075cd4eabdf9
|
File details
Details for the file devart_access_connector-1.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.5 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 |
ae5e7f3b6985012ff8531a8fd8ff2949c1170105f96a7ed7fa252423abee2c02
|
|
| MD5 |
8526f559f6636f9a8f3e4d97d1d65f3c
|
|
| BLAKE2b-256 |
d37ef5cc9c9f94910945892ecdeb7ef3029afef49fdd7d3a21c6535132228310
|
File details
Details for the file devart_access_connector-1.3.0-cp310-cp310-win32.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp310-cp310-win32.whl
- Upload date:
- Size: 1.3 MB
- 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 |
3d5686b6d42484225b50662c5331df1ad223af3bb1d4bf6bd9a45c6e171af1c0
|
|
| MD5 |
90d743793e1298a2de798daa958a4a5d
|
|
| BLAKE2b-256 |
4de03a5532d4fae3d816cdbc23343694b2437fefd47da76cd5bbe2c49c465570
|
File details
Details for the file devart_access_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.9 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 |
5243fcf76224346708e78e27a3944cb40b80d83e8ad47fbcf5b8ac047a00a2d2
|
|
| MD5 |
94f7df86a9f4a0b2ffcb7bcf5ecc75d7
|
|
| BLAKE2b-256 |
c12420550d8bb306b0049e13f6612f2a2c9308314090b42fde0691b82632f967
|
File details
Details for the file devart_access_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 5.7 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 |
04207ff0689f745eb60becbd82dd412049ac6c3f2d2d30bd748649bd07a2ce16
|
|
| MD5 |
898ff9294e8a2126cb766c6ec4eb34a6
|
|
| BLAKE2b-256 |
3c0894e5426f7c3e63ced1b294e5ac329df2d7a57a3937d65d1ed25b13b24700
|
File details
Details for the file devart_access_connector-1.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.5 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 |
586c95089ac994084aa84aa4a84ba9bc9b8396001ad00ef52e54d7fe042a2788
|
|
| MD5 |
50518e818ec4088f3c32b25a4fe9997b
|
|
| BLAKE2b-256 |
a8f247115bcf11af4a935b39efadd2c30f11ec5790f39f5a37f3cb3514f645d6
|
File details
Details for the file devart_access_connector-1.3.0-cp39-cp39-win32.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp39-cp39-win32.whl
- Upload date:
- Size: 1.3 MB
- 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 |
ab6380f3cb07c2918229aed34fccda1be4de50c93f4e57c80f168762059659b8
|
|
| MD5 |
98be228467d8d4920fb990759b420231
|
|
| BLAKE2b-256 |
e496560d48def10c9df6ca4c0276b364e45f34f1e0fd2343be44b37a300ba186
|
File details
Details for the file devart_access_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.9 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 |
9fa884ca68cf9bceddbb223d2f80b1c669e0362538239f23afdaa5cfc14a919f
|
|
| MD5 |
dc1f09c43237aa6ccec6e86548f4e359
|
|
| BLAKE2b-256 |
4dc45b61201730b30126642f3e2b1a9312e2d59ab4be69cda8f55027669f3ac9
|
File details
Details for the file devart_access_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 5.7 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 |
a8a3d57d2130543a433f8c88cd906d712721a0995c5ca850edf06f8e2331ef3a
|
|
| MD5 |
c9d1be196349dde2c3c6d7b8518f35db
|
|
| BLAKE2b-256 |
ac5ba870e2c73f50e2e00dcdbc5ca4dde0c42a9441d6e8eb890f23884b124a7d
|
File details
Details for the file devart_access_connector-1.3.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.5 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 |
301d14d6c6663bca22dd752d8a037084a3d4f559ebfd388382a872e38afe1888
|
|
| MD5 |
7842d16e7e61bc81f4e279abe41f8346
|
|
| BLAKE2b-256 |
e28943dff3c8a19a9db09a0503579013453374f5dce267e5ae0dca6e2fe102ca
|
File details
Details for the file devart_access_connector-1.3.0-cp38-cp38-win32.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp38-cp38-win32.whl
- Upload date:
- Size: 1.3 MB
- 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 |
2097a66e3194799d9ff536efa421f6a4319887322d7b38f1e50ed697e48e5837
|
|
| MD5 |
7014fe207232ca405ec66078eebd3c62
|
|
| BLAKE2b-256 |
9f0da33e278e6bf8efbcb70457b2a018a1a90b0709e294a78ec8b571384a50fc
|
File details
Details for the file devart_access_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.9 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 |
cd0f754004c336aba425ede96033926b6f1a4dd3ff414a635d17c0e060c41f65
|
|
| MD5 |
5543f5ab5a19c500b7a7ab213f4e6544
|
|
| BLAKE2b-256 |
2b1a74ab9ef80e33631dfc10a94cbbdf3545a3cd664f11eff73263f88fdb499f
|
File details
Details for the file devart_access_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 5.7 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 |
bda468e36eb90ba7d72693570e22d27421ebbc3ac0c16797b9436a2a424e689d
|
|
| MD5 |
bb6dea751f40f974cba77c0908a1aaeb
|
|
| BLAKE2b-256 |
623614e05a4979ebf287a0333bb78e40b124eb65cb3389c4a568a5591ad7bc99
|
File details
Details for the file devart_access_connector-1.3.0-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 1.5 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 |
a1b138dc97e6f8c5b032ffe896dce492442cd07543d898f7dd264e8c9702818e
|
|
| MD5 |
d094d8a67067b0b3f58b779d9ddcf88b
|
|
| BLAKE2b-256 |
b443c917cda5a9288ce26a37a965d11dabe055564f7d269ec4dea57c9d75f81a
|
File details
Details for the file devart_access_connector-1.3.0-cp37-cp37m-win32.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 1.3 MB
- 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 |
c1cb147d2891f7fabc2245778b17ca84ba665932daad6d852c3f452d83455d8f
|
|
| MD5 |
2006367928408138db05a7c214d262b7
|
|
| BLAKE2b-256 |
15ba211272dca455722af5b92751a1f8fb33f038f362d8912b80e3e8b61420f8
|
File details
Details for the file devart_access_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.9 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 |
1f17455514d66f3f06517479c6b9148a0797500593c9d1995b179921e9f90af4
|
|
| MD5 |
06d69c74c9acf44190cc25c75ec23a8e
|
|
| BLAKE2b-256 |
dab53b2388c7a850b8c055f45ab50d1e448fd1f19f36ebf55d2915d5d6084ba6
|
File details
Details for the file devart_access_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: devart_access_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 2.9 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 |
13b8ebe7e7d91833d610a9ab835a7aa3db54c7d64058bf72cb91f95bc9b1284c
|
|
| MD5 |
55931e218a271ef9dce7287897626958
|
|
| BLAKE2b-256 |
df2ae361bbe5078df851135312bf9a3fe634e38747f2bfe07d83584657b3fee8
|