Skip to main content

sqlite-lsm1

Fast Python bindings for SQLite's LSM1 key/value store. LSM1 originated in the experimental SQLite4 project and now lives in the SQLite source tree. This package builds the engine and its Cython wrapper into a single native Python extension.

Features:

  • Embedded, zero-configuration key/value database.
  • Ordered traversal and nearest-key lookups using cursors.
  • Nested transactions.
  • Single-writer/multiple-reader MVCC concurrency.
  • Checksummed transaction log and crash recovery.
  • Linux, macOS, and Windows wheel builds.
  • Python 3.9 and newer.

The durable database is stored in one main file. While a database is open, LSM1 also uses -log and -shm sidecar files for recovery and shared state. The sidecars are normally removed when the final connection closes cleanly.

Installation

Install a published wheel with pip:

python -m pip install sqlite-lsm1

Building from source requires a C compiler. Cython is installed automatically in pip's isolated build environment:

git clone https://github.com/carlopires/python-lsm-db
cd python-lsm-db
python -m pip install .

The distribution is named sqlite-lsm1; the import remains lsm for compatibility with applications using the original package.

Quick start

Create a database by passing its path to LSM:

from lsm import LSM

db = LSM("test.ldb")

Keys and values

The database has a dictionary-like API:

db["foo"] = "bar"
assert db["foo"] == b"bar"

for i in range(4):
    db[f"k{i}"] = str(i)

assert "k3" in db
assert "k4" not in db

del db["k3"]

Strings are encoded as UTF-8. Retrieved keys and values are always bytes. Other input objects are converted to strings before being encoded; use bytes directly when an exact binary representation matters.

Missing exact lookups raise KeyError. Nearest-key searches use SEEK_LE and SEEK_GE:

from lsm import SEEK_GE, SEEK_LE

assert db["k1xx", SEEK_LE] == b"1"
assert db["k1xx", SEEK_GE] == b"2"

insert_many() atomically inserts either a mapping or an iterable of (key, value) pairs in a single transaction:

rows = ((f"key-{i}", f"value-{i}") for i in range(10_000))
inserted = db.insert_many(rows)
assert inserted == 10_000

The input is streamed rather than materialized. If conversion or insertion fails, the complete batch is rolled back. update() provides the same atomic behavior for mappings:

db.update({"alpha": "a", "beta": "b"})

Slices and iteration

Iteration yields (key, value) byte pairs in bytewise key order:

list(db)
# [(b"alpha", b"a"), (b"beta", b"b"), (b"foo", b"bar"),
#  (b"k0", b"0"), (b"k1", b"1"), (b"k2", b"2")]

Slices return generators and include both bounds:

list(db["k0":"k9"])
# [(b"k0", b"0"), (b"k1", b"1"), (b"k2", b"2")]

list(db["k0":])
list(db[:"k2"])

A descending pair of bounds selects reverse order. For an open-ended reverse slice, use True as the step:

list(db["k2":"k0"])
# [(b"k2", b"2"), (b"k1", b"1"), (b"k0", b"0")]

list(db["k2"::True])

Slice deletion excludes the boundary keys:

del db["k0":"k9"]

Cursors

Cursors provide explicit control over traversal:

with db.cursor() as cursor:
    for key, value in cursor:
        print(key, value)

with db.cursor() as cursor:
    cursor.seek("k0", SEEK_GE)
    rows = list(cursor.fetch_until("k99"))

Always close cursors. A database cannot close while any of its cursors remain open, so using the cursor context manager is recommended.

Transactions

Transactions may be nested:

with db.transaction():
    db["k1"] = "outer"

    with db.transaction() as nested:
        db["k2"] = "nested"
        nested.rollback()

assert db["k1"] == b"outer"
assert "k2" not in db

transaction() can also decorate a function. A normal return commits and an exception rolls back:

@db.transaction()
def store_pair(key1, value1, key2, value2):
    db[key1] = value1
    db[key2] = value2

Explicit begin(), commit(), and rollback() methods are available when a context manager is not suitable.

Threads

Potentially blocking database, cursor, and maintenance operations release the GIL. Each connection serializes access with a re-entrant lock. A transaction owns its connection until its outermost commit or rollback, so another thread cannot interleave work with it.

Use one LSM connection per worker thread when actual overlap is desired. LSM1 permits concurrent readers but still has a single-writer model.

Maintenance and tuning

The most commonly used tuning properties are:

  • autoflush: live in-memory tree limit in KB; default 1024.
  • autocheckpoint: automatic checkpoint interval in KB; default 2048.
  • automerge: target number of segments merged at once; default 4.
  • autowork: automatically flush and merge during writes; enabled by default.
  • write_safety: SAFETY_OFF, SAFETY_NORMAL, or SAFETY_FULL.
  • transaction_log: enable the recovery log; enabled by default.
  • multiple_processes: enable file locking and shared state; enabled by default.
  • mmap: configure memory-mapped reads.

Applications that disable automatic work should schedule flush(), work(), and checkpoint() themselves. checkpoint() returns the number of KB made durable in the database file.

Development

Run the tests from an installed source checkout:

python tests.py

Build the documentation with:

python -m pip install -r docs/requirements.txt
sphinx-build -W -b html docs docs/_build/html

The complete API reference is maintained in the project documentation.

License

The Python wrapper is distributed under the MIT License. The vendored SQLite LSM1 sources are in the public domain. See LICENSE and SQLITE_LICENSE.

Release files for sqlite-lsm1 0.8.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for sqlite-lsm1 0.8.0
File Size Uploaded
sqlite_lsm1-0.8.0.tar.gz 414.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for sqlite-lsm1 0.8.0
File
sqlite_lsm1-0.8.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
sqlite_lsm1-0.8.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
sqlite_lsm1-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
sqlite_lsm1-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
sqlite_lsm1-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
sqlite_lsm1-0.8.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
sqlite_lsm1-0.8.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
sqlite_lsm1-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
sqlite_lsm1-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
sqlite_lsm1-0.8.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
sqlite_lsm1-0.8.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
sqlite_lsm1-0.8.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
sqlite_lsm1-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
sqlite_lsm1-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
sqlite_lsm1-0.8.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
sqlite_lsm1-0.8.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
sqlite_lsm1-0.8.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
sqlite_lsm1-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
sqlite_lsm1-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
sqlite_lsm1-0.8.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
sqlite_lsm1-0.8.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
sqlite_lsm1-0.8.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
sqlite_lsm1-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
sqlite_lsm1-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
sqlite_lsm1-0.8.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
sqlite_lsm1-0.8.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
sqlite_lsm1-0.8.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
sqlite_lsm1-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
sqlite_lsm1-0.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
sqlite_lsm1-0.8.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
sqlite_lsm1-0.8.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
sqlite_lsm1-0.8.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
sqlite_lsm1-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
sqlite_lsm1-0.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
sqlite_lsm1-0.8.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details

Total release size: 23.2 MB

Release files / sqlite_lsm1-0.8.0.tar.gz

Download URL sqlite_lsm1-0.8.0.tar.gz
Size 414.2 kB
Tags Source
SHA-256 checksum
How to use checksums
3b3cc852bc6a08ba4d1ffbab613ed35281bf7515302edd403ad006e9648140f2
BLAKE2b-256 checksum
How to use checksums
6ef4c02c73941a4946e2dc8974e5a69efc57885b4fa6db059bbc4e408d7752d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314t-win_amd64.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314t-win_amd64.whl
Size 212.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ae5db88b351f696770f11eb4284c1f5ffa47e64fdbf3c67948995123b0d5a7dc
BLAKE2b-256 checksum
How to use checksums
59ca7654d13480d306af961779206df2e377be37197513177852361377764ec1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314t-win32.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314t-win32.whl
Size 170.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
a41828843b41a4d1672b669c7d21c1895c648af63bcbfdd32e7c6351d2827b34
BLAKE2b-256 checksum
How to use checksums
c5fd3d97d0df9ba9687afe23b5f13a8d1a15f78f37ae90a333322b375aaa6108
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4f10a45772be88367b7166c9ce4a0a46ed06f1e4e77eedaee8c910a47e6ef45b
BLAKE2b-256 checksum
How to use checksums
6cbe4f1a0c572edc111c092b4a8d480907d6fd04c69ec82093012e86926a70af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ff0c5aa8a58ce2a4b06ce2acc4dd23c417e5fa00fe3671c0b088eae0f77df0d8
BLAKE2b-256 checksum
How to use checksums
8ed074a336bc8d8f348e50bfc2bf5297b96e02052e0ef7254cd21d6156f57c12
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 227.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
026c15ee2e2cc4f0169fe5c93e1e686ed990e0d593576835a1a67dea9109168b
BLAKE2b-256 checksum
How to use checksums
f6285aa0a68518397a9cf7f8cc8be3b4848e34151dd3ee994d99da48b386e5c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314-win_amd64.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314-win_amd64.whl
Size 199.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
bd459e6ffd3d2e866b85dd5b14d6d3b33e443f58258c2f922fb0bc04e25edf1f
BLAKE2b-256 checksum
How to use checksums
20653ab3dfe391ce5f11bb73ebd93712929746c1e3ba00c07541e5601c713e7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314-win32.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314-win32.whl
Size 161.0 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
e853767edc8129f50777fd28fa52fd4e16ff16fd5e3fea70083b8f8cfab40819
BLAKE2b-256 checksum
How to use checksums
4eebb8a37051262d07ae5bde79f539c14eaa59a6154d42cc644fecd389186200
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
28d8064712cc3ac71942ba5c8dd432baa6d69d71c7edeb098f8c76b6c4477c3a
BLAKE2b-256 checksum
How to use checksums
1adc1b8d0c9660aef2d3d6d4c9f9fa34e29f2de7bb0b27ef1102ede9a0eb1837
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f02f3870aa50be1877b668a402fb1f823720e446d4a8db43fb100afdeef50d1d
BLAKE2b-256 checksum
How to use checksums
7361fca7f6c570eb6c6e71aa545c4e9b26dd80cbb8476e9a93986a8b14fd4f03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL sqlite_lsm1-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Size 214.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
66027d6b735b837c19225740cab45d7b58160582ea366c0d22326fc821e03df5
BLAKE2b-256 checksum
How to use checksums
187f246cda717bfb487cd5acc3f43d69776b440d56eb1914c7182172f1f958b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp313-cp313-win_amd64.whl

Download URL sqlite_lsm1-0.8.0-cp313-cp313-win_amd64.whl
Size 195.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
dac545b3c2dbfe0811996a5c19d66fcf3edbb468a23feec998bcfc798d4c73c2
BLAKE2b-256 checksum
How to use checksums
912048d3ed521f034087c24a97d1e8ee07a4f1ad0e5891927c1b32537172ad82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp313-cp313-win32.whl

Download URL sqlite_lsm1-0.8.0-cp313-cp313-win32.whl
Size 156.9 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
86a59b728e811559e370a835261ebd30099ec2ec59e658c24c56279149b573aa
BLAKE2b-256 checksum
How to use checksums
4c21c957ae01a4c338e730c72d312cc154df849ff6c2963d4311c7e93d3cd5f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5b7715e9c849a68c9637474aa4c140f1590fae7f3f39b73e62d154fad3413741
BLAKE2b-256 checksum
How to use checksums
fbad2115c178c710966684fccbaf516655840b1a68c61ffca604acd618ed3b10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d20511c32fdc744e4b1996efd912acb648c19dbe3dc5490ed70c3f612affcf7a
BLAKE2b-256 checksum
How to use checksums
effeb7f17f00f968310128e9b58ceba2d90808c8ef569f62d3da2534d75de260
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL sqlite_lsm1-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Size 213.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
362973b62a31359833d14afabae2da57c0e2031ae5fb711d0b722135212d8cae
BLAKE2b-256 checksum
How to use checksums
8c3e6a9b3d010447acca53d1cefc5f8079ed3d2e245ea27787ae2aff8d83c2fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp312-cp312-win_amd64.whl

Download URL sqlite_lsm1-0.8.0-cp312-cp312-win_amd64.whl
Size 195.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f109aa40da0f50d4ff1a9af97be3fd29566b99bd88280b3b170b53773d5a2482
BLAKE2b-256 checksum
How to use checksums
9fa0043d25a51f92db9aa3e94f021ff9a9d9242ac017ee286192a7c7cc0642e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp312-cp312-win32.whl

Download URL sqlite_lsm1-0.8.0-cp312-cp312-win32.whl
Size 157.0 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
77921cac5f1242ccca1d68a95723e4659fa899973810dbf8241ce1ec817b8713
BLAKE2b-256 checksum
How to use checksums
f8165c399474c3d5ae69c0ffcf91acab9440b4d4c12d097c4473e70d27eabeb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
371407413b7190c1d9a9bb4e68aceb192b3ab50f356c5ca19f01b58e7694d5f0
BLAKE2b-256 checksum
How to use checksums
f3704d5fbdd66fdd84e609b974dd13e07d963844b953e12eae15fd48075cc33a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5b71bc977118b23864cf345f26c118f08a6818de9524718c5845ae1c1c57cbc6
BLAKE2b-256 checksum
How to use checksums
fbf7187eeee370d8e44e087a538630d96a898de56b741b1adf262f50e9986cb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL sqlite_lsm1-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Size 214.2 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9fb37399f9f8aaf443cd7320cc03f9124cc60d29782b35ff12cbc8636fe750eb
BLAKE2b-256 checksum
How to use checksums
8f8582b962c2860711d1df662eb4bb4dafa0f1c7ba0269e05a535c0cb7fdf05f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp311-cp311-win_amd64.whl

Download URL sqlite_lsm1-0.8.0-cp311-cp311-win_amd64.whl
Size 195.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
352abf8995485d6a23ff2b4e0f96cd70e2eff6bc25c2cb7903b044b9b0f7abd3
BLAKE2b-256 checksum
How to use checksums
990295b7ce057c4ea68c0ac13cf24d9a1edbc8b04363851bb9c4e485b4cd54b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp311-cp311-win32.whl

Download URL sqlite_lsm1-0.8.0-cp311-cp311-win32.whl
Size 159.3 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
2aa01bfcde5b7c8956aec88c5471f6f8b297a36109d377ddc419b2bc906ef6dd
BLAKE2b-256 checksum
How to use checksums
821e05a5f38119c7b7b656afd1d655cb0f33a996a20568239bdd2f5fc5452e33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7c77801a888d2de9f01b461d3d1c0ff7b17854eea99e764c80c3b90c0e603b00
BLAKE2b-256 checksum
How to use checksums
c613adbb74303f42aa6162ac670d875735c815f1cc0dce5ab108218ff9a99183
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.4 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
317ba16b8fcb40f73743f768e4c9f7c496511668a1b6522e77c019aee6f0435c
BLAKE2b-256 checksum
How to use checksums
bac95395d57cf1bba07e59288d550a71dcb02768a68a65bfbe7aad4f84174f7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL sqlite_lsm1-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Size 215.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a65774e70c7f6fa66e9aad814e85216b22b2c581b8743ed843869792cb17f7f8
BLAKE2b-256 checksum
How to use checksums
50784fe5b24ce78d2ee5f8dd2618b9b8b3a62ab23499762e7a3f6595f6fd83d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp310-cp310-win_amd64.whl

Download URL sqlite_lsm1-0.8.0-cp310-cp310-win_amd64.whl
Size 192.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
1c5da29df34f9ccd75d17c9a2c1073e5a2aedfbb50042dae1d34207470df046c
BLAKE2b-256 checksum
How to use checksums
187e015969bc9693afb3eaffa25cb3e96aa195f7847c50ad9ecd52e82fbedd28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp310-cp310-win32.whl

Download URL sqlite_lsm1-0.8.0-cp310-cp310-win32.whl
Size 159.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
bb4b88511a67fd08d90b46f21055f1a7518a71057abd90b57c79d29b2fd37037
BLAKE2b-256 checksum
How to use checksums
0253f7084af37ead79e3c8187902b780b9cc73bfb74e9971debba2348be2c54a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d3b63afbee67b9854c74abafbf6f3abaf3871dd5e28db99e6e29554a72f12273
BLAKE2b-256 checksum
How to use checksums
383bcda0fe9c58af55743ae3c78cbf1ee14fd09939710e2b67055a2c0e238526
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.4 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4c87b920e9ae31f4a19f50d9d89ecf23974baddfa2763f3baf64382f712de383
BLAKE2b-256 checksum
How to use checksums
c88bcfb501243cb6ca12528a06a95c3c9cb7d3be689b22f98fbc73d51361684c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL sqlite_lsm1-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Size 216.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a0fb263733ad9393a6e480c2e000f3669e829af30a96b5b98b861092a9cbb47f
BLAKE2b-256 checksum
How to use checksums
61c93d71326aa5d0404eb9bb71752e72dd732dfd1a3d519049c698a06bef1b36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp39-cp39-win_amd64.whl

Download URL sqlite_lsm1-0.8.0-cp39-cp39-win_amd64.whl
Size 192.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
cc3d729eaa2dd8b18d715b8481b6819e72f42135bcd96ab65848e70b42e0794b
BLAKE2b-256 checksum
How to use checksums
edb250eb3abed43dfcd1891f0fbba7caf770718b02375b471ddf7832f83a0dc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp39-cp39-win32.whl

Download URL sqlite_lsm1-0.8.0-cp39-cp39-win32.whl
Size 160.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
4d626b55c51aeda89991840cfa508dfe566f39d94612c91893b89385fd6fb842
BLAKE2b-256 checksum
How to use checksums
66c2b707523f82465cb667b664b6c3bf997678373a9a714cce0a93b57ffe2bc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e73dcd89968073bc21d2e6243283d9ce3ec3bcaf8f587cb973b717483b5c8a89
BLAKE2b-256 checksum
How to use checksums
7ee4a85a28f130d84c9c1883af91a6da2220d8e2cd531334281f00337e7a47ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL sqlite_lsm1-0.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.4 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9011eba81542957bfa4a8c6e1b736e32293926f4779e67f5486d27d8f56fdea5
BLAKE2b-256 checksum
How to use checksums
7332388db62b610fc356c10ab1c3d44f16008c340579625ccfe3c233c2a13063
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release files / sqlite_lsm1-0.8.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL sqlite_lsm1-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
Size 217.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c1ba2bc44cfd51dd4b10908625323ba2c4eb9082b69a148481d26350da3a5fc1
BLAKE2b-256 checksum
How to use checksums
2bf6f3d301095699c5f25b6ec01a436a0f0a9ecc093d212c318a0822a7c7ac38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jul 30, 2026.

Transparency log

Release history Release notifications | RSS feed

0.9.0

36 release files

This release

0.8.0 This release

36 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page