New level of functionality and performance in data access via Python
Project description
Python Connector for SQLite
Python Connector for SQLite is a connectivity solution for accessing SQLite 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 supports two SQLite library linking modes: static linking and dynamic linking. Static linking enables a direct connection to SQLite, so you don't have to deploy the SQLite libraries on user workstations. You can use the built-in encryption capabilities in the Direct mode to protect your data from unauthorized access?the statically linked library provides SQLite database encryption without requiring you to purchase an encryption extension.
Connecting
To establish a connection to an SQLite database, import the connector and use
the connect() method with your connection parameters.
Import the connector
First, import the SQLite connector module:
import devart.sqlite
Establish a connection
Connect to a database using the connect() module method and obtain a connection object.
You can connect in Direct mode or by using a dynamically linked SQLite client library.
Direct mode
In Direct mode, the connector works without requiring an external SQLite client library. Provide the path to your database file:
my_connection = sqlite.connect(
Direct=True,
Database="your_database"
)
Replace the example value with the path to your actual database file.
Dynamically linked SQLite client library
You can also connect using a dynamically linked SQLite client library. Provide the path to the client library file along with the database file:
my_connection = devart.sqlite.connect(
Direct=False,
Database="your_database",
ClientLibrary="your_sqlite_lib"
)
Replace the example values with your actual database and client library paths.
Querying data
Once connected to SQLite, you can execute SQL queries to retrieve data from your SQLite 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/sqlite/ordering.html
To activate the license, follow the instructions in the documentation:
https://docs.devart.com/python/sqlite/activate-a-license.htm
What's new
Python Connector for SQLite 1.3
- Added support for Python 3.14
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_sqlite_connector-1.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.3 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 |
bdd27a2463018cba8f90c4127952e1adc107927cc58e9b55429c6cb65b572a96
|
|
| MD5 |
bbb02cb53aed427a1d835a6bba7e5a18
|
|
| BLAKE2b-256 |
56fbada617074a548bfaa406506d5543ed8a397844909e1d87da9dfcedfe7ecd
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp314-cp314-win32.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp314-cp314-win32.whl
- Upload date:
- Size: 1.1 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 |
636fc6e85f1ddfa1b736fe2bd3d1e206bf56539dcad08c7bbd133202b64d24cc
|
|
| MD5 |
5bd4806cb1a7791e3d64425d9a9f5cee
|
|
| BLAKE2b-256 |
57bb1d2b180fb4e4a1710046b3c9331f90678649ce1a251f048da250859aa995
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.4 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 |
769e04a7a4347abe06d29a665a70abbc15201af704ebdbf5b64c4813c8b49474
|
|
| MD5 |
0456c442f8905fd22fec8b04ffe027f2
|
|
| BLAKE2b-256 |
af70dc66a79b4237ad5009797c60623f384c774797b7a1cd19b0b59defcf732e
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl.
File metadata
- Download URL: devart_sqlite_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 |
02bd5b9c603ac6c10774a423cfff548bdb8aaacd571f7622f319cf31bd0aba40
|
|
| MD5 |
d67abbea8f14c60db3155d007574591a
|
|
| BLAKE2b-256 |
5a83a6df138545ee66f81f8a5bb9892d8adf0f41805d823230ac06a4c8a46aa5
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.3 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 |
5f8673bedaf9ca443e7a5095e62ebb7d40da033d4cc37d551a92b5a745105625
|
|
| MD5 |
7de6bdbd4476aace3607eb2782cc8637
|
|
| BLAKE2b-256 |
9ead8770353ebc26c8e59724aca2802b3d50d228321f6b7ed6db1f9643701b30
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp313-cp313-win32.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp313-cp313-win32.whl
- Upload date:
- Size: 1.1 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 |
111dee31ea0a32f388813ff890f351b860bf0f331340ba97c5f0374121d3ffae
|
|
| MD5 |
ae67e6df43130dffc95ee7f0a9038be1
|
|
| BLAKE2b-256 |
43948fd1ba5da8a81bd0cabd15ecc5d7995789c7927843f270d640f01c13b5f2
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.4 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 |
1a59ccbaf5c9dea85af16cb7412991db972fe1b029a6ac7ed6dd43a9cf00c36f
|
|
| MD5 |
533a72610237e9428841b551728684c9
|
|
| BLAKE2b-256 |
aab4979286b40da4841e3ac293194a07747bf1f9a1d31a9afca2c88fa21c88d5
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: devart_sqlite_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 |
47bc77eddf9dbf602eb46dab45301c208c4014247b415d0623af048e76efdb77
|
|
| MD5 |
21a1b11b383b5b28d1b78a4cebae814f
|
|
| BLAKE2b-256 |
8f336f29a37bb61185e78d438add8c0b934f8fdbcb8e8d2f7db426d7084ad520
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.3 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 |
fbb1fbc872cc39cf5f7caee3c94cbccec6ef033b9825ba88e627e0f15004ba41
|
|
| MD5 |
3be739ddc2c07c0666a5454954eb8d85
|
|
| BLAKE2b-256 |
85d0b9455cc5ecd884000a91f91aa7b1033508ecace9b62b60716ac0fec0f45f
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp312-cp312-win32.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp312-cp312-win32.whl
- Upload date:
- Size: 1.1 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 |
60557efb902a63fca59140e2b216c518091289a0b8ddb352473ce4feeaf519e1
|
|
| MD5 |
865799b467b358b8f1b2277404fbe182
|
|
| BLAKE2b-256 |
b82f4e60479e548c05a33364e0012d692ace1eb83772e67365159e57b1386a9c
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.4 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 |
e4b28a9ebd1ec09404439d7d2abd2d02c9c8a55041fa668ebe185036763d1776
|
|
| MD5 |
9195f0ca635caee86eac6e42a0e5a7c4
|
|
| BLAKE2b-256 |
5129cf288b4218af4cd7d9817a9292d2eafa0c9897514bb097590476464629b6
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlite_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 |
5383fe656d7cefe46ed8d132334d65e91c323e1818844b50fc0a14ac3fa7f258
|
|
| MD5 |
9705dc13915042dff718b39123fed374
|
|
| BLAKE2b-256 |
f799a5edbda24c1d7a8325fcb6e8c65648f9494a128d61ff874adb8937de08d8
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.3 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 |
1aed39bee645783e6653451d9dc4da432ece06beb3c9b35ef7572f29d0f406cb
|
|
| MD5 |
c0512cd26de4eea0797b00261c000afc
|
|
| BLAKE2b-256 |
a56812e4063980d3ea1b35e5195e696e0dca25fb396b55e5c37b7e21b76cbc80
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp311-cp311-win32.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp311-cp311-win32.whl
- Upload date:
- Size: 1.1 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 |
de02468fc468d689860f8e4a18658a8df09c850c85aee8b2cca8e981a55f1aea
|
|
| MD5 |
bf4e64b7430efffda37fadcebaf5eec5
|
|
| BLAKE2b-256 |
c36726905ac37a2db836865d2e23979d09fb8738baa35349744bd9df0641490e
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.4 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 |
daee79aca0dc32fcd89829d044ae892f85aec9926bdcec6d8e32b5683b355765
|
|
| MD5 |
081a31bf1c16bc7c2298327b357e8539
|
|
| BLAKE2b-256 |
ed092efd28b353079bc11968b12c2f7f8eb39cfbaafc908dd3b2fe3abab4a99d
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlite_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 |
e01a7b088262b5ba7b256a730329bda7cb4488764210e56d33ddc69d570de6fb
|
|
| MD5 |
51bd863f764a7eac60e8dc9f93e8d124
|
|
| BLAKE2b-256 |
f6d6654e644f7469ed42a33484e85950c54b213e694729097a5c33c7ebe5bca0
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.3 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 |
8092c34ab75e39accb142ff723d5e2a8bb42fbcfd2fe40d6c39da084f7b8d313
|
|
| MD5 |
fd2063510175086df47ffed0264bc1a7
|
|
| BLAKE2b-256 |
c2ea7151802a8ed96f7d86d93064eddc0a17965e9223a3cc7bb791e99a96d395
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp310-cp310-win32.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp310-cp310-win32.whl
- Upload date:
- Size: 1.1 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 |
5f023a6756c5c56bc99e7a3eb0f2e21d30b632bae4819b3002ed0f5e51c4f9c5
|
|
| MD5 |
42a44587e5324d30c4ad7783ed6eb1f3
|
|
| BLAKE2b-256 |
dc4c653d304d2a74c75598a673dc9b3eabeda7de5853cdbc0a9cba1d561b6d39
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.4 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 |
762bbdcad001d92357026e9d648e082fde974a3f6105045ab1c72f0ef798a5ae
|
|
| MD5 |
6f062bf383b8cfd655a2ce988bd2d86d
|
|
| BLAKE2b-256 |
7416c1f648850aff64819180cd00d5a0cf172d9711043490a203442323068e55
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlite_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 |
d7430a6f9caba48942c55dac82a95d5fe107120dac20ae1c6506cbce6dae5bb1
|
|
| MD5 |
33ee7077750ab101dd5e3a5c4b4fe61d
|
|
| BLAKE2b-256 |
b372e12cfa4f0fef13d4bdf775d43b91352d0f35c11df87be0bdca460e799f36
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.3 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 |
d5f141a335a55bb042c34a19420e7abfe3ace97ae26d181d3550f6ecde8785af
|
|
| MD5 |
1ba005e4e82af541ef6a12a611a2f40e
|
|
| BLAKE2b-256 |
5bda4c2b6409f97e819d3903e9320c48e63716e63eff6ffab1467e2d8527a5c0
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp39-cp39-win32.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp39-cp39-win32.whl
- Upload date:
- Size: 1.1 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 |
646fb3ca65b9ca6a2a5d138d4c5bffb59ab746501a8b48c3d0fe1bdbdc1baa80
|
|
| MD5 |
135e034ac44e80d692eb57d85a9aa3ab
|
|
| BLAKE2b-256 |
7941b958efb0a30b10a9517f1b400a1c42f7466909ef2deea7893a3e8a8d7fa4
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.4 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 |
5f0a41d1a5a1791c9560e4e9da1150b7fee05e7a77ed099f12e9e6784213a7cb
|
|
| MD5 |
957308e5476cffb0889e693b493e1e32
|
|
| BLAKE2b-256 |
0cdf26566f8507043737c65038332478c25c0ea3aa9f88b8828cce9bb5e3ff04
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlite_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 |
955e5bb89afef71a28096d6359b5aec318ed45cb25a9cd6d51c01cf1976148b0
|
|
| MD5 |
160bc22f8c7e2b347e03f7f38fa9aef2
|
|
| BLAKE2b-256 |
4a648b856010ead91ee7cdc93f1f4034cd0cfa8971cbaf9bc1ca648e2f979509
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.3 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 |
032ca5575b753eb4ec22016bdc680c66c519b6dbdf21a84c6be7163a5f59c6be
|
|
| MD5 |
fd2fb9fcf35bd2c8c062dcd0388e613e
|
|
| BLAKE2b-256 |
04ef31cf78ac140ee9409c55dc03ab98ce4e72533520d868dfc85c6fc520e8e7
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp38-cp38-win32.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp38-cp38-win32.whl
- Upload date:
- Size: 1.1 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 |
b80412e7e672ff8242e8f2ff9d16d88c5d000f1ee6e625d24308782f657dced7
|
|
| MD5 |
f0ae8d54c32b5f00b347f5c985d573c2
|
|
| BLAKE2b-256 |
4df52000140654d8e060ffa2c74087138de092fd54ea8d01e4cd0c948b4dd17f
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.4 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 |
7274a4f246c6818e0d8603b53d0218f8bf3487d35a40ee97f3d212274094d5b7
|
|
| MD5 |
f10ecb12f1726b48e37a35c23ab36a37
|
|
| BLAKE2b-256 |
fea06ce2a0bc55760c7472c365bdee2831ea8b01265ce45928d6fc1c4546d398
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_sqlite_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 |
c26f16a2aeb00ef2843cae9a1059eb8d731b07a63873324e9c8e6993f7301c87
|
|
| MD5 |
3441ba5f755f240bee5778772277b341
|
|
| BLAKE2b-256 |
4c8b1b9851128fbbae32d5ef32efa61f5ea7e12761d0d2ec4660e546ffebd4a7
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 1.3 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 |
853f98d2bb85ac992ab4f8baddd6dd6c30baee7d2a8f0d71f1c1a7802bc82106
|
|
| MD5 |
8c462996aa17a875588e004ee301ae0b
|
|
| BLAKE2b-256 |
ab3c23f3b59020b3e4e1c776d2dd92a5d38060e4ff148b8d1b24dcb850d2c721
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp37-cp37m-win32.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 1.1 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 |
cd47cf6864c886ba2bda432a4b88edd81f9d56e3cc145d18d96f2e5b841ef059
|
|
| MD5 |
073e181177c450467a9e4dd260696d99
|
|
| BLAKE2b-256 |
5930bedad8187ed14fa93adeeeb4406b06209a5137b8a90b423a4b1b21569a64
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_sqlite_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 2.4 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 |
49457f5f7aca970bd2c5c320958a19b6f3ce0c5bb1bd92bbed0e1d9e9ad86595
|
|
| MD5 |
dcc551736e8133fc46ea7287b278b11b
|
|
| BLAKE2b-256 |
d8eee27c798c3c8b69c77ad460ec1462b295e6f496130438379f1ca69845688c
|
File details
Details for the file devart_sqlite_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: devart_sqlite_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 |
6d147515127bdcc3edabb22e52cc6164ff8f06e6656a48483ff64e6d12efbca9
|
|
| MD5 |
6c84776f24d73744d11f604e207d322a
|
|
| BLAKE2b-256 |
8ca7c073cfbef9d25b91bc10f777bcf6483779284dd80d318646f43f1c2e7cf2
|