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.3.tar.gz (27.1 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.3-cp314-cp314-win_amd64.whl (750.2 kB view details)

Uploaded CPython 3.14Windows x86-64

timslite-0.1.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

timslite-0.1.3-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.3-cp314-cp314-manylinux_2_28_aarch64.whl (984.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

timslite-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (820.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

timslite-0.1.3-cp313-cp313-win_amd64.whl (749.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

timslite-0.1.3-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.3-cp313-cp313-manylinux_2_28_aarch64.whl (984.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

timslite-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (819.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

timslite-0.1.3-cp312-cp312-win_amd64.whl (749.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

timslite-0.1.3-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.3-cp312-cp312-manylinux_2_28_aarch64.whl (984.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

timslite-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (820.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

timslite-0.1.3-cp311-cp311-win_amd64.whl (751.8 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

timslite-0.1.3-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.3-cp311-cp311-manylinux_2_28_aarch64.whl (987.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

timslite-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (824.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

timslite-0.1.3-cp310-cp310-win_amd64.whl (751.7 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

timslite-0.1.3-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.3-cp310-cp310-manylinux_2_28_aarch64.whl (987.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

timslite-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (823.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: timslite-0.1.3.tar.gz
  • Upload date:
  • Size: 27.1 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.3.tar.gz
Algorithm Hash digest
SHA256 a4f68d55f8ae09ba7b2396bed87f1ea37da750c1a10a734b2b3f6d93d5b1e705
MD5 d255925d9d625c41f959015fe0fa6af1
BLAKE2b-256 c62ec2deb1c68d8fc2b7368b4afca831e9b58abff4620e11e081f184485c4a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.3.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.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 750.2 kB
  • Tags: CPython 3.14, 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 077821686633be01d1d38646a6a5f3fdb37d90c9f7504d66638ca8d82aa884d9
MD5 f4569a22b1ee2220593ee544f8e14db0
BLAKE2b-256 143ecca71c15aef68a4c8334daadf7c19825276d12643434c54dbfcfe0baaaee

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.3-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.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05c28a67e6d2498427ed9c9f1b673a2ad7af4eb832fe1cac1cce75175c4dc3d0
MD5 60b8b0ee01b0092157607efc8a222ce6
BLAKE2b-256 593e338bcc9bae7142058df5d92426dc9c2b1da3968c0ec8e721618267adbc75

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9153b4add730f0217b0bb2dc50c63693d1bbfc952e72f961588ef0e8312f691
MD5 2c1f2f141553cf5898a5c9c703829dd0
BLAKE2b-256 73222be0af050744075d862fcd26c4a6e22eebb673adcc5378b20526033320b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.3-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.3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for timslite-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da689c4ca32fd55fdc6cd4b7e2a004dd977d612454cfbc206aa809add5381bdd
MD5 8e390f88cbfdd18da314a678f29670ba
BLAKE2b-256 c8fcacbd256c66819298d052a70c51687084c263357cbadc83f22ebeaac9f01c

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.3-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.3-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for timslite-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5dad71c17ef26bb1cf2a69ffb35997645aa18ec559f816317d6e240918f39e4f
MD5 315bca7dfd04730ce84ddd6187bb2258
BLAKE2b-256 eb39cdb6dc6c7dfbcc08af07bfd94b019a1f2d29182dfae669947eda28a5a5a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.3-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.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for timslite-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40f9375d4570977d4b40facbb675e7e43d7317653c36565ddd7b2bd2182b76e8
MD5 d5e500c0d50b91ce256cee03d1e26775
BLAKE2b-256 2262a21a00a353f42a68621a092de4ef54ba8311963c42c1f365f543807581f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: timslite-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 749.3 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f6bd33e4aa9479d4b1d47d2933e4f3429f2a10c62d4fba0a8d295a5446f8865a
MD5 55b417a0c7835d388eee552cec9b9719
BLAKE2b-256 38cb4868cbd8f116482451d5fa96818bd3164f2eb15eb1508aa8179bb386b692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a5757611a4f4b0ed6e9eea8717fcadc380bdf12422df98eb73c6ee3bb0b906e
MD5 5a0e32bfe5949fbf31c4173841fd88c0
BLAKE2b-256 51ed233072a4829209660d8a4014bfa1acb89d697282687e3013a003e7d52e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fda8dcb516595fc886434f5ee8685a2ad292a1d627fc76cb8be97f990162240
MD5 4c26f5dea21d16f3a9f3f931c14376e2
BLAKE2b-256 f9a0404b07c3450bd0cb3367fc8a5ec21a32ec176a5c607477b1e2d1c155265e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3cc0c5b62d7d51fe97d7638795d71c5e149c93ca3849d250a9fc51e6e8a0788
MD5 97ef0beabf6904a49150a6634a6aaada
BLAKE2b-256 d3fc19b0df2cb9f8aeb87195e5e49df528fdac88674c622281cac904e9373799

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ffd5b299c3d4efa9db589ea04d2cc912aa2f031c61adc431ed7fabf8d5d222f9
MD5 a0b96a678cfa45bf074de1478a96aec7
BLAKE2b-256 7a2567d4fcad925cc7863b2aea023b3b44c60a95f45dea5a5103070060253565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 882fac45d866a641bff5c7c8f6e43ba4215c228c055d8b2437c7999eaf775182
MD5 a9cf22369e71954fb09d3f6b38a5f4fd
BLAKE2b-256 f8737fb954418b0c32067ab90e78694b265900c96bea2066258ac47ae4c8a97f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: timslite-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 749.2 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 60f241ff5607a210470d45c46e9833ee7537568c2dad5a1270c4d6b60c1a58f9
MD5 062571e40c423c7eb724f8496f656208
BLAKE2b-256 e4d2c85dc91b097ec7e9982bb393d774c264882e9ed9e1a5148df50ba662541b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa9a69a5b6696db24cd45814e68a8ba88f3ff2ace0171854e953702e9a93b275
MD5 350d90f9c14045a1d9efd4c8a0256c18
BLAKE2b-256 5070f5506d1c8259c16e2a0b24944d333765fa8af8e8ac2d036f959acb41574f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a67cb6be67064165de255d45612dea5a4a1a4b6f55c7357bba549f4d39454c4
MD5 fef62c0308361a6c0678d0f2695eef37
BLAKE2b-256 80b307d5eb8ef1e63604e788c4aac4af8f02fb35da64f4fd16c931ab56563752

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f564d2c543f0c5aac3bc16b9039a66b6ee183f34c04712f9138fc3fa969e5ca
MD5 6aa033ad9c2d4fca3af35a51204a4e17
BLAKE2b-256 2de141de88a209a7deb7260a5dea077e66ab536201e2b837374db7a28adb59a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a5e881f7d92113e855bb26ee2ca636109c1fcf68086ab37084170f82f8c21f2
MD5 a17b06b1efe08e4dc62b0c24309eaa6a
BLAKE2b-256 a4859ac5bce4902b85de7c288a30860bdfde02d57fc5b1912437ff53a9d248ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0424c2c1d85f4d7250012f0a269fe46a612c96d38394a4e6d9788ef1db201e41
MD5 cdbd019919bb99689d09244bf69dbe86
BLAKE2b-256 0c7a1585408b7e90f573e7fc6aecb928bc1d09016df8ffc2dbbd5754ad918ea9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: timslite-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 751.8 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 512cc75ede11c7cc424a494e7fb9ef7b37f32b843f3e87f58e68f3007f4cac02
MD5 c8fb1098448cbfa37d8eed9d2250931d
BLAKE2b-256 3146c5789fc0ed72aa7db7310e7b452c0b45ff7a3dee83acdbddf18f58cba386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddbd3883b0d8c8dd8e5935a07ab727af6658dacf4288a4aa70ce42a897a8bb10
MD5 08460fbba9eaccfa3c4e6497cc658db7
BLAKE2b-256 bfa5c9ec4a7c0a47a105aee58f17783de240c3fa91594259d2b27531e290d9c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1208a60674709deb66337f07d0d3f2c3537c91f6fe851984dcb1d5aafa182fb
MD5 2b29ab63c2d665987083d7a5137e51a3
BLAKE2b-256 e61a91815ad217f15b77bb4dd4edbc83052ae5ddb03aec4a04bb80e3b1db4b68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49f5e05061b85bb28a466e0fdce9fa5e4e510bf8a2eeb4f6c45709f96a1b94da
MD5 3cb03cf4555b103807bb70ec6061616f
BLAKE2b-256 7759b9489d54193769729b62bbfd69634c79f457dd5717df78e1bcbd7afc9640

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8091b4515b4fbbb5c9e0a03a62413966c7b8c31f9b894e04d9392879220ef6f
MD5 74be4281e84280d67141781f418e0e9d
BLAKE2b-256 6299f5a3dc2717b99f007d1443809acb8bae779c2d991fc9bf6104dbf155f0a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55f01d4a972f78f8b531a620c6afe557e76e2cc8a46ae8f76ecbb4d9a4757974
MD5 786b0b51dc8ea0ed390e640408aef4f1
BLAKE2b-256 7b582d319dfe090d81fc2fec35c74b647eac8bf4f5766e128837099c793da7b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: timslite-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 751.7 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 80abe94a5b458a14660b6c72fe6b886a0190affe384a6ba1a5be164fc3486a91
MD5 9443bc274f45591e9073628d268720f0
BLAKE2b-256 2f414daccc3e49a29362098c10e89f11ea78c3f2185c16f952f6d9c80daf145b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 580f0575f31336f4be34b0b8b365933886f9603156e040e0e1c21a0e1ca3f82a
MD5 6cdb2447ba7619fed43113543cec62b2
BLAKE2b-256 6e4eed32f809b9948dc476096b18f85d8bd24d51dea561641c2ca4a7a362df72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2df02a0bdd399dd7ba62aebe6ce0d03c07f7b0ffac46f3302497cc8e9a59a18f
MD5 fce52afb72abfc1831efb278e9066865
BLAKE2b-256 60fd64b67db06aae9a8cd6f962f0a9c4713fc2f1ebe7d9047f437bbc2ff7e663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 601e49be36bd0b33b17347502f70dd60f62194b6f0d6cc087d5b383fedce4fdd
MD5 867841dd11175251e06796379ebb1695
BLAKE2b-256 9c45e489b8b8ebbacfaeaa9aaaf1326b2babda6fd01629d8b55d450098e4e264

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ddd8173e80c55899281512803bb2cd3ad72bf2ae804581ce42e5ad7e94224c4
MD5 eea4bb7d99f0215b4a982f5968e2a3a8
BLAKE2b-256 d9dcd043b6335f212c5fa43c06eaed33d9627f4e9df252ee2a561f440ab5535f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4028eb21355fff58d9fc57509870264d9b040acf1112fcec6c0e8a73b1dd618
MD5 28680cd8d819522c36f7c24d867d200a
BLAKE2b-256 ab37efd5f1e03c6647a1a60215b63ce1a12da9502ec87736aa0fcbde8170313a

See more details on using hashes here.

Provenance

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

0.1.4

31 files

This release

0.1.3 This release

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