Skip to main content

High-performance mmap-backed time-series storage for Python.

Project description

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()

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

timslite-0.1.1.tar.gz (27.3 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.1-cp313-cp313-win_amd64.whl (749.5 kB view details)

Uploaded CPython 3.13Windows x86-64

timslite-0.1.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

timslite-0.1.1-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.1-cp313-cp313-manylinux_2_28_aarch64.whl (985.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

timslite-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (820.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

timslite-0.1.1-cp312-cp312-win_amd64.whl (749.8 kB view details)

Uploaded CPython 3.12Windows x86-64

timslite-0.1.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

timslite-0.1.1-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.1-cp312-cp312-manylinux_2_28_aarch64.whl (985.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

timslite-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (821.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

timslite-0.1.1-cp311-cp311-win_amd64.whl (752.2 kB view details)

Uploaded CPython 3.11Windows x86-64

timslite-0.1.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

timslite-0.1.1-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.1-cp311-cp311-manylinux_2_28_aarch64.whl (988.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

timslite-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (825.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

timslite-0.1.1-cp310-cp310-win_amd64.whl (752.0 kB view details)

Uploaded CPython 3.10Windows x86-64

timslite-0.1.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

timslite-0.1.1-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.1-cp310-cp310-manylinux_2_28_aarch64.whl (988.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

timslite-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (825.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

timslite-0.1.1-cp39-cp39-win_amd64.whl (754.5 kB view details)

Uploaded CPython 3.9Windows x86-64

timslite-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

timslite-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

timslite-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

timslite-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl (990.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

timslite-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (827.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: timslite-0.1.1.tar.gz
  • Upload date:
  • Size: 27.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for timslite-0.1.1.tar.gz
Algorithm Hash digest
SHA256 5cee7852e98054e973b034aaf05bd19775b3689ca965248170634e2026aaf3c6
MD5 02e3d732e2396606716c37359273a030
BLAKE2b-256 8cbba805b48360a758ce1240d7725d6e5b574d307de572f0be4f593341ee3f55

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1.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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 749.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for timslite-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1a92d5163d6bf770bfbda24d27140fbbb8ce6c5634aa29ba624cfd40a68f1a36
MD5 cba24a81c827c0bbc2d71819ecf4a754
BLAKE2b-256 29f59b074df8420aefa21d689e2048b319c30410025cd9f4a6f3421731818466

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75ecea8b92867f26219b478960ce1f103479a30222cb954acbe62ec6655070ae
MD5 6ce94ed8a679425ec7bb13a2357ceb8a
BLAKE2b-256 f17b7c47a1f2c519640a92080a17576a31be7532435d80926fc0cc38a28bf600

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b5b585a3588f0f6ca81e61b6f0d16655b42a53d080e20bb16c30f014f369184
MD5 2045c5476bcc2a639d78db978dd83fc4
BLAKE2b-256 dcf323ba922194669e3252478f3621e0acaabbd71401ae40730ae47b2098a9c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7b0f04f8d48d98a68cfae58d6770acf0251fcf56fba647f194e0e5e3985213c
MD5 cdeb47722f4279de52742a78eaa7571d
BLAKE2b-256 caf604d26397a83cb9037f7c59d5ee6559596543cb91ebd97d3fe19af22e69f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6ece8731694b46733ae2d4ef846ff26268bdd85e548280e99fc455cd2e77914
MD5 fce9bd34560237c477c32f3e2c8ca53a
BLAKE2b-256 9cc2c5492e6bbe7d7f68dbaf5cee3fe8db3184e70cb6bf820392b45a23339e91

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28d6c10bc84b42ff962c668fa133dd52e812f123a498a89d91427d4cb8d6372c
MD5 a15b24692d6753d69d5233e7bb32209b
BLAKE2b-256 e261669c89cdd50652cc3da2a330d95dfb5fbac2372f936fbc058687b2df4522

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 749.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for timslite-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 774cb931c0790cfe44978e84c39a83b1fb745b2837965ba9fa6167803453e2c8
MD5 ee721b973cf1360243313dcb53bd3868
BLAKE2b-256 75616b49da816c3226a59f21d27f55ffbaf864b94ae3e64d49004f6126ed177f

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cfcb5d249cff6c0a81431fe626951cc1318c40fab01e4e9c1211006dd10c3f1
MD5 fc6127d98870adb888df79df2ed46b47
BLAKE2b-256 3a6dab2d647aa9d48dc3f617cf409279f8b6f82ff465cf4bc702211f30b382a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9282548539db23af74d17e7c1e7830cfd18a5195e3cfcbf90e02fa3e2b694807
MD5 70b6111443c495833224738709ae4484
BLAKE2b-256 4b301929c85b83434122aa5b1d6edcb8bb7bd857090f00b28984c6ec219dcc4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76ea66428b2495aa2d2a3c05f74f49bd524fe7c17c82a4ba3ebb69cbeb2a1867
MD5 bfe5033685b5934ac6c65ce1c52872f5
BLAKE2b-256 1f6d2fae27e01d8091d51e85006b5e7e65aa7ea58ab05eb957887e0a9da763ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4ec9e5f4757d3f49524d7288d023c690faaed24ce9dc70be909e24d9321a557
MD5 b987168138af8427046929d69960b45b
BLAKE2b-256 2eaa51f8525d0b0780363c0de2791aa03013192dfa190e9b0abcfce61438358c

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28bf726addfdbd2aa55de84f7a79e24b423b7bcbddfdeb798060528e516573b0
MD5 81e5edd0b682ec0a54f07a85b836c02a
BLAKE2b-256 091cb7a6527a66d9a0b95b4afb9858b502d3dded2c0da1a915ddf578b4cc719e

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 752.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for timslite-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 baf472eb73e5685559fa6338eb72023dcd39d003b80c6cf13b0fe4a0c3adad6a
MD5 2d21399f03d6490e56336c08f1536701
BLAKE2b-256 817825ac331e0e6ac6258c0552730af9e97c81366e6b114b65f4a0c6f06ff6f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f8e160d0fdb9bfca5f5515fb36ac0fe218043d7e4e4f474fa9a5bf1715b7c47
MD5 d245e6af399a91f51bcdcb9b16c30525
BLAKE2b-256 ff12f08d73693ef7bf627e2adc26404c787d86e1fd54d3d3194d70b096aaf15e

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8af3b3441a0c3cade7d64d914584add690fec88600d6957641be610b806ec88e
MD5 62b22ca4db3d954289a11b534f29d4c6
BLAKE2b-256 921bf3783640465ad36650a517f06d284ffef25d9b9a8e23c6336c2c96971abe

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7fa39c302fb2052a237478bcd1380e1d1c1671ed1bfbb0e0d51d1f20f81e0ed
MD5 aad9079c0b052d8b9fdddc4dc153a79a
BLAKE2b-256 579c8736f860209676cf7a224b39d42f3714f1e2bd88e7f32aa68438bb89f831

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf1c460e543b454ecc3374fc4a60b426361fa53d4907e546685b4fcf5ac4f511
MD5 2d6ec201d945dfbfcf16dcaaf105b365
BLAKE2b-256 4b850094b1481e66a92a5dda1f40eba357c0c4d35441552fc5873169e4052fdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e39103d82eb4f29ec2fd5ad98af9af1d5209055115ee5c03b4cfb56634e4ba34
MD5 3092924cce1629b9a5a634925bfa7e0d
BLAKE2b-256 c80503b1ab5db0a2b891a5fe56ed1ab0ab984f99d7023edc93ebe675b8f97648

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 752.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for timslite-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 88fa263d6167f10d9a4195278d3f2747e77c0697b049c634889ce7d52314f8b2
MD5 348c919f1ed53c1ae73a80b280d5c3c6
BLAKE2b-256 96958775604c7a381ede5f4deff6ff9e78293ba40b0e9a05bb062a6e06154b90

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9cb6853bcc9b0b12c992c3d14223f36b534dc6ab746a188af4e79f9548f08fd
MD5 2ec99280b2f342f2c47f164477cc8e71
BLAKE2b-256 b09d0145e2d517d8f464a2907920aeffd8058f127d72dcf75414173be8925050

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4e0c81d356c9ea2311f07638666cd6c4c8092ae98670dba30cfa46fc5d19ed6
MD5 7a601521f70e89b63f900242a70ba005
BLAKE2b-256 80e026cbdfe432e58ad4ae81f0017695ee8e1a6b0754427b90d5d1cfe60b3f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91c5066e8845c76df1b0fb861ce0f8339e25644ac353d7b8147a07eebb0ff219
MD5 96beaf3ca6420f8f3a9cb4abfb227cf4
BLAKE2b-256 de9439771bb826086596c8e90f04fdfdacdf7700f5a9d49bf72aa076d5bc36c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e308538f9fe233035166a5b5c2a7be4033228433ac7e4e6c919c0a00ad1802a5
MD5 8921804b74a836ce657f195fd1006f8d
BLAKE2b-256 88ebd7ca0074fe286dffea8b3525770755151f8957eb15bab232478e86d2ac11

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a03d50dfa72ea67872c5fa322519ad7d0becb04b47507aa4912abc92912f7634
MD5 34f0e2ef0dbde4e517c892560cc6d747
BLAKE2b-256 e3ab3149af045784a7351e5f87a3f86e495540600cdcecfc5296109ea482cf27

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-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.

File details

Details for the file timslite-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 754.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for timslite-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0f42e3e565c3ef74205c5df2e88e8a097fdecb52ab9f78f899b8411dd58b4bd7
MD5 2879bbfa0604a6a39dc0742f85a1b1d2
BLAKE2b-256 d5439200b5c0194dc09b5938ca6ac0e3006e47d67b298bfdad67545f6f7cc977

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-cp39-cp39-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7815d0cf6efaac7a9bb424d3aa23a2de04d3f8a94a3ca2a69577dbbadd0ffdbf
MD5 41a12164fb6138e8ee2e0fcda3818c8a
BLAKE2b-256 85f1031a681001d86e476541d6ae646ccd18e34bffa59e4e0c9e875e3ed34e23

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-cp39-cp39-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c98eac8cf51aee78c74c03c6d3fd2f59a5f4849d05d821e1594fa37c75d04fc
MD5 f7a825df2f128028ba5791db2ef8c9da
BLAKE2b-256 91cbc821002c69d004a8b40cf050cc9db134ae163a353ff84afac62a4ca44bb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-cp39-cp39-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.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eba53542d6f5afceb89e9a30f3b2033542fb0b4fa1bf2bb1378a915480732977
MD5 46c486dcfe424492b9b2d91338539a6b
BLAKE2b-256 7ccae6ecaaa3f3bc59ccdc5d8a3ece24a7265993560c88fa7bae9b0ca07e6bf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-cp39-cp39-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.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e034318ffb10f9d13cb9e2c95749ff5d6e90bff425ed243c38aea2d15cb824b5
MD5 59b377ef7289c0bdfe0c4ed186828d83
BLAKE2b-256 6c38ba3780abd2475c83031c495b8d361f4b4e708cccdf852a45ec8eacb935d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-cp39-cp39-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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c741db1c7ad61e7025054d44613e046f6f593675044f507429ed4a9763385c22
MD5 e4f70cca9440a0cfeedf732c7ba719fd
BLAKE2b-256 84a19b333121e21e9a0d7c41e132bec9cb5f9fdce6ce77a3bcbb5db41aefbad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.1-cp39-cp39-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.

Supported by

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