Skip to main content

GitHub License CPP20 PyPi Coverage

SciQLop Cache

A fast, persistent key-value cache for Python and C++20. Built on SQLite with hybrid blob/file storage, it stays flat from 100 to 1M+ entries while being 2x faster than diskcache on writes and up to 6x faster in batched transactions.

pip install pysciqlop-cache

Quick Start (Python)

from pysciqlop_cache import Cache

cache = Cache("/tmp/my-cache")
cache["sensor/temperature"] = {"ts": 1710000000, "values": [21.3, 21.5, 21.4]}
print(cache["sensor/temperature"])

Any picklable Python object works out of the box. For better performance with structured data, use the msgspec serializer:

from pysciqlop_cache import Cache, MsgspecSerializer

cache = Cache("/tmp/my-cache", serializer=MsgspecSerializer())

Expiration and Tags

cache.set("session/abc", token, expire=3600)          # expires in 1 hour
cache.set("sensor/temp", data, tag="sensor")           # tagged entry
cache.set("sensor/hum", data, expire=600, tag="sensor")

cache.evict_tag("sensor")   # bulk-remove all "sensor" entries
cache.expire()               # remove all expired entries

LRU Eviction

cache = Cache("/tmp/bounded", max_size=1_000_000_000)  # 1 GB limit
# Least-recently-used entries are evicted automatically in the background

Atomic Transactions

with cache.transact():
    cache["balance"] = cache.get("balance", 0) - amount
    cache["log"] = f"withdrew {amount}"
# Automatically commits on success, rolls back on exception

transact() is reentrant on the same thread, so transactional helpers compose cleanly:

def withdraw(amount):
    with cache.transact():
        cache["balance"] = cache.get("balance", 0) - amount

with cache.transact():        # outer
    withdraw(50)               # nested transact is fine
    withdraw(20)
# Outer commits; if it raises, both withdraws roll back together.

Sharded Concurrency with FanoutCache

For write-heavy concurrent workloads, FanoutCache shards keys across N independent stores:

from pysciqlop_cache import FanoutCache

cache = FanoutCache("/tmp/sharded", shard_count=8, max_size=1_000_000_000)
cache["key"] = "value"         # routed to shard via hash(key) % 8

with cache.transact("key"):   # transaction scoped to key's shard
    cache["key"] = transform(cache["key"])

Lightweight Index

Index and FanoutIndex are bare key-value stores with no expiration, eviction, tags, or stats overhead:

from pysciqlop_cache import Index

idx = Index("/tmp/my-index")
idx["dataset/v2"] = metadata

Distributed Locking

# Cross-process lock backed by atomic add()
with cache.lock("my-resource", expire=30):
    # exclusive access across processes
    do_work()

Memoization

@cache.memoize(expire=300, tag="compute")
def expensive(x, y):
    return heavy_computation(x, y)

expensive(1, 2)  # computed
expensive(1, 2)  # served from cache

Atomic Counters

cache.incr("page_views")             # 1
cache.incr("page_views", delta=5)    # 6
cache.decr("page_views")             # 5

Hit/Miss Statistics

cache = Cache("/tmp/stats")
cache.set("k", "v")
cache.get("k")          # hit
cache.get("missing")    # miss
print(cache.stats())    # {"hits": 1, "misses": 1}
cache.reset_stats()

Integrity Checking

result = cache.check()       # verify structural integrity
result = cache.check(True)   # verify and fix (orphaned files, counter drift)
print(result.ok, result.orphaned_files, result.dangling_rows)

Disk Usage

print(cache.volume())  # total bytes on disk (SQLite DB + file-backed values)
print(cache.size())    # total bytes of stored values only

Dict-like Interface

All store types support the standard Python dict interface:

cache["key"] = value           # set
value = cache["key"]           # get
del cache["key"]               # delete
"key" in cache                 # exists
for key in cache: ...          # iterate keys
len(cache)                     # count

Migrating from diskcache

# Migrate an existing diskcache Cache or FanoutCache
python -m pysciqlop_cache.migrate /old/diskcache /new/sciqlop-cache

# Migrate a diskcache Index
python -m pysciqlop_cache.migrate --type index /old/index /new/index

# Migrate and delete entries from source as they are copied
python -m pysciqlop_cache.migrate --drop /old/diskcache /new/sciqlop-cache

Auto-detects Cache vs FanoutCache, preserves expiration TTLs and tags. Use --type index for Index sources (creates a lightweight sciqlop-cache Index). Also usable as a library:

from pysciqlop_cache.migrate import migrate
result = migrate("/old/cache", "/new/cache", drop=True)
result = migrate("/old/index", "/new/index", store_type="index")
print(result)  # {"migrated": 1234, "skipped": 0, "errors": 0, "elapsed_secs": 1.5}

C++ API

#include "sciqlop_cache/sciqlop_cache.hpp"

// Full-featured cache with expiration, LRU eviction, tags, and stats
Cache cache(".cache/", /*max_size=*/1'000'000'000);

cache.set("key", std::vector<char>{'a', 'b', 'c'});
cache.set("key", data, 60s);                  // with expiration
cache.set("key", data, "mytag");               // with tag
cache.set("key", data, 60s, "mytag");          // both

auto value = cache.get("key");                 // std::optional<Buffer>
cache.del("key");
cache.pop("key");                              // get + delete
cache.add("key", data);                        // set only if absent
cache.touch("key", 120s);                      // update expiration
cache.evict_tag("mytag");                      // bulk remove by tag

// Bare key-value store (no expiration/eviction/tags overhead)
Index index(".index/");

// Atomic counters
cache.incr("counter", 1, /*default=*/0);
cache.decr("counter");

// Integrity and diagnostics
auto cr = cache.check();         // structural integrity
auto cr2 = cache.check(true);    // verify and fix
cache.volume();                  // total disk usage in bytes
cache.stats();                   // {hits, misses}

// Sharded variants for write concurrency
FanoutCache fc(".fc/", /*shard_count=*/8, /*max_size=*/0);
FanoutIndex fi(".fi/", /*shard_count=*/8);

Concurrency

  • Thread-safe: per-instance mutex + per-instance SQLite connection. Multiple threads can share a single Cache instance.
  • Multi-process safe: SQLite WAL mode with 600s busy timeout. Multiple processes can open the same cache directory.
  • Fork-safe: pthread_atfork quiescing makes both a one-shot fork → touch the cache → exit pattern and a reused worker pool (processes forked once, then touching the cache repeatedly over a long lifetime) safe — see docs/known-issues/pool-reuse-fork-safety-gap.md for the investigation.
  • FanoutCache/FanoutIndex: shard keys across N independent stores for write concurrency. Each shard has its own database and lock.

Performance

Latency scaling (100 to 1M entries, 256-byte values)

Scaling benchmark

Latency distribution

Latency vs value size (64B to 1MB)

Value size benchmark

Batched transactions (per-op cost)

Amortized per-op latency drops significantly with larger batches, especially for small values:

Batch per-op cost

Reproduce

# Scaling benchmarks
PYTHONPATH=build python benchmark/scaling.py --max-entries 1000000 --backend both > results.csv
python benchmark/plot_scaling.py results.csv -o benchmark/scaling_chart.png

PYTHONPATH=build python benchmark/scaling.py --max-entries 1000000 --raw --backend both > raw.csv
python benchmark/plot_scaling.py raw.csv --violin -o benchmark/scaling_violin.png

# Value-size and batch benchmarks
PYTHONPATH=build python benchmark/bench_valuesize.py > benchmark/valuesize_results.csv
python benchmark/plot_valuesize.py benchmark/valuesize_results.csv -o benchmark

Building from Source

pip install meson-python numpy
meson setup build -Dwith_tests=true
meson compile -C build
meson test -C build

License

MIT

Download files

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

Source Distribution

pysciqlop_cache-0.1.8.tar.gz (806.1 kB view details)

Uploaded Source

Built Distributions

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

pysciqlop_cache-0.1.8-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

pysciqlop_cache-0.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pysciqlop_cache-0.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.8-cp314-cp314t-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

pysciqlop_cache-0.1.8-cp314-cp314t-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.8-cp314-cp314t-macosx_13_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ x86-64

pysciqlop_cache-0.1.8-cp314-cp314t-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

pysciqlop_cache-0.1.8-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

pysciqlop_cache-0.1.8-cp314-cp314-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pysciqlop_cache-0.1.8-cp314-cp314-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.8-cp314-cp314-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pysciqlop_cache-0.1.8-cp314-cp314-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.8-cp314-cp314-macosx_13_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 13.0+ x86-64

pysciqlop_cache-0.1.8-cp314-cp314-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

pysciqlop_cache-0.1.8-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pysciqlop_cache-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pysciqlop_cache-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.8-cp313-cp313-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pysciqlop_cache-0.1.8-cp313-cp313-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.8-cp313-cp313-macosx_13_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

pysciqlop_cache-0.1.8-cp313-cp313-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

pysciqlop_cache-0.1.8-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pysciqlop_cache-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pysciqlop_cache-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.8-cp312-cp312-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pysciqlop_cache-0.1.8-cp312-cp312-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.8-cp312-cp312-macosx_13_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

pysciqlop_cache-0.1.8-cp312-cp312-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

pysciqlop_cache-0.1.8-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pysciqlop_cache-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pysciqlop_cache-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.8-cp311-cp311-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pysciqlop_cache-0.1.8-cp311-cp311-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.8-cp311-cp311-macosx_13_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

pysciqlop_cache-0.1.8-cp311-cp311-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

pysciqlop_cache-0.1.8-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pysciqlop_cache-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pysciqlop_cache-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.8-cp310-cp310-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pysciqlop_cache-0.1.8-cp310-cp310-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.8-cp310-cp310-macosx_13_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

pysciqlop_cache-0.1.8-cp310-cp310-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

pysciqlop_cache-0.1.8-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pysciqlop_cache-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pysciqlop_cache-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.8-cp39-cp39-manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

pysciqlop_cache-0.1.8-cp39-cp39-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.8-cp39-cp39-macosx_13_0_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

pysciqlop_cache-0.1.8-cp39-cp39-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

File details

Details for the file pysciqlop_cache-0.1.8.tar.gz.

File metadata

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

File hashes

Hashes for pysciqlop_cache-0.1.8.tar.gz
Algorithm Hash digest
SHA256 8c8e1cdcf851cc327d0c8826b1c8ca7d8e6a11f9b2a1bf2c341ba771b9bbbad4
MD5 cf4bb899c9962639ea01bc6710b43899
BLAKE2b-256 fcd73966e11b7f68d9e8317a54bdaf0985ab7efb31b5cfdb67014b2170a326bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8.tar.gz:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fb3c3509f3a1ec9d1ed534ad424129d3465a920afc80e8efa2804cacd3876e93
MD5 8086d0844dce7b7cdb89e1ae163a40a3
BLAKE2b-256 cfc6733ec6a902d4a900d0564ecffefde342ab9fd1a39df7af7d17b12c23d9fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314t-win_amd64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 392957e7f43dd6224adc1bbc7cadd0cdb767d178d62f18a731137bb90da8404c
MD5 49822e0a56b74f2728768863ab1c4797
BLAKE2b-256 a42fedf0532e3c6f27c0c8afd7c66fe640a43be36b11cf85e32342a3c20a0036

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25e852f14b52c4da304e5353787b0891bf55e21a4c0e7e4f7fe4694c844b7983
MD5 d03b73f936c6aab4218828216b9789db
BLAKE2b-256 d3c69d113a6a8bab20667d51412be0819e68cd04e653cfc363b71e6bece67785

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0169bfa32ad5df31229430ed3dbea2f24f813fee7508ee87f61d22c40b62991b
MD5 a7f50bba584760c74cf0665ce4c42915
BLAKE2b-256 633dea6dabf3f41d5a78fb962b23fe6c029602f642bde5eda621f1de5014032c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e788dfe6d752376ad44d7d81e98d20c76e6e3b7bf1a0fc3c9c62a9242812da3f
MD5 a381a87a118893427e40720f5b97d3cf
BLAKE2b-256 be68f69ccff3cecc8be4a10e0f6b735676263ce07300a1f3311162133abb5885

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9dd51d64ce4b0444e4c1b60b89fea181e79c05102cb4595d76ccf4ab5271ff53
MD5 73b2871813fab11277b850f5fd9cf9a3
BLAKE2b-256 a0bc209c877071e2640f656db26eeb4f6b8fd0db0e8807e6eda5f4c5ccd2cb52

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314t-macosx_13_0_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e56ef1ce61cc012ca3aa6900aeb1d343661467d1229006f1748246c94454c1ba
MD5 0a87e897614c25abe717a60c711360b4
BLAKE2b-256 ba9ef2ccbb35e09b38b495cef6c73c600051795296d0a90b4f8104796ae54165

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314t-macosx_13_0_arm64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e2d5afcf3a7d0912f85994590f283b7849a7348e5ae3a60fab9d564542ea7343
MD5 287b3e5de80058b86ff7fa6bc8636ffd
BLAKE2b-256 1abda7fba693cbce13e9b30081d9af3ab428395047740c660d8dd666be725d5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72855aec05ed9bdb4e2df0c787c454ef48afbc45640c52b0ebcdcd7e01e43e72
MD5 fcc3036c46c8125de3cb55c6b83132e5
BLAKE2b-256 cdfb89e16b28bf2812999bf974e7e4dc1208ed2957e7a0b8231e00561aeeaeec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94e68028f6a2072c16782d2e6cffdd24317e19e27d076b63759279487a942476
MD5 195eba77ba70ef0203691b2c136034be
BLAKE2b-256 127d23b17215fa40496397b6c493e3e8e80dc6c1f0bbf4f3ad14b29bc31ca694

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d36c124839c009d6bb7a51d2795a4c5a2500a4b4151394e54a1e7065e5d8a7b2
MD5 a8dc93657a4f84c7700541177022f931
BLAKE2b-256 8355406bfaf30d83f16ecc0dbc8f85da05db7e07cfe73a6265b106b64b7f2dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c64fbeb95e6321a2efd56bc3c24b3a80184dc203d03918a14d5208c5c39a082
MD5 84647efa06ebc0b53e8388eba3987aca
BLAKE2b-256 79c1750c8c0e05bdfbe6e963573cd91d5b70d72e3eab9a39bdac8808ae9e940a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9cfa7476fab8bedba83fff51544ff5c87b2fc1fb6a103d7324df766b9ea52601
MD5 b31ce3de9b56cac2068e20f792c838c2
BLAKE2b-256 36b5296647b07f3053b0cf490ec48a5c3a964c7891b12e74fe63248c2f6bb27e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314-macosx_13_0_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e8213d48d758f32bd236745b85e6d2953fc30b3cd2a404a16a730a4d3612f3de
MD5 f02552110a859d645a0c5f2e0ea0535b
BLAKE2b-256 09cafedc6276ccfb98f9bc195f939dbf344bc26947ad63f0d92053f19b596cf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp314-cp314-macosx_13_0_arm64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 af1cbc25b5ef040f6aa2931e897b199f408c039f3ef35148ae6893ad52abd74d
MD5 ce62d9733679ce4f0f03f43875514051
BLAKE2b-256 c1409a179bb56fe3ad6a726639fc501380488fb39774eff0587e5dcf70f0c2ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5998020e26342829f04ed4cf603115e78c5230ffd053a964aa1a6acb659491c4
MD5 d676bc6cb4c381a2ce61f0c3ecd79bd5
BLAKE2b-256 d986e30a2a5760d1c20092512db6772e9bed78007c7b22bfd79fc61eec0855bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7d7e1cc958c7aa90b8e41ca00e4097372589c44335a8111d4c4d1e371a5c37a
MD5 bf9093b72288619389479faa70db9ece
BLAKE2b-256 c416124d7b6ad11f6f5cb3ac332911e746a293ae54b618164c21840638e4246f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 906e8ba8371aa03ca35b50a43073f11752e1f2b650e94cea3e93b67fa56b08db
MD5 70a62b0589bd1a3644e5f70bbd36b93d
BLAKE2b-256 24487accedcd7bac0cf3498fd4c4ec39858e5eb4a0d62cb076a6897bf5bbf835

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6ba6466c2463c427865171433913f4fcea43bbee133130af6d8979132e15723
MD5 8caed33c3d475f12b849be4d74e2b367
BLAKE2b-256 d1a0b8bc45e9b35f43c6445329f5e2874d9b823286089073979bf87ac7f5f2bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 aa123a8f7bdd2de2446912108804853c4b5d75cb566ccf040d739925db21ee8f
MD5 c2f298d011875499e98665ffa12244d8
BLAKE2b-256 10e346e884d833da584d699c65d5c548265fb237ed37b8a6154bc541a3d8320c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp313-cp313-macosx_13_0_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 1cb44f9dc3ae624732cb09fcee5fcf3659a2b872e527ec0cd2b03ccd1c9a45d3
MD5 5482b92b232662eb41041b50c15a071d
BLAKE2b-256 a6759d05367dfa71898c3dccc69cd00bbc9d8bbf8170d697f8e196fda87b3391

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp313-cp313-macosx_13_0_arm64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 43a18cf7d2747091ab0e8230f32efde1da78ff4b9bd10d19d94558030fccfb19
MD5 2afddb04e0bed6e6676705f0bab1433f
BLAKE2b-256 c4ec7c5540f402fd5b47caf97d00551a233308adba2ce743372c5d36454277d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73afa03ff619f63933b8ee0d95b99d9d8f10232539714112fe49d45ea0f5d77c
MD5 51b11743e23a78eb04d62b507930a1f9
BLAKE2b-256 573e8601b4d0a634ea7f5bca7d23a452342d0d657e8b9445de1672f1db74f7e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f1eba525ed8be0218d842dc69ac3d66be47825494f9736c08c40544dda8a010
MD5 4c9521666303ba7d65d60ff80af077d2
BLAKE2b-256 0a4b3d6e779c588fd51d713ed15806742bb2db22e7543b5b6436d344285f8426

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e358bc4e7240d9d8d20ec67f38b0b4296548b3ffd175a11b5d1b66bcfdd5fc15
MD5 68269e106e255cbae33ae69027a501fa
BLAKE2b-256 d3baa6b82d9f097e802a976f9803a844dee6880c827748b6589eb9bc619fee3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c2dd26e135f8f8be45822079b283339543f1227bf82ea95e4e4dfab1604469f
MD5 dc6c0b729b79ae973dd150f771362b76
BLAKE2b-256 90041659a587023e084bd2645e56ebf8b4e4cfc9d856f7a6e050e182b13182fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e3d2af46d5bfe986f6d1b021ae85ffefbb3a9c3d189cac9da7bc793823c698a1
MD5 d87ce75a4683501efe19f7849b1bd878
BLAKE2b-256 938caaf52087b44a288adc5f18cb5d11c42d79e24ab318ebbada59baed4719b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp312-cp312-macosx_13_0_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e0f20c2e43f4a5d65320aa8b9b22752d474253b2dd376b6d7530f93a3ae46cda
MD5 25674eb61f80871467c2155ed26e0389
BLAKE2b-256 20471b7c72da2b50d847d27a5310b950c6d4751757a9e3814767731f07352fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp312-cp312-macosx_13_0_arm64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b026b37613532de2fb11d3f997cf8dc12d28798cfe2d633be5b71256e4f72f2f
MD5 8f422469e7909c8f041779729a2bec99
BLAKE2b-256 819349c558591f390b253dcc5d1fa4d127a1222f51b71f2719d16940d1bea2f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7db3ecfaa986c1bf932b146c36a034f1c9a3f136304184c3923b7dcec3ed9c02
MD5 83c0e18a37830e4b73aff65c9e421ad4
BLAKE2b-256 9a5d6b96aac2cafe70d2e2d14e38abf228379dee2aca5201903cc9d561778392

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e143e4a355d7ab9856fa6f331b678ebf7cccc98d582f727b8d805a43341191c2
MD5 85e1873b494874d56b0535e21e9bed8d
BLAKE2b-256 a3816b168b3a2d3bc8c319cb26d34213773e941e53af2f04778023bf8bc98c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e369d766105f48db72aeefc82e7efdb94196b96a82d15b48fef016f3ac0094ca
MD5 635b125aa5a555ab275b4cd4997f6ac7
BLAKE2b-256 65f551f98a555c8e6f12a52684a9cd7416fb3de3701bbbdaefed94515ef98b49

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e6ee6147efe07126992d944a045063348e7f89e2547cf8ac95ecaebc609dfa0
MD5 f9254c758933c39a609fb13895e4d759
BLAKE2b-256 3edec792dee97121b4236ea7bff935003993988b2ee9334e270dc5cd07335c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8084e943f9133216543d91d8d23fa370b67012a32cbe434a018412f175224bfb
MD5 c4c0364767cd4d56f0a2acd32fd5c196
BLAKE2b-256 175baa91ea3f1252ae44bb5db20e5ce614c379fe1ff5b12ca9379321c7d5b759

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp311-cp311-macosx_13_0_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 421ec4689f2d46fc9d25846d9e6099e6d7bca702573cc6465ae4c33d5d4c7551
MD5 01bac03f1a2e38dd28453071ad847c66
BLAKE2b-256 61c1a68e3347ea4c82c66ed996a2e728c936b05aec721aab2621a626226ea5ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp311-cp311-macosx_13_0_arm64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 834183e3757a8b53e14fed2111eb806ff6bcdefa09f65062b1784ae85349e487
MD5 f45ed05b9aebfd5dbe8012e747bd9cbf
BLAKE2b-256 870c3aa9ae2a4e56c67152a0e1d8284173bba0642495fe50b0e59e656c91f57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f889584be060c1c69eb1af79828f939f14545850af72df544060b9ed4d5ecbf5
MD5 f8567e6f618e0c543b9896226ec2a128
BLAKE2b-256 d4ef677977869151d5e8873389fbecd2de3bad337048b35d04b6499500ece14d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b811ae25ac01b0555353985066e1c7dc5dabc2edbe35960d00b57768c435078
MD5 626dce43a630f4448bf742835e127774
BLAKE2b-256 6e6aa874371dc7a0bd66fdb4bbf9144ff8b6e41fbdc4ac9d5ddb21d66aae02f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8014a338c69fbc4161b440b737d309daf644e2056e306f4ef7c32d9cd0d0394f
MD5 6cf8b5db35c3a9d4ee0e9605866c6175
BLAKE2b-256 1735adee2ad41c4a45613bb1fa8ef1e711e6fb7ce808935642706331986109ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b50e96a62ec89209feb8c2ea329e1f37c95c245c49742ccf007051b0fb827565
MD5 f5def0846bb8afb938510bb321711eda
BLAKE2b-256 57c3f35217b7d377acffa2833586dafca55773da9e0ed69cec68c0169b3e689a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 1f89f0dbad5526bfbdb8765e5bfb686dcf5817a4756e3d4810033d0a640d6e4d
MD5 90780d9b354da2c13b060909de9d8739
BLAKE2b-256 456a7e25467fb417dea128e53a75c804e4360c3de5bf33aebdfb1730da70328d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp310-cp310-macosx_13_0_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 30f86cd5bc309d3d3391fcbc2fb833f8176e4e6ea12c2722c44874f260852c6b
MD5 8cc192b9e495b7a8dce778fa5e2748d7
BLAKE2b-256 70a79da8925899e7faee08e360b5fb7c9f6b896c358130325117b8f086e84302

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp310-cp310-macosx_13_0_arm64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e966e1f0d47151cac7b5e059ce49653b94827296722660f69ca1eb56df78cda
MD5 f88497741b2a4a9deb10a803767c2f01
BLAKE2b-256 ad959e57299b19f12dfc02759b7449f4c4e139bbb26feb0e00c4f58cc50797fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp39-cp39-win_amd64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bf071eaf9f4af6d808059731480dfdb26c1858f1f507090dff129f876c90ae1
MD5 7f73b5dc09ea3d1e92c413ce9d11235c
BLAKE2b-256 cf27eaac7b19cdde39c79339b22169256f4153b33817fd15e3bd191f71c1c5b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 942f75305e430621a9867b45cebac9b4bd22465991d09097ea771bfb8fce8510
MD5 962e908963d45b998d814f9a2e94d0fe
BLAKE2b-256 5a081e0f21100ddca69647bbc15d89a4c07654b708a8d0aba3976de70be75aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51a2d93bb82cee73103f9709e9bdf38520ea2b039be803ce81009e7676ef6209
MD5 eea0059cd568c38552aabf02cb56618e
BLAKE2b-256 3c1bdd21ccaa8541b31fc5e1d60c423231b4ed9ae34ee7a34f773f675d05dce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04bd323ec1f3250cdcb75a9f443caa61cbc7d1b0d02e63898b20c3d54164fc8c
MD5 c3745adae2aa3bacb3ed669383a3a5c1
BLAKE2b-256 09e275299959e1d037620ae5b7c84590c31a7dd8611ad588fbc9db5eff0f290f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9a0c5f0835bb76393a47fb10730a3749d5676713c7ee642767e2d965479eeaf4
MD5 ff76537e24164bc1d8ab5063f49a66d6
BLAKE2b-256 58dd94fe199bf536f6e8c276153196d3f22b40ed3f6612110b49afcb30a9d40e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp39-cp39-macosx_13_0_x86_64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

File details

Details for the file pysciqlop_cache-0.1.8-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.8-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9688a902771f9325651f8dc323aad445912222ffcb97656778709bd2652871f2
MD5 04a0ca7cf22f1628788326ce7de31a69
BLAKE2b-256 0d2b64f146429f6447726aec1cfa3104978b935a76df3bc67d50068042a777d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.8-cp39-cp39-macosx_13_0_arm64.whl:

Publisher: CI.yml on SciQLop/Sciqlop-cache

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.11

50 files

0.1.10

50 files

This release

0.1.8 This release

50 files

0.1.7

50 files

0.1.6

50 files

0.1.5

50 files

0.1.4

50 files

0.1.3

50 files

0.1.2

50 files

0.1.1

50 files

0.1.0

50 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