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.2.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.2-cp313-cp313-win_amd64.whl (749.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

timslite-0.1.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl (985.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

timslite-0.1.2-cp312-cp312-win_amd64.whl (750.0 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

timslite-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (821.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

timslite-0.1.2-cp311-cp311-win_amd64.whl (752.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

timslite-0.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl (988.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

timslite-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (824.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

timslite-0.1.2-cp310-cp310-win_amd64.whl (752.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

timslite-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl (987.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

timslite-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (824.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

timslite-0.1.2-cp39-cp39-win_amd64.whl (754.4 kB view details)

Uploaded CPython 3.9Windows x86-64

timslite-0.1.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

timslite-0.1.2-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.2-cp39-cp39-manylinux_2_28_aarch64.whl (990.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

timslite-0.1.2-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.2.tar.gz.

File metadata

  • Download URL: timslite-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 be7e6dfc5499250784a3dfcc301d23675600932933f6a54ee9d55329251dff00
MD5 856045310da9cd77e3d7c891ed53df34
BLAKE2b-256 d022ce08b11ecb572624bcb4db06a1577c4f08385a0e45d05bddd2372b62ec8a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: timslite-0.1.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8badc1cfd3552abfa9de376dea41407ba4d98a55d0a2caf5ca969c3d3a7ca1a5
MD5 ce775366779cd11000cabfdabbcadfd1
BLAKE2b-256 2697cef6fef043516eb3a7bde624484a33aff278f80cd5052abd92bc1d288074

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 596e074169a3cf66d8f6170c70d6b641362288499d12d4feeb541752957fe03b
MD5 29720ef9688ea086d0098b26ee081029
BLAKE2b-256 e7f2251623cbf0e75e4c40545f09c5cc863c8bbe3e37929bc686ff05a0df3b23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5559bc1e10dc3ea4aaa4cafb2f4a4e8f65d2ab6423327d95f14b0d5cc0e0fbf
MD5 3b7bc9a4f2242e0b168b48d7cae6234f
BLAKE2b-256 52fa7056bd2734faae63edf7a3d3003eac23a5c37369f4a41cff1170ee093b97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ab02e1ee78061550bdaae4f32ffd833745c4ee5a9ab6f3c33958474ed9c4319
MD5 082ea3ecb71ac1b0458fb244bfdf1ad2
BLAKE2b-256 56c30e42d4d27e7c02b5083761e76d9fd1ce7bd8621ecf92bd35e107668d5499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 952c37b81c24ac49043ead45aeb7afde548dc612513f34a3f029b894835dd156
MD5 6b732be7eef45a0bf5009db01a6f6526
BLAKE2b-256 073201a41467ee8eadf5acc1359e8aa7c9206c7682cc7ced42a17333ad420701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7ea6c963a4167e2d16ffd86bec4cad5a283ae5118c754896de43cd5960063d7
MD5 62dad38dbb445839c7507e010207ec50
BLAKE2b-256 c9e50d701a8045c6d79dc75adda506fd30c565e93c48ddd2ea8625abf0182338

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: timslite-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 750.0 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d9c04c2c2ee14c3745f3484e47efcc788769151bcc0ccd8c46f3e12741fb2f70
MD5 10703d82ac7594d6dc0a7e520d1071af
BLAKE2b-256 05f1c4e0d410ac65ac5152e2a49cbef22c8a0a94be31a1d440ca6c89c6ecd42e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a9fd017379788992dbc51dbf4a0415d588fe6fadda87266eba87712d2d7ef69
MD5 48ec2f39d2b1cdfd0f2b5dc2badab9f6
BLAKE2b-256 2cd0a47b75f005fc676112f0c716ced7f9f62b7420bda426b1f5ea384d61abc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e1f9fdfc5deace9a3d071165fc5e6be6e9748cfa73e65bc3a95875b16c69bdd
MD5 c9f331a9e06b799b6ca1332812ec8606
BLAKE2b-256 a2b8bff9307f97bd4087b3289dce37280c605fd04c10efc0693171241cb620d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bdb198cefc220028a4595e0bc0496591864b0c0c630768fc35015e0d214e6693
MD5 5c1a6f0a34e6be5ea50f18696fef3c25
BLAKE2b-256 713a25c190de9bbb677d137f0439f58cb0fb09585d4a36ab6ae685e82d1275fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 608363c9a15158693a75c5d85ec057ce30fcc99e859cac15f1cc40f956e2cd15
MD5 5ac688aca34037e818eef1cbf7f17373
BLAKE2b-256 edd4196fdab2f1b361f447d84169a4a42e6b2194536a7ccff0b8a835c725213c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 138fc6623e2a8d1f6cde68b8b7565c356d89207f73d7a35fbe126e87677bf228
MD5 b371b728a2ae10f4d572e18adacac665
BLAKE2b-256 f33cc59b620dbc646ca515d0bb5b0a04d415f24510daec04636a2d7264939761

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: timslite-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 752.1 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df403987fb01f1924b6d13d680bffdf1450e60f7365c0d4005f8227248951488
MD5 9349b0f643b279e568dfabfdf102ed83
BLAKE2b-256 59ef7b95cde6af7d7f1f43932e4624417727ddb85aa49ebec23b4aba1e1af29a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba5c789d0c784c8a4ecedb5325260b7c2594f166c54ee621cbcff5193dcad6ac
MD5 92ef20f7b465de73fd17e3ae12020c21
BLAKE2b-256 60cef076d7e1a8af4a35ae5047295d1a66aa1caf9c904ee8ae70e88d7c4c677b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1264165d2c58077735c9245593188381a36c2a68c948666d51ff91b9d4b272d2
MD5 bf2ec67ed2c3638a23add6622f33d8c5
BLAKE2b-256 53a4b37d37d7eb553f41cf8bac9a5ec996a3dc385e4f4df68e90c03992d937fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96ca4729b8a09f020fb3c7745135921e4390d175e2c86e96150347115e813222
MD5 5c17833eff61e69da59fd36b0b69061f
BLAKE2b-256 2a9cc76002e64cd14ae8ef67bbd114a6c4201ebf006c83adcc5fccf086d95e57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b260b39f0541b6d0e6fde040312799a93c86c69485ad58f0a9850376b89ee08
MD5 444ef41d805b552e000cf61e102bac20
BLAKE2b-256 802026f5305176422eb6fd665d7237ee2a3c6e0d92095b7c147b0cde02df8f4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc6df27b8cd186c958b22a693184fa098aaaf8b78ddf6d6f8a822735b1b8aa9f
MD5 9732f1860404d688880a9f7e98a7535d
BLAKE2b-256 eae3f699ac6efc6205da9c71bd60b04aa9f9843643b767e82ccc6ce8a92b27d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: timslite-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 752.3 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c75bd4a7a100a275303ebef1387cbe7d7b5b6976f3d90bfff06bde65afd5724c
MD5 bcd35c9df6f726e119e53146de99097b
BLAKE2b-256 a927eab0237710eddf979bd937dfb196bd08a4f162853f4420dcfee5731b0aa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c470cc91bd172a1f16589d102bf11f6e9004d9ccb51ce7cd433769dba0751ee0
MD5 d2912bfc1138f06abe8eba1ee335c7ee
BLAKE2b-256 57f3bdf22f05b519fb3d1e991e40e10c8fd4937bcfd79f1be0de143c33da8932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ea8116cd764e99ed8a0851dee0fc3432a67dc7f9a03955e947a9512d2311a46
MD5 ee6d4093fb21a27009e91ac3b8a49bf3
BLAKE2b-256 f689eab9fc90c8c1b2c68c4cd619bf587cd49a10153c60216ecf4bdc4f7da465

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 061b530ca170a4ff88e8f7c21c1ebd4ad107460ffe033b030926dd3ed15e56db
MD5 6d4de96865263b221a051f3701d2ccb9
BLAKE2b-256 af998458bc2f0c08d1ea7676b046d9ccba8fa658df74d46b6b1d5be33309712f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c4707c572a5e021cadbff40b03a8886e0b579b35ad60f80d6eb66a8f2a54bd4
MD5 efc51694614c80c640e22aebdcf86b63
BLAKE2b-256 2819c577fb052e581b6bf35bb92ec3dae40f47035ed0ea3f0e45e593d4abbda6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2459d91ac48dfe0341190b12f6d13c2c924b94f79a8982634faf3bc02897748
MD5 a0a6388b5d46bc0716ca39b4358c239d
BLAKE2b-256 c6086d551d44ffc209c88ca8c0b64a1491b0004a95493f92cbac137a8f0faf71

See more details on using hashes here.

Provenance

The following attestation bundles were made for timslite-0.1.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: timslite-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 754.4 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a47766652e0bc4c862c735ffdedc380136993594829a0c2df05a101f256af62d
MD5 a8daa950d129db85788f5f162360ece4
BLAKE2b-256 c2d27a638882efe19eaed583ee62a9608d3345b06ee4a494312f6eee33887c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91992ae3648f13957cc4cbc0241f88bdde77b05f62cf3b22570183147ff7af50
MD5 c68dc8741df077d5f5bf075435a79175
BLAKE2b-256 06de57e98faf29443a1c5f35e263410a07bcd5494d79e40563c9650887c4edeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bed4956fa2667f54d411320d7feeeaf20e3894abf5636718ddfaf9cdaaa9979
MD5 963741bd05c12307cfc83405c835d672
BLAKE2b-256 0e44ee25bc8c5c4d0ffa5d52ca6e62c3469e0f01ac2a89dd8cd8c23ff9f48092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66ababb85b0a2a5bc3dcd90cccf06c75882f3aa41b6c9824b800a8a9db970ed5
MD5 15e3c2e31f2bd1e83991ab5f24f0d717
BLAKE2b-256 4f1cdf3a4de44b96556819a83ba0247ad3857d64e8c6d8f65d3a3513501daad8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b8ba6efe17a23672ace1c1c41efea5e3a403173c4781fd58fce7653f839cb55
MD5 1680120a362d7556b8464f21eb37d677
BLAKE2b-256 329287fd1798c7e2f9b8bb9eb2dd0b57438176e2b2cdae6e3b1d1e32822d9213

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for timslite-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53d2b8ff6a07087ffbdb6a5f30e58cd39d15f5ba8e8805f737594e7087f97705
MD5 3ed645690a65d10836758c6e5cd04ffd
BLAKE2b-256 8826b9d20baf14c16360a6b14af34c75e374fc54ecac82a655cc345752e997d8

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.1.4

31 files

0.1.3

31 files

This release

0.1.2 This release

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