New level of functionality and performance in data access via Python
Project description
Python Connector for ASE
Python Connector for ASE is a connectivity solution for accessing ASE 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 ASE 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 ASE 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 an ASE database, import the connector and use
the connect() method with your connection parameters.
Import the connector
First, import the ASE connector module:
import devart.ase as ase
Establish a connection
Call the connect() method with the connection parameters for your ASE server and obtain a connection object.
my_connection = ase.connect(
Server="your_server", Database="your_database", UserId="your_username", Password="your_password"
)
Replace the example values with your actual connection values.
Querying data
Once connected to ASE, you can execute SQL queries to retrieve data from your ASE 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/ase/ordering.html
To activate the license, follow the instructions in the documentation:
https://docs.devart.com/python/ase/activate-a-license.htm
What's new
Python Connector for ASE 1.3
- Added support for Python 3.14
- Added support for the Bearer Token authentication when using an HTTP tunnel
- Added support for connection via the SSL protocol
- Added support for a password-protected private key for the SSL protocol
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_ase_connector-1.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.1 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 |
c24c5dcbe1beafd6aa5c95a908f01935980dd355ae491b9d53bd8629fe6776b4
|
|
| MD5 |
f684f9a17d81d09f95ef701bbe2011c2
|
|
| BLAKE2b-256 |
c0ef3019a541cf101f9e32fccc6ed576cc2e04343b64554628d1217b6e6c118e
|
File details
Details for the file devart_ase_connector-1.3.0-cp314-cp314-win32.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp314-cp314-win32.whl
- Upload date:
- Size: 898.9 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 |
81363b62d7bd92f9748ac74b10a7de3569fdecc6b6859b7dbdd0c5d7fc479009
|
|
| MD5 |
f0bcaae14eb930ac3f6a90301853a8a7
|
|
| BLAKE2b-256 |
ef59ab13b112f364962cc581ebfd7795251ee885ff430c90ab41632fa7da4aa8
|
File details
Details for the file devart_ase_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.5 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 |
69124db999ee160b17ebe09c19ac068a7391c9febae7e78c9d1c69be9575805f
|
|
| MD5 |
f6a488dfb074d19675d39c446afd8c6a
|
|
| BLAKE2b-256 |
7c71c3f725a78ba2a9c9a6cff69a2238bab73fc6f68a664f57116481d8dae2b2
|
File details
Details for the file devart_ase_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl
- Upload date:
- Size: 4.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 |
ab1d8b39a400d7797a651fa2e836c656201db01f7cc7b06b9af5f63043e8d0cc
|
|
| MD5 |
69771f28afc59f1bb648cd1821fb2bf3
|
|
| BLAKE2b-256 |
831cb4841119bbab19a00abe2e90385eea0b5269c5a7843d8c674f50293956c7
|
File details
Details for the file devart_ase_connector-1.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.1 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 |
8b8aa430f0c452433737b875a520693b29e6edd013279837ea915307684d4bf1
|
|
| MD5 |
f936705e0db433b8dea46f785eaf0ec6
|
|
| BLAKE2b-256 |
a644f556c2dda782c820a29fdefc341abc8d46194d19a2fa97c850141aac014a
|
File details
Details for the file devart_ase_connector-1.3.0-cp313-cp313-win32.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp313-cp313-win32.whl
- Upload date:
- Size: 896.7 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 |
9ce923c3f7104ae18851970768b86a258fc99f10548e7e4dcad5fe0a4aeeeb38
|
|
| MD5 |
93cd86479bd12c36a175f42ee9d6b730
|
|
| BLAKE2b-256 |
582316d4cdfa27cd80454297d6dd88f304ec33b9b09ec72df88d5049a86162a9
|
File details
Details for the file devart_ase_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.5 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 |
687f6803163ced1d8f0714eec033feea7e8f85a227bdc3dbc19a954ae04c85b7
|
|
| MD5 |
f5479ced34e47eb9e8a8234cd6862139
|
|
| BLAKE2b-256 |
3dc7aecb540ccbc2c18c01d4a2268a1e3a44f352251638a4a54439cc99b1ed4c
|
File details
Details for the file devart_ase_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 4.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 |
a180548f4ea60b932f847bd8e9c58aa0f236614d8265a226e1d0dcb1f6858c71
|
|
| MD5 |
a074530c65bb347ba195f97d32456fef
|
|
| BLAKE2b-256 |
5533e23021304c54fbf811c136d52c1a778d56f1ca42fb6868baa2955d432903
|
File details
Details for the file devart_ase_connector-1.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.1 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 |
81d582ced783df5dcc4060ac1de7877fe85d1746687c181366c44c98552af072
|
|
| MD5 |
c97ff2476ebbdfbd808f80b7669e057c
|
|
| BLAKE2b-256 |
a5d2815a8aae6bb37bec8f4c152b6d924c30a3ce68ee1b641854ee488896dfff
|
File details
Details for the file devart_ase_connector-1.3.0-cp312-cp312-win32.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp312-cp312-win32.whl
- Upload date:
- Size: 896.7 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 |
5d26c7b0192f0fddc02fe0566e90f431e8696bf4d9b541a3f5ec30d891814927
|
|
| MD5 |
ec0a5138e1c459722c9b4c3786f4f8c1
|
|
| BLAKE2b-256 |
663832d1d40deaa9975337b97600242ed3db92f15b2047b5305ef60082c11338
|
File details
Details for the file devart_ase_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.5 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 |
0d4cdbf1be0a1fb8994195593fdcd44129375bc9b291cf4fc2027c3e9f06301a
|
|
| MD5 |
cd4f52ee318105384bf0d0c0bdcd2879
|
|
| BLAKE2b-256 |
75c5517d28461883e7d7339d3512bc42daa473302cf9f36051256ecfa90d6ec0
|
File details
Details for the file devart_ase_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.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 |
efffcfb768913006883ff42679b4ba80f9a6c2ec6a38e67ff7204df8f47b0d04
|
|
| MD5 |
c7d5212848c8f56fbc68c00ba79319fe
|
|
| BLAKE2b-256 |
062f9f6ed890a9b6e4af9081adfd2e06e08a7a08ca985615f6f8b70d31c72063
|
File details
Details for the file devart_ase_connector-1.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.1 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 |
aa0cca4263b2201bddbd54cce86ebd24c8fd8a02896bf3c0aedaf7479f9c4da2
|
|
| MD5 |
1fe45b0746937260f0cb2e4f5e14297d
|
|
| BLAKE2b-256 |
2b4443186dbf9e7b2eb2c869e80af355df5b919e21de9606dc5094518d54151b
|
File details
Details for the file devart_ase_connector-1.3.0-cp311-cp311-win32.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp311-cp311-win32.whl
- Upload date:
- Size: 896.7 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 |
599432d02bed343b397f6d98df9e47b7c2dcca699c13c5483d25942c723c3227
|
|
| MD5 |
ce0964fc0898a0a5089cc682e67ca00d
|
|
| BLAKE2b-256 |
d11036ba21e56ca6bf424f076718dfe57a2d9fa074d2c21ccee5dcfe11355634
|
File details
Details for the file devart_ase_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.5 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 |
b858e7b0e9996636fbd2cb60cebc8969dd4d23079a11b39e58731286950012f0
|
|
| MD5 |
1ec3446515a2d92e7250ec45a12a8c6c
|
|
| BLAKE2b-256 |
e64180d6620e461cefd89dd1916a0c19d134863e5ac89a9062fbf69956f268cb
|
File details
Details for the file devart_ase_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.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 |
81a6bd987be84f58f4b90c6bfc40d7e97314ed49422017ddb7e1bcf31e45795f
|
|
| MD5 |
f902b03852b40de0ec6f85fb1e688d4c
|
|
| BLAKE2b-256 |
c63cfd687186b6a6f35b1a7d5d64d2b66941835f88aaf31b7a9381f766756d6a
|
File details
Details for the file devart_ase_connector-1.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.1 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 |
75c9367cc259e95cf43cf430a3ced7730565823666a35e18ef0e80701dc6c4db
|
|
| MD5 |
a346f65c438f9e78c500929864c6934e
|
|
| BLAKE2b-256 |
1f1e5133d24faf0d0d5e6a4b5ea08c66d8a2a2dd812316b1ea403f3a68ac2be6
|
File details
Details for the file devart_ase_connector-1.3.0-cp310-cp310-win32.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp310-cp310-win32.whl
- Upload date:
- Size: 896.4 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 |
7add8e5dbf3765f62f46908e9f36379457c6ff1a0fd9f2568b02c8c8c5e2bf6a
|
|
| MD5 |
e9f9ab59c850dc71161d1239249ca7d3
|
|
| BLAKE2b-256 |
8ccc890f30b3049076cf3742ec0cff30c668fdced8035fafa85af3a8eeb5b344
|
File details
Details for the file devart_ase_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.5 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 |
107cd28a80814bf24c680842c93c309a7d04ef09aa4b312e19f988523d76b034
|
|
| MD5 |
065bcd92d6d6cc1e7227067a82e1d601
|
|
| BLAKE2b-256 |
2054bd3564fdeeddd5d9c568d3c0072cf657dd87f0fae28343de67b8020514a7
|
File details
Details for the file devart_ase_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.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 |
01786cb839a806ec93744503e8bd00c0619a849d4fd3039c0e58e43673095d9f
|
|
| MD5 |
69694e2da5d41d6672a0e9b40f9a6284
|
|
| BLAKE2b-256 |
3353a110ce0e5c6051cb4a5a25701b9b71f9ab07d979e2b2f1808864cc0d0184
|
File details
Details for the file devart_ase_connector-1.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.1 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 |
a525ddc250770056b3fc8beafd340bb520750374e8db0e3d97c3d38d311eb45f
|
|
| MD5 |
c8c7892c7b05ab5b8f9c25072fdd4f6d
|
|
| BLAKE2b-256 |
8f9109c7b2c2f4ded1ed39facd0d8804376efc336ac4b8270b6ea8e183afe50f
|
File details
Details for the file devart_ase_connector-1.3.0-cp39-cp39-win32.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp39-cp39-win32.whl
- Upload date:
- Size: 896.6 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 |
1b7271b511248b1b42a579cda92fed39dfcea9f045c782c9085b26b14d2b3b8b
|
|
| MD5 |
586236c938781d52ffd6f14e42bd7fdf
|
|
| BLAKE2b-256 |
ab2f217a109ad9db0eebda1b931b3119d771901eaba53ad671245bf506920836
|
File details
Details for the file devart_ase_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.5 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 |
9d379730eb3d654fd9a293209015fe95aa7b3599625affd04c6de10f79df18df
|
|
| MD5 |
ad23b0e3fb329b0e6bc7ee7bcf874bd2
|
|
| BLAKE2b-256 |
4b588fda2946701845861d05bc75bc25ec58a5a509b53e08cf994c977b34a404
|
File details
Details for the file devart_ase_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.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 |
608aad3958694180c076909f8520ae50221607791f5205508c18cce691635f05
|
|
| MD5 |
b9b0235cd2b6abc214f2674057b8c48c
|
|
| BLAKE2b-256 |
66ba304728eefd7f7190cb58a0cbecef5e787738ca21fd9ab6d1f1d84a563c60
|
File details
Details for the file devart_ase_connector-1.3.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.1 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 |
6eb7c4287c16687d1e2fd24c9222baedfc8f8f8c5e80a1894bcadc5d36e8d156
|
|
| MD5 |
4aeb3c821c083cbfd4d668fa928a68f3
|
|
| BLAKE2b-256 |
18d208ac7639358fd0fdab8fbccff40c100baa8c8c58d8146492830bfbe73539
|
File details
Details for the file devart_ase_connector-1.3.0-cp38-cp38-win32.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp38-cp38-win32.whl
- Upload date:
- Size: 896.7 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 |
544c4884f8286ccfe2d00072112787f955e13cdf8e4c11ff8392984fa8bb4b58
|
|
| MD5 |
1c98607bcd846fcf4acb7d57074e9334
|
|
| BLAKE2b-256 |
6b15c44be59fe61670c9c815b445b8bac423351afeeadb9f03b965e1273c2f0b
|
File details
Details for the file devart_ase_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.5 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 |
d798871eabedb9f17526b6c7f41bb35a535fdfe276094c91dd7c8866da26827f
|
|
| MD5 |
25202b89f80b6ab429eb5d9bc96ca5e6
|
|
| BLAKE2b-256 |
09129189973d2f926f8d4a19a3e3b53a524ee8873502b2e1e82d905adbf6295b
|
File details
Details for the file devart_ase_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 4.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 |
375101b6d0490ed8e43f9a824f5604bce33bd77df2c04c5cbd180134ce2f4aac
|
|
| MD5 |
32528a621e330279d83674fe75e5b5c9
|
|
| BLAKE2b-256 |
d34673009c572aa97b12b777913e0b96a4dae9718ac730c07690ecf601e71f3e
|
File details
Details for the file devart_ase_connector-1.3.0-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 1.1 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 |
b43f5127d9e3d7d70ed18446ffb7a5abc5fed5d1659a44ef9fbd02a7e6fa497f
|
|
| MD5 |
5c1cd7b5569793a78f54e2bfb65bc2de
|
|
| BLAKE2b-256 |
3476d14266154e24edb2f25c84a7ac2184d2b88d15b2b6020a648b488eca9709
|
File details
Details for the file devart_ase_connector-1.3.0-cp37-cp37m-win32.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 896.7 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 |
f12dc057d277fc2917da760453c01334cd0c6e23dc3639a8d37a40c0b51e5597
|
|
| MD5 |
388b9fc1fee95bc96d677ab028c009ac
|
|
| BLAKE2b-256 |
519510908c3a2021002228b52338461770b2e2464eeb726b8556bbad1be5bfe9
|
File details
Details for the file devart_ase_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.5 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 |
a2f8f320a054de85215a8a734874e15418af07cb68d8d17c3561a4d5bbafc939
|
|
| MD5 |
492da2e963890ca4e5d8e05c67055a14
|
|
| BLAKE2b-256 |
a758a35e0db7867c04d7e18034fbea938c29ab788baf3810ff4efacb000d691e
|
File details
Details for the file devart_ase_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: devart_ase_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 2.5 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 |
bd82e8689ac16b40f0b6502161b0d0c761f2cf35c3ca059bd2293413aded0801
|
|
| MD5 |
6ae08609e148bdbadcffa76e6828edbd
|
|
| BLAKE2b-256 |
f6c4acaeba9d6f2eb45e37672577dee2300634746d952708c875520c30a5b6ca
|