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.6.tar.gz (800.5 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.6-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

pysciqlop_cache-0.1.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.6-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.6-cp314-cp314t-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.6-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.6-cp314-cp314t-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

pysciqlop_cache-0.1.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.6-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.6-cp314-cp314-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.6-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.6-cp314-cp314-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pysciqlop_cache-0.1.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.6-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.6-cp313-cp313-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.6-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.6-cp313-cp313-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pysciqlop_cache-0.1.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.6-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.6-cp312-cp312-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.6-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.6-cp312-cp312-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pysciqlop_cache-0.1.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.6-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.6-cp311-cp311-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.6-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.6-cp311-cp311-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pysciqlop_cache-0.1.6-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.6-cp310-cp310-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.6-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.6-cp310-cp310-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.6-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.6-cp310-cp310-macosx_13_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

pysciqlop_cache-0.1.6-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.6-cp39-cp39-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.6-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.6-cp39-cp39-manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.6-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.6-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.6.tar.gz.

File metadata

  • Download URL: pysciqlop_cache-0.1.6.tar.gz
  • Upload date:
  • Size: 800.5 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.6.tar.gz
Algorithm Hash digest
SHA256 63ab3b950222978101c72031d72d848eb496f14b5c7ba1cd3a7d349f42532cc7
MD5 8b3c788ff499b020d9eba5ee35217ce7
BLAKE2b-256 83b432503c174cec1d6e4cd8400f839fb10e79bd4e3dfc229862a323f2923862

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6.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.6-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6234100ab23192abe99ecabd947f8e5694e2acf24af479af9cf0b89eae309b0c
MD5 d592def595b93a341823334c2a8c2a97
BLAKE2b-256 e7c0576f3816ecb735827c86bfc256e831c6cb181f4341bc875b928ab7edb0d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 663c21820331ffe5fd8e8de7a51d80214b32b44016c29840845aa35403e897cf
MD5 126ca09886b58f050fda080638440733
BLAKE2b-256 14164e75d38e062cf08da0cceda547e4e543874533a8747ca42ae66cde1ada6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a608b2ab5e288d73a5b1ee7241dcea9cea6e6cfcd17c65dbd220dbb4ea27360e
MD5 4e41f68f28ab4cc02c0b2a32bbd50e72
BLAKE2b-256 2b2162f19e7362379af86bc7cd667b7ba58bf8657baad592992b19b26a6ef908

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee647c9f09837bdafec47333832ca2a874e6eef459d3fba96dec587cd18d7ec5
MD5 7011617166091967282d61e25ab9abdb
BLAKE2b-256 95a15387ffef4c0a8f9d3bbb9a258efe1f7cd2044856c92b73be5a942a230089

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97491edc8f0a0a2cc5ded40200e887c2a574dac957cabf2d75d10bf5b4cbceab
MD5 eac6fdf894f8c5e50d2d995573dbd1b2
BLAKE2b-256 cf1ba4a1ba342eaf14bacf94a8333e793eacb56f9296f2a2a89e3e566c5ccbc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314t-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8ad37f1f904e6ed6b29bb255c4a81bb2f8396b5a37f8617e6091d8f0b71dde24
MD5 9ce17e401a137b02cde74886cbf3d09e
BLAKE2b-256 79b0c55b37819ca5e1343ecb1c1c7b517d6fe87aa8842251fc51e2baba0d895d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314t-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 4335ce73526c670ca5bd11a2197da06e886f5f643a7d7f3ce85e94d822478462
MD5 ac32135e0e7291f8590888729d0fa688
BLAKE2b-256 a60bdff4ae1f53b124daf2ba805831a1e3fd94a04613430fec753ce7901a9e22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6362be1116a2b6f34c61eb706731f5e8d8f2638ce64bb94d70b52265065585ea
MD5 d223a170fe3a77e70c67c079024b5017
BLAKE2b-256 cf32a67b66c123ed506b8f7800988d8c9120daccab8e29959fb6a401b42a8325

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b605bbc48b176cf7fd4376c405d1f78c14925c2ac7f948aab2a4fd62b7c0f09
MD5 4dadc7f0226003cbcd61b779732830a4
BLAKE2b-256 33c47738f38feca410aec9ca1f01725112b001e88400f885f2735ba4d15ca814

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f53ed5519ea45cfc1bc6ec1c4fa7fe2d09a9b02c66c6ca37c7d338ba7e5274f
MD5 ab3ebe891f1a8fc53ba10f17ebeafbd3
BLAKE2b-256 b8b801bfcee00f6b5036bd76f0ed22e90228acd58f0a3f1b80b39b0436d86fad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eee96c904b6d8eee124498734638a878a6eacf2cf58237f0c9c2bb65029002d0
MD5 ab057b3f015f6f4f57ea17b7cc7bcc0d
BLAKE2b-256 e5e98fd7b3ae0705c73dc308caee0192e516893cd640d108d16835ff06fe237c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03b8a6713e2c547ba1250c5ab604c250016d7d76ec62f015a6161bcf4d91ba79
MD5 e33daf1deb4866d6bbde8ad9980c4e02
BLAKE2b-256 9c686f8cc29a9eec9aa2e3a69c1605b1cd9235de4157a8d23756ddcdabbd1705

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 01935d577c887c49bd8b25688a19d46e22ce645340eb5831be153ec556016837
MD5 917504997a211ee39d3ddc7f0b495596
BLAKE2b-256 88707d5611605f3eed62d29b025e55bd77931dd2f28b7e84d704a72d6cac9d3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp314-cp314-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 62c6254ce9713153a3ebf92bdf91319447e8dee5a179019b7b1a1c5ff75e5241
MD5 0d2f87991f687df76c33b74a01e7b6bf
BLAKE2b-256 b7f4297ddd540410b2bc819c6aa71db0822220be84731bf1011c975d5f683a52

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 79171358605befa5fdad1ab4a44c3b32e134210118ec3defe3342386e041eba7
MD5 c1141e04f574a49a64b8d4b244e3df34
BLAKE2b-256 8e6dbfad30f97927622a70acb4d06b7e2950c24bb21935e25896abd16c047810

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1a273ea1063830bccc6c44429c438663b1e32e25e691d5c5f6812f7df720e00
MD5 641fb7e464ee5ad2a65edb954b113d62
BLAKE2b-256 970305576c1752d1490e4eb7f7d371f97409efed2729e90f11e4dee8e09a2a28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0ee63693551f1c1d32511211ffcd8048b1947c5441c7b46341d8178cabd3fb8
MD5 4e4b8cb5c8ba3a2ec7b90600fece5a2a
BLAKE2b-256 a69d96277fa31447d16fd26c900e92e2397c462950218fd3cfd06a555ebdc2eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 669201c21cbd43869149936fc09fff8b445f69fcea576a6dd8312150b282c071
MD5 720eb471b771eb4b948ad0fb4c417930
BLAKE2b-256 9c030106cd3b7577ebc4b442797b9055b164fbb1e1b10b2e97d67f85ed95eb49

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7f338a869fdf6eacf8340075f8f4a880256cc3992be40f128e7cd2994cbf03a
MD5 79ea6833fe5214a6add852600ca8ade9
BLAKE2b-256 fe2ec33e1a101ab245f7cf2e0614af2b6d671a94a802b2467c88c8a056de7d1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6a3ca88bd3256e86fc7bbe2d153d8eaa2194c22c588b80d9c909cddb30614698
MD5 210638a74d112d1a7c7e9506ebdf46cb
BLAKE2b-256 3d40f8fc8489c5ee2f6ae72a9c7067991efe13faaf46874fb91596f59661d65f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 79012e4629a80250d247d757c250dc286493c351c0930211c59f8195e34c3d5c
MD5 8d27cb499c2c5af09afe47feabe39bee
BLAKE2b-256 e6a0a6e14311e2df7cb945b24f1727b83635b9e45559ee1091aa538440e9bbe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0f0d7dba28df712e4fb66472ab563c66b7189056b34ac2c94ff224d54bcf1dff
MD5 13e05947d1fd368de06a23e8b27afd69
BLAKE2b-256 540c00fa8e805a1708165ee6813148cdec847afcf43867fa8a62b04d92b8f7d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31e1cf78b425a30cef6e3f8f5ad9eda3f679fac7374ecb387ef91b5508c89728
MD5 87f45adf70f9d007604f5c8cb1d2f3c0
BLAKE2b-256 cf5a86750f1a99062bb36b359b951464da9f99608b9ebb957313cf48646e268d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bec1ee0ec72533ffe9d12b8f88b418680baf30d9ff422aa10197e60e3dc1d416
MD5 58b368cf76526a547e4680ed624e25ac
BLAKE2b-256 94426fe553ca1201a1a0283b368041fedfea67d471697e8c1e31a4f3d87d3bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b12b459fa456b9eb7769ff4e09b559acf8f8c15ee799929c374cd731dd34df13
MD5 4e70ae3b5305f0f1007d1c9b41201666
BLAKE2b-256 a533381c34ae3a39a169ec0175f4c4a42fc1a48a68c00148f57cb52c32f4191e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b1d81b39f2989830219c4ff31f1c191011986bccc60c595f09f42a243aa72e0
MD5 e2153ef879aaf6f8220da4a10c582ddb
BLAKE2b-256 4e6e0a52f20affbe376321504420e061189fe995f6127c3e0ca3c1dd132d0ca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 91da25f496bff0d302e2234a0fea7f3803c7dedda068645ab8acc5eba8dc1261
MD5 d4dfab5d9c5a1554a2ecd36bc21bbe70
BLAKE2b-256 1b480be9b424a631c4c24f9e493251d8547bd39cd1e496fe8f0cfbb4ea1e7484

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 166c72c7ea8334808d57968571f57aefecac81939bcce615ed8461ba141d3e06
MD5 1a49e8528883d27fac79cbc906e67f1a
BLAKE2b-256 46948111dda586b9ce46e190b129d761a937e6f53d144fa7dd072f8a334b2ddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c4c4df0eecc2296f10b24c5f975b9281d7071412f9fc3442825197540ef57671
MD5 406d5307a3c8cf7741f0ab7a4bc6427c
BLAKE2b-256 0ef45e98d40ee9a013bc6ad943c2639a2f6f25d5481571ecda8f25266bc909c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56a9f3133cb985c7959ff97550f9803f64c71cf2ee44536dc851a94c197155e4
MD5 18e0c31095ad147b4973e9015b3e9e3e
BLAKE2b-256 4c20d3dd4e333df1a911c6745812601f52d342c49b5ec78ac746cc72a1f1580b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c80c081afca3c9ab196497a284f03e04f35ae558106495145ffa34c6f72308c7
MD5 da7fd3d383643e674846b124f68dbd4f
BLAKE2b-256 547acf00d6a80a1eda33f2dff5b1deb788648db34b99e088ff0e23227d5bcd97

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0bd4db197cfc5967a004a5f359b0219932a293dd692882882b5239bf4627d20
MD5 a2dd76e8eb474399bd669eee43896ae3
BLAKE2b-256 efb2c1914757e8b0ddca2d52c56bc614a3b6db83ebebb17ef24c67503a749827

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59ef0eac7fce957df1f53a4413a9eac6b6251740f9cc9285e6b9026509729e2d
MD5 17ae74139029e6127f6e552dbe9d7f3a
BLAKE2b-256 e17a484c8acecbb223682fe514c9272f06478f85d2567799a7b636d26f123138

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6da751e012982c6855b29cc323d088fde31692e0daa475bc59c6124b63b08072
MD5 a3b6ffd14cb785e69577b06a7dda7e75
BLAKE2b-256 d35d04e532af6d0200775d86793353e1064b09fe6f72cb81546e29706feb046d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 98328af40d32666098edd50205d771de723c62d2f48248c2e6722c34da4509a5
MD5 78121178917895808522c95bf2946738
BLAKE2b-256 95c572f763f1f4d62aa5d3992bd96d63ef4fd21d9ffbfcc4262fd8bcec8a1c8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 91b64517584c55f84e8d75f46dbc2a838159278f291828ac58c6ba3094c89ebf
MD5 43c79b37b0c2a4c38f0f50a90851d719
BLAKE2b-256 a324cdd62f152e6c9990df8e1696ea5ede574b86abf3218e8e5046f132e987e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6499d357dca57bfce7c7d198b69b4a22c472cf881a9cd0332e7c520e4d7d21e5
MD5 481414bb3e4a944c9712cd6b514e2749
BLAKE2b-256 d54066b91897836bb9cf37c1e04c865034bd18c6a984920a41fd9e7948cf33b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 176ccba00ab6cb5be9bea4ea77474c8135a6d497f14044dc3ef5087eda0a7abf
MD5 21a5b77168908e7b48e51a07188a36cb
BLAKE2b-256 b1d5eb8c309684cc8874401f5392d86867f39320878351d00d1c8661320ac63f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ef7e0422c71abf732397f97dc4db7b608e0b86bc06a99268931e9fa8437d675
MD5 4cfbce7afff9671982cdcc8975fa51ea
BLAKE2b-256 91f694f1bfef4bc9b27a3d063d485e9640e10e98c84fecbaf0ca81d816bdc453

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6c0cf1f867f68e4e92319faa3df26485613a396a868e63bfbbf8c4de89fe892
MD5 09b88beced322580b1c5eb973c3dac46
BLAKE2b-256 54ce51cb6667436939d1b3268e48c269dc2c3fa0bfbeb3607d42f95e1c1349c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9f34123f64b03c136d1d0f46efdbe26812c85b4b4d438d9fc45da54c9bd278c1
MD5 583ce5a0d89a6df9caf746c0822a41a4
BLAKE2b-256 32348191efa36592e417b36c37082df4edd7f960b8d507c24e061d3bc44916ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7c368527db264d48f8680864af1e7e36ad825689ed45302501472be10b217a1d
MD5 e5d2bbd1025397c1a92d4438ba29fbf5
BLAKE2b-256 bceaf976734e3e5d721f4e4648f481db85b641ab147ed09c945446c6b27ec13f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1e23f3c25371691ef9cbc366ec9b88117d9e295956d797eeb06743f1b74aa671
MD5 cc1f807351cd73979497bf4b5ce14db6
BLAKE2b-256 148706e5d62850c6ad487120b76341ffb830c57bb660b2b410a2200e13db9926

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79e61477dc144af14f904ef2ce91322bf7c04e79259bbc2158df524a6609fcc2
MD5 b13f1091d84b0ae5d1599263a50a41a9
BLAKE2b-256 0e3ced628fbd7a6b3f1609f5c8f374780c9fe0695506a1d9cc8cb8f820e31021

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bee46c30c38d09f20d94309f455889639bb96a4f4489262858fb5d44559dfc0b
MD5 03ed29779be8548bba9535e9bb1cde26
BLAKE2b-256 d62b81361d4750cbb0a273bda27f1454c7342514984dcc433791fefcc8217b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40cffc08abfb115b2cc0f2b35f733a9e808745ae7a11d096a50175b668e25e38
MD5 03583cb7f1784c4a82bf5f5d5f946958
BLAKE2b-256 0e5c0a2c1c6903f5d143ca7af770b229a4a92f378fc212c0465889e2d8e95caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c71b2b5d3e0db65005048a62d88adad783cb721d307af9a8e9610a35d0e2d07
MD5 182bc7e312c431d0a16672ca0b5d5aaf
BLAKE2b-256 4fd8d23e3499695b0f21e27a4e457cec9e1452d0520730ac8d53e0976f0ed60e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b18389a9662d8acd0b6cf581b973d3be92ed15efd8749453d609d580a42cf415
MD5 55ea0f4af7aeb1a976cd459eb1b5dcb0
BLAKE2b-256 b628e0e01faced5f061fad651d9d28186a0fe3835d78f2d56b487bb731bd43e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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.6-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.6-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 c42ed09d299f4995a9377f8e09f1c7b628cff72f6d860d6b8215d83fb728fe96
MD5 98845c9803a7d2692138cd867e02f748
BLAKE2b-256 41f3aa2110b785deb5898549faab43b01682deb46ccf0f52e637fd45bf5d585f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysciqlop_cache-0.1.6-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

0.1.8

50 files

0.1.7

50 files

This release

0.1.6 This release

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