Skip to main content

timslite-py

Python bindings for the timslite high-performance time-series data storage library.

Installation

pip install timslite

Prebuilt wheels are published for the supported release platforms. If pip cannot find a compatible wheel, it falls back to building the source distribution with maturin. Source builds require a Rust toolchain and native compiler toolchain. The PyPI source distribution depends on the matching timslite crate version from crates.io.

For repository development:

maturin develop            # Development
maturin develop --release  # Release build

Usage

import timslite

with timslite.Store.open("/data/timslite") as store:
    store.create_dataset("sensor", "waveform")
    ds = store.open_dataset("sensor", "waveform")
    ds.write(1, b"reading_1")
    ds.write(2, b"reading_2")

    # Read single record by timestamp
    record = ds.read(1)  # -> (1, b"reading_1") or None
    if record:
        ts, data = record
        print(f"ts={ts}, data={data}")

    # Read the latest record
    record = ds.read_latest()  # -> (2, b"reading_2") or None for empty dataset

    # Query the latest timestamp without a range scan
    print(f"latest: {ds.latest_timestamp}")  # -> 2

    # Range query
    for ts, data in ds.query(1, 100):
        print(f"ts={ts}, data={data}")

    # Delete a record
    ds.delete(1)

Manual Background Tasks

When enable_background_thread=False, the store does not spawn an internal background thread. You must call store.tick_background_tasks() periodically to drive flush, idle-close, cache eviction, and retention reclaim.

import timslite

cfg = timslite.StoreConfig(enable_background_thread=False)
store = timslite.Store.open("/data/timslite", cfg)

store.create_dataset("sensor", "waveform")
ds = store.open_dataset("sensor", "waveform")
ds.write(1, b"reading_1")

# Manually execute a tick — returns (executed_tasks, next_delay_ms)
executed, delay_ms = store.tick_background_tasks()
print(f"executed={executed}, next in {delay_ms}ms")

# Check the delay without executing anything
delay = store.next_background_delay()
print(f"next task due in {delay}ms")

# In an event loop:
import time
while True:
    executed, delay_ms = store.tick_background_tasks()
    if executed > 0:
        print(f"ran {executed} background tasks")
    time.sleep(delay_ms / 1000.0)

store.close()

Download files

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

Source Distribution

timslite-0.1.4.tar.gz (27.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

timslite-0.1.4-cp314-cp314-win_amd64.whl (753.5 kB view details)

Uploaded CPython 3.14Windows x86-64

timslite-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

timslite-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

timslite-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

timslite-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl (987.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

timslite-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (825.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

timslite-0.1.4-cp313-cp313-win_amd64.whl (755.9 kB view details)

Uploaded CPython 3.13Windows x86-64

timslite-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

timslite-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

timslite-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

timslite-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl (987.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

timslite-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (826.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

timslite-0.1.4-cp312-cp312-win_amd64.whl (756.3 kB view details)

Uploaded CPython 3.12Windows x86-64

timslite-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

timslite-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

timslite-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

timslite-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl (987.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

timslite-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (826.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

timslite-0.1.4-cp311-cp311-win_amd64.whl (757.9 kB view details)

Uploaded CPython 3.11Windows x86-64

timslite-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

timslite-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

timslite-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

timslite-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl (990.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

timslite-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (829.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

timslite-0.1.4-cp310-cp310-win_amd64.whl (757.8 kB view details)

Uploaded CPython 3.10Windows x86-64

timslite-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

timslite-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

timslite-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

timslite-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl (990.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

timslite-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (829.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file timslite-0.1.4.tar.gz.

File metadata

  • Download URL: timslite-0.1.4.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for timslite-0.1.4.tar.gz
Algorithm Hash digest
SHA256 f20e81d9f544d089fee77faca8046f740a9d3a34ff4f32f1645ee23fbda8ba3a
MD5 aff2e6210666f2c2130b783b659169ad
BLAKE2b-256 6a0f5f0abc0c1e81dd526cc16d7224a06b00d5a7e469960179e776f69c56d3a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4.tar.gz:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 753.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for timslite-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0882e8837231395ed5586a947d8b30555cf11d718ed320b1c1bbb7f84de65168
MD5 1241eb11bbede64681e00306466a5d41
BLAKE2b-256 2ca16e0b3134c1b081a988a6b7bfa89ca99971e35214da80356a2af42877eecf

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp314-cp314-win_amd64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5128cb52f868a26609c878bb1e08d7c098988be4571f3b7514960fff345c9e26
MD5 3f1032f7cb211b4eb01b7017c0879a9d
BLAKE2b-256 dddfed73a6e1df85921d4445f5fdc12edc6d2d717706694207ea2076b5f5eaed

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd2c7b40e22938d98b8653b20fa3d61691bd40de635b193bc7c2c78a3dcaeb84
MD5 c10d281df7781fc28d190db0e909ab71
BLAKE2b-256 f9bb999ecaaf60ff30e35df5683c9b971d3cf833a9fa445a281b53fd8ae6dbce

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36a29f4314c43aa5abed7c8481c76d4fb2829b55c678f98d15212bd7083526ad
MD5 b53b5f2a30b1bea1b2cf55318b2dd83d
BLAKE2b-256 06228418deb3691de4cca88002226115905ad3e6cd38ec419c2cdd49a57a960f

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 315365c350816868a2138206b3bcd4390ef4cd5c68e79aa1448d13a7f1ed95a6
MD5 bfd3d2a4ba57d5dc61a540e8e4af344b
BLAKE2b-256 fd6bd68885ae22d23e878dd5f58cf0f105814c47eab332b8c83f02bd1f048b18

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3298fdfecb93452baeaae5ec536e3f3f70a899bfe95267736eeb12451e8e8b7
MD5 fece11728d9f75c93575e83e2b539125
BLAKE2b-256 2fc4a9ee3eed98a237c908e9eedc226e112e04e426a47da011a64824f8aa3786

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 755.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for timslite-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cca2861377b5579e169eb400f5bd3b88c1f9e2544259275959209cba767d7575
MD5 c873117f78a93be487b493662f82b037
BLAKE2b-256 f8ad82add4b2bbd8897ace0ebb673973e838aaff8201b83b17f05930af53fe17

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp313-cp313-win_amd64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8948a119b2756cae770edb5dc030419b934cd64a65ba29ed35bb67e58f96b69a
MD5 c3b0618addb5ac3a008f05ab477b508c
BLAKE2b-256 521264596bde81408c056a8d26ee5735d92035e6aa6d3e2cc6a6c23e9019ee20

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e2e60b7cccca83e4572067cd1ee97fafddb5f0cd1be007a89354956526a20f1
MD5 9ea6bd36173a92325cc13636efd09e39
BLAKE2b-256 ba7e9e6228a453d79b7402bcecdbef33b05d30c10d4d5928143616cd9fa883ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff3a7f8771be444e004372c52a749a283c4e91bae0e24b255470508e649e67e9
MD5 2bf27182783cc450695ae50736327b0c
BLAKE2b-256 30882d499fca10921f90f9fa55d1347e93339a2f3765e8c3502a3f1b7ab6d973

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8658ec55173483351476b0a2ca4b427c3cd0efc171b92fa62a5c324f46eac82
MD5 8b77df73c7240aec9fdad79b094c5319
BLAKE2b-256 8ee41bf79f6ce2c5d51626f8a8f01cc032a4ed0eb41f6637c3d131d49142c6d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8be073896f874f904522a6b60e26900b63a79442b3dba00bfe84fa845e54348
MD5 2cad6773b6e13a852f04072b640f3e85
BLAKE2b-256 52596d622c54fad205156f37a62f3926e8c76207629e427e233d48a2c91a549c

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 756.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for timslite-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bef588a8c98f802c23f28c30aa2d3022fcd2f2d52e4b574356621a629792b1cd
MD5 fdf7c8bf0e78817166df5523966b878c
BLAKE2b-256 30672e4022485afe10c3fa62541fed8cbf145bb930501fa2a709437d5c4c55b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp312-cp312-win_amd64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8179504b55186bb3fc703fb36584bb07712c0f1d1124af0887573818c07f1bd8
MD5 4036ce96df7c67ec1d94b89bf412118a
BLAKE2b-256 4d153b0f74348bc16ec58aab9de36dfb3b061e25699f6a4bfa4d989e822ad6ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1e27519428573fd9c6410f746e2d0bfe45255d0605d98d2d1f3fc810fa53c21
MD5 721f4e8ab1498e347555ece02143473f
BLAKE2b-256 6761e27fa15cbe4377816a0f8f30f4e5f4941e5dbb8080fd6724f3f66aa834e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 356018711b90a5eb510e712fa83defc516fe6116371d0ecdd63e914fbf5a30b4
MD5 6795b3e803b34149fa63ddb10f3c3424
BLAKE2b-256 532aca27814770650411aed5e08e123b45e2fab5ca6953997e3e2000d93839a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b43ec09f8be92bf54d24495923fa1f7330fefe91d6f141eae8de9725ccb03e2e
MD5 620b86b9a071bf4fe399d282ab5496c4
BLAKE2b-256 317dad1c37906884bfaec51c753564e54396a27b874ca86df5d67413f4d09abc

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12c036a3bd777fd043bc589837d394f705e503bac9b6268958be5480733b9377
MD5 c098d39e4554dd99564beab4297ed477
BLAKE2b-256 9f4003621bced20a0c23491523e2879832a7d34453d5c0f29da1e31838d55f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 757.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for timslite-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0900f5502c61e81dff5b034ebd90c5e8c9689443d85be3d880787fb0dda2cf41
MD5 b862c1c516ab4d1a0673f5c8b0dc0801
BLAKE2b-256 ed8f2cb39ee196e67664d15bbd9e0290678316aaf58e5a2681f034184a553a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp311-cp311-win_amd64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 423adac0ab7a27d92bca6dc968ad762ae43a043fe53b5b48b7c33b38de59a6a8
MD5 4bbd203e57e0b9a512790dbde4ce81e4
BLAKE2b-256 957bb2524a9c2757a5bd9b48d5691acb839ebcbabb8264ee2cd1606e78e2af8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd8095e39fa72db9dd8cb860b32e6d6246df7097e57f9a61c92611e648f802ab
MD5 0ef043ed00199dc410cf34abd4454001
BLAKE2b-256 8051e205d7c5a14d51645936cccb282b4ea7e2c421a99e1086979185c3fbdb03

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3315561f357d602f8f4a3860676db410b5e63d4d1712d97a5088cf35303b0cb
MD5 057eb2bdf0b146ef4b9a4f96578aa4aa
BLAKE2b-256 a4a2aa4f192d6c676f8256c83d00e720e29dffee27d7a190d65c8ee7048e67c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba371d98400543fee8d6846bab0cb42627f375717279535b019ec70f1a71e39a
MD5 28ae20605c4a7a23d4726c627f5b85f8
BLAKE2b-256 825e6b62b3fd20585460b2aaf36a06b16259c09777741a92a94aa5531c514015

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c940aeeb649fe3d02294d26956ce0348b6f01fa2d0f289f562c8dd85c72d388
MD5 9d84042260088cb8b210d1d6c1227971
BLAKE2b-256 696f101dd3d57a27e0806f8e9e7fa74ad7cd0cc7d1e26927dc4d6db717cef067

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 757.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for timslite-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62ac006b6cbbd5e614f4073aa4d0759b6af3e95cc2c1db7d652578391aaac1ea
MD5 3c9954c62f66e2365df4eff2fb0880db
BLAKE2b-256 181ffa5e813e6208e00de33732a07a08f053e740d46ce33630fbd32396e38417

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp310-cp310-win_amd64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b523c82ff0791aed97537e20b702e5f214a4a28a8d9e05bbcf0346b7420e6447
MD5 4104c243964bc145ccdc9e88bf24666a
BLAKE2b-256 3e27f9c8274f63c7c704601dad9bf5a224a079c65e25a5eec7882f8514adc872

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ade8ad5d9aed75bb6c8103d23d40f85a05d3a5d3747f91f1e86ffddf095e0171
MD5 c976254c9c48ee024f25b97b4ab758ed
BLAKE2b-256 69e132279e855b271d65f9ce6243081f946296c9b8f606f0e3eb5ccd215696fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c11150884b6decfea626d8cd6388e4bbc48bb90df075b54f849bdca8c806feab
MD5 21e518db02cdfd7311c61516a3fe7890
BLAKE2b-256 fd285ccb8f7bd56a405e2abe07342c6a1dc140588a6a6137669ddd06efc941a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f5f81c87b07b1187fef1665e65a766225b2fd56ac31c75b26b13bacd8f9c8e0
MD5 5e9684baf626f92d19ef25586144b4b8
BLAKE2b-256 4d165b1594dc557322739992d1d384d00784f55e9013d520f0e8aaa6b32cdfe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: python-release.yml on snower/timslite

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

File details

Details for the file timslite-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89eeb908dbbfc64d4067af0cf5cf06fbcf22802b7c8f56655409ade4daddd7b8
MD5 5a925f01b72da2c73eea38efb93ff6f9
BLAKE2b-256 ef9424974567ce8d00b9f53187bfc7b0f33ff567fab9be3dc945731e0a004e61

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-release.yml on snower/timslite

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

Release history Release notifications | RSS feed

This release

0.1.4 This release

31 files

0.1.3

31 files

0.1.2

31 files

0.1.1

31 files

0.1.0

21 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