Skip to main content

sqlite3 with extensions

Project description

sqlean.py

This package provides an SQLite Python wrapper bundled with sqlean extensions. It's a drop-in replacement for the standard library's sqlite3 module.

pip install sqlean.py
import sqlean

# enable all extensions
sqlean.extensions.enable_all()

# has the same API as the default `sqlite3` module
conn = sqlean.connect(":memory:")
conn.execute("create table employees(id, name)")

# and comes with the `sqlean` extensions
cur = conn.execute("select median(value) from generate_series(1, 99)")
print(cur.fetchone())
# (50.0,)

conn.close()

Extensions

sqlean.py contains 12 essential SQLite extensions:

  • crypto: Hashing, encoding and decoding data
  • define: User-defined functions and dynamic SQL
  • fileio: Reading and writing files
  • fuzzy: Fuzzy string matching and phonetics
  • ipaddr: IP address manipulation
  • math: Math functions
  • regexp: Regular expressions
  • stats: Math statistics
  • text: String functions
  • unicode: Unicode support
  • uuid: Universally Unique IDentifiers
  • vsv: CSV files as virtual tables

Installation

A binary package (wheel) is available for the following operating systems:

  • Windows (64-bit)
  • Linux (64-bit)
  • macOS (both Intel and Apple processors)
pip install sqlean.py

Note that the package name is sqlean.py, while the code imports are just sqlean. The sqlean package name was taken by some zomby project and the author seemed to be unavailable, so I had to add the .py suffix.

Usage

All extensions are disabled by default. You can still use sqlean as a drop-in replacement for sqlite3:

import sqlean as sqlite3

conn = sqlite3.connect(":memory:")
cur = conn.execute("select 'sql is awesome'")
print(cur.fetchone())
conn.close()

To enable all extensions, call sqlean.extensions.enable_all() before calling connect():

import sqlean

sqlean.extensions.enable_all()

conn = sqlean.connect(":memory:")
cur = conn.execute("select median(value) from generate_series(1, 99)")
print(cur.fetchone())
conn.close()

To enable specific extensions, call sqlean.extensions.enable():

import sqlean

sqlean.extensions.enable("stats", "text")

conn = sqlean.connect(":memory:")
cur = conn.execute("select median(value) from generate_series(1, 99)")
print(cur.fetchone())
conn.close()

Building from source

For development purposes only.

Prepare source files:

make prepare-src
make download-sqlite
make download-sqlean

Build and test the package:

make clean
python setup.py build_ext -i
python -m tests
python -m pip wheel . -w dist

Credits

Based on the pysqlite3 project. Available under the Zlib license.

Support

The package is provided as-is, and I don't currently plan to change anything except to update the SQLite version from time to time.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sqlean_py-3.49.1.tar.gz (3.3 MB view details)

Uploaded Source

Built Distributions

sqlean_py-3.49.1-cp313-cp313-win_arm64.whl (739.4 kB view details)

Uploaded CPython 3.13Windows ARM64

sqlean_py-3.49.1-cp313-cp313-win_amd64.whl (804.3 kB view details)

Uploaded CPython 3.13Windows x86-64

sqlean_py-3.49.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sqlean_py-3.49.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sqlean_py-3.49.1-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sqlean_py-3.49.1-cp313-cp313-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

sqlean_py-3.49.1-cp312-cp312-win_arm64.whl (739.7 kB view details)

Uploaded CPython 3.12Windows ARM64

sqlean_py-3.49.1-cp312-cp312-win_amd64.whl (804.5 kB view details)

Uploaded CPython 3.12Windows x86-64

sqlean_py-3.49.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sqlean_py-3.49.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sqlean_py-3.49.1-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sqlean_py-3.49.1-cp312-cp312-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

sqlean_py-3.49.1-cp311-cp311-win_arm64.whl (739.2 kB view details)

Uploaded CPython 3.11Windows ARM64

sqlean_py-3.49.1-cp311-cp311-win_amd64.whl (803.5 kB view details)

Uploaded CPython 3.11Windows x86-64

sqlean_py-3.49.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sqlean_py-3.49.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sqlean_py-3.49.1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sqlean_py-3.49.1-cp311-cp311-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

sqlean_py-3.49.1-cp310-cp310-win_arm64.whl (739.2 kB view details)

Uploaded CPython 3.10Windows ARM64

sqlean_py-3.49.1-cp310-cp310-win_amd64.whl (803.5 kB view details)

Uploaded CPython 3.10Windows x86-64

sqlean_py-3.49.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sqlean_py-3.49.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sqlean_py-3.49.1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sqlean_py-3.49.1-cp310-cp310-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

sqlean_py-3.49.1-cp39-cp39-win_arm64.whl (739.2 kB view details)

Uploaded CPython 3.9Windows ARM64

sqlean_py-3.49.1-cp39-cp39-win_amd64.whl (803.5 kB view details)

Uploaded CPython 3.9Windows x86-64

sqlean_py-3.49.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sqlean_py-3.49.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sqlean_py-3.49.1-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sqlean_py-3.49.1-cp39-cp39-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

Details for the file sqlean_py-3.49.1.tar.gz.

File metadata

  • Download URL: sqlean_py-3.49.1.tar.gz
  • Upload date:
  • Size: 3.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1.tar.gz
Algorithm Hash digest
SHA256 210d89989226b988d7d6391f837387d3b81e8cd608c997e0bd37826e395970e7
MD5 7bf290e73424b5ba47cb1ee556bd46b0
BLAKE2b-256 67ebac95fab0bc4658124b4ec8fbc31fc494165ab4544606ae91b9a489907dad

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1.tar.gz:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 739.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3c1661f2fcf4d10ec3940ef8d2146bb58260b409c9033f7a727a6962e2032b7c
MD5 94146b8adc81dd73f9ea210bc30f0e0f
BLAKE2b-256 99bfb63830855455fd22278ddc78cc7c64dffb5e1a69c15245c18275317ae9d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp313-cp313-win_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 804.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 de820bdb39729044f9ed94f0addfe308b020479334146036a773f470d7594d87
MD5 ee8280a67ec62432a64fc8a3df51d476
BLAKE2b-256 c4d6455e75e1e540b64e230f7282ec55777e030190a486e98a2fce5d6437afa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp313-cp313-win_amd64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11fe4e2e74c1749bf98e4aae8fb02978e4c03d4a491be18c4e5b244b29408fdf
MD5 331ad2a73d7d076a0ee2ea0c5ba07557
BLAKE2b-256 96527e713a61ded163a5fece9fb144b60107889e5d813ba9cff278e65673b6f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9974027675e1edf8a8c90383f95e4038052e96ef7a9a8fa7f8125ed275cc28ba
MD5 f20b13410ad96c4223377b72901cbbe4
BLAKE2b-256 82d5cfdb8098117fff9f7856d5c86c93d9c7bebdb5801b551cfabf36e117b764

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3112cce35bb97f17b55419e955dc74c7deebb0b548e54d99b3e32bb3d3c62ce4
MD5 5b3f3255efb5d92d4899f0bf4c75cc4a
BLAKE2b-256 8773ccd43c0d6ca4248005687c5c1ce121924e368c0b195b98880810f468312d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ba8e5fc5b9d6682f3fbb626e1f936a4c4ac7377c3d044beaef695e6306a9a39b
MD5 1903b2005345abd9378b0d7409d2f926
BLAKE2b-256 c4d330a7dc9f6030ea2a1c76fcbb220d1f5d95a16f22f50d4cd80c8778ca5018

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp313-cp313-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 739.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c2537f69879adaed22b16e840d494c440ece5b49d28a5a51094e6c8ca6a2b0a5
MD5 c8fbe8d3f83809f565f85f161d1813d0
BLAKE2b-256 f2d18828ec685022e2b86ebd717743359dd5e8eab70a9c1ebff78aa733848216

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp312-cp312-win_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 804.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b45ed4adb8442299019988d5e90aa1474f3ef8c71f6e8921a70705b9d971c590
MD5 13494259eebcd53b28dfe376b131bd25
BLAKE2b-256 e8e5d980bf0c5e67cfd4486b5e6d8daea6815fdac57b3d0899c23127a30283b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp312-cp312-win_amd64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae92413470409b3b3678c797db82c1d247b6ed2198017b5e893d9fc0606e061f
MD5 82525f870129af51bd009849a720266b
BLAKE2b-256 4784065a21e9a578ef13d9749c2bf3c382f7e50a1644af7d7a109924fbc6faee

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9bbc00d57f68dbb3f5dea20380bdad7fa9299b3c2a8d8b3798c2bf315146be9
MD5 62dd10f3691a5b45903c731aa8d6dd48
BLAKE2b-256 2d11f8a5c0f7fb889cabbd8c7f887f9e261b65bf45fa1d33a245490855bff53e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56a3388f4fe08e1332af424eaaf378eb9e258165885a4e284c5238e4837b2232
MD5 4abffa162e5022d29be4d456143d73b7
BLAKE2b-256 6594b4c5d0ff47f179a0729dc71832558f63a1605e931f773b6d435a767baca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b43397ac27312a20fef8f5db0d011d3676fddea04850d6c35ad1d7644d146f71
MD5 bf64afda1c067b19077a1f21e85d46b0
BLAKE2b-256 230e95379c801907f8da939be30c61b63ef881eb18cc0a90713cc74002deaf16

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp312-cp312-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 739.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ff575bb11a3013963e4b2edb0eaafc771e8dbe193f22151ee2c3ecc694f25eee
MD5 5c4be1a776ccb540977b673e9cd871c4
BLAKE2b-256 09dd6dbcda7d883701eb8a6f55fc5636919b04f84ad9c9be33b3309199150dd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp311-cp311-win_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 803.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7bf2e118ea3c5c16c6a0be4b80d31c9392ffee231e61f08464cc8f892e40c628
MD5 e80ec9790f71daa3d59cbb5dd7c3e104
BLAKE2b-256 a6cea41b35ecaf7825fbf63cedabfe3ee89f26b75556432ab547476c0f039650

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp311-cp311-win_amd64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8738695e3ca05cd47b16808d8ad8cd973f1eb6e32497364512a26cb4e61ad63
MD5 b3fd24ab9fc2ebaf49c5a5b2b88a7f1b
BLAKE2b-256 03d7c9970eedb0876f3bcf3f0e230ef68f41fa4bb1c88a67f437f88f0cb0d62b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09d7b002f490fd0dad98e884a6e05f062d02ca6520c1910b486fb9e19c5e61ab
MD5 5253ebed4249e2c4e6679762c719f420
BLAKE2b-256 e2102f2bd23d2ec66662bebed7d83fcc912af97dd12be739fd5bd3c08444a55c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b034fd390fccbb62198e0163e885111de86f2a20767a2f31d38313008cb57442
MD5 ba60f24260ddaaabb325b2f3ae5e744c
BLAKE2b-256 3921f39ee0b16050b79fb86507e0affd623f6f7fba04f3d3b1dc7e41b93ada7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9858cd066c7105145d56aae2d9c0a6c8baf343b642e41c9a96a83ff3033e5395
MD5 94ee0c67366f99efdcea638c994c21cc
BLAKE2b-256 7a0e5abd9f12008918dfbce0add356eee8a6f076c3cb24af4a5d2694a8b9f009

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp311-cp311-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 739.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 788961c243992544c39f7469a92a000a3790be753e32e8d025d6175696aefaa7
MD5 05e220ddcab213f74814609ccf65638f
BLAKE2b-256 c570d536dff4a3025c4f8b925270d6f480342d54969f8f53b29a5c057a506012

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp310-cp310-win_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 803.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f9fde19199f6b93f5bbdd4429c150a3ea909f8b4c05564e706b1ac448b3f840
MD5 5ab407e16b0f16b642910621ee7e8d7a
BLAKE2b-256 cf372a5d95c2889b3fd6f2d7f2010469d0613b521bdfe09c02242b451187869a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp310-cp310-win_amd64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 459176576a470db4b582c38a448eee98c2ee469b8e32aabe4d523af1d3f3cdfe
MD5 19de277f1fdc01b9dd14283f337b2720
BLAKE2b-256 5494c3c720a7aec309627a2fd1ae8bf2008fb5ad88141301748ccd394430f117

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b4ebd99560d71960eb0cf90538d954782af62968a1268f4274fc597b8153aa0
MD5 1b2154856e74da7b5dd178a9d02922b3
BLAKE2b-256 ecd715a325bf1147e158d0c300c6a4e164f4f0484d52f1064146ecc9e8f6b7de

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a13ca3fc100d2d875d1e81dadb0a8e646cd1722924f9b4c85869c6e315587f9
MD5 92284b6f541479a528b3a743a2a20ae4
BLAKE2b-256 d6622ebdd53f52fdeb6fd50b531870ea2ddb9a5508c1e7d32328ef0394cc681a

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d66afbe2785faff085aa261e6ac9387d8cbe561b4c0766cc917ee0897fdb4a08
MD5 58027324cda0eb8b55e7c10871bea80d
BLAKE2b-256 169619aaa6c7851facd8bc10b37cc0349123c46287c8d9e8eb781b888dc02976

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp310-cp310-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 739.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d9f203ae1bbdf23e93393d208e76b6193c561c3bd5e0592a82e9de2bcddc5ffe
MD5 e98674f4c4fcae265bfc63a4165a007b
BLAKE2b-256 2aa367a534eb1fd5ab29fd78687c5dabc91c655dd15e6aa71c9f9427bb166fe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp39-cp39-win_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sqlean_py-3.49.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 803.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for sqlean_py-3.49.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7f9eff480f48b2e1f182ef20dba6357767d24ed2083234a3fbd576adb1c55d5c
MD5 259dcebe71475cc2ca62ec0b71912d46
BLAKE2b-256 ed5ca40e4d8c6ec7c6b14a6e3cd73f49df90a0d530df773f2f333b16899d04c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp39-cp39-win_amd64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5831fa72a25f3e5e8f1d134da7be26ab23c5e83123aa75b42c1d714f4965bf3c
MD5 21ac3899b8888b6490457fc4643ba29c
BLAKE2b-256 1774de59077842b388b9a60ffdee4445297ada43da587721b8653196a328f429

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 744dc1ba59b571b02d994d8efeab6c5cd9dadfb00cb7ac3c6a32c4ec08f89f91
MD5 2116188c126b38249ffa1e492bb36152
BLAKE2b-256 0adc775e450df9ddb444d7e930c6c4f4006b3c3441757932dbb9ffd4bfe48d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1934401e2d46c1c34e028829c093c81bddfa0d03a1bfe3aaf9994950d44841fc
MD5 7fae755b7dd456674fc232426e3f62e8
BLAKE2b-256 9e6be0490583e2524412a1de1c05444d316bec8af7cb63b3be46267571b84f54

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sqlean_py-3.49.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for sqlean_py-3.49.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 985a1117036c72e89f8f19f7394579d4f36dac16309d0cf336e007645605fafe
MD5 952f182a5fd4803bdbc2a52295ac7985
BLAKE2b-256 9d01e0f586be5e1afc7c2f7553ab7ab1149432f0ef343183b693cb9e2a266991

See more details on using hashes here.

Provenance

The following attestation bundles were made for sqlean_py-3.49.1-cp39-cp39-macosx_10_15_x86_64.whl:

Publisher: publish.yaml on nalgeon/sqlean.py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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