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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 13.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 13.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.4-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.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for pysciqlop_cache-0.1.4.tar.gz
Algorithm Hash digest
SHA256 21c30adda60cb2007194c18229221d8fbef81904ff235699851e22fc11065be7
MD5 d4277de5d6520199cab775998937d5a3
BLAKE2b-256 83db53a39adb73b59aaf01cf08e80e770593d8e55e051a1a732b5f6037f34322

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e9240dc9fc6691da3a8d0165b7bd9c273f0be4eb9fcf2c9540c9578ad041562f
MD5 44488ed0882565a2ae7ec6551ee43a5f
BLAKE2b-256 bd8b112312128f6662c2f89f1a69d189e7e06a6944ef921e4dfcf5af7571f6a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c9dfd813c65e0b17a150c3e160561d5450de34b98b7b9455603d036e7d55528
MD5 177a334be37c6ec656c40c1476544c28
BLAKE2b-256 7bc502e5032c2625bee61e3046ef45424737293233645b9af4feed328c0eeefe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c84941ed3286899914abd8e384a1d383db0271c3c6b5018197af169e1786108
MD5 0f15edf52d73a44d605ef8f42102fc0e
BLAKE2b-256 0a85e56a07d9141cfffcde89cdc6d71fc0ea4eb66d2e4da9d666dfc9efd50577

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56ab2617a16051d7293ffb69b19eaafb135c0619af60a08781dc4a5a074ee201
MD5 8f0159c04aadc797dd9936899885e3bd
BLAKE2b-256 303ed62341c2c14c5476056fa4454c5596e0b20944db3297fb9d4c2d18a1a6e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b86867da4ad10ac1d7ed6ae6177f6e23670cb3f41bb0a147e40654ad21cccd39
MD5 17312cdcd3b6d85e11f18ca6094a9b2f
BLAKE2b-256 7be830220542fff3f7c6db4a5055005c3c63568739ac5773992e43fba92e8451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a8c8b2325b3d0d91de7d34497617068275d04aed75ed3a0a4d34c5770e3832da
MD5 ac6d2eccd7fab95fa983a35973123e6d
BLAKE2b-256 19d18b6ec787c675c5b3dcf6bf6a79f2fb558e4cd5e153dccd989a683a670915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e8f8fb3ff4ce7e7d8deabe8670ed521ed2091ccc939382ab757c44ec6df7ea74
MD5 1dc383ae78ae010e36cc73a25330b34f
BLAKE2b-256 b6a87086c28d862bd1ee647592b2613f5946b7c911e1b28ab6085ed264f1f331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e4655365132dda55f57723eaecbf9694f6a5628669fe6ebcabce8db12557c5bc
MD5 83b257fda6c6f76f8b7e6ca263526d3a
BLAKE2b-256 3913b1d746c30b64eb0519b5aa8c7057b69dfd4c45267c366bb2bdc4274c5409

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de8981d82abd9f5e213ade7f9fd656e0a9c17742061cc2853a787a097d4619b0
MD5 5bf2e64381a728465f284c56bc3002a0
BLAKE2b-256 d7788d128c28ccea82e38fee7de6d434dcce3c397fc4d529fd1da3a2c8f89857

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df4edea44a922c19041b825998b915edc3c176a58e2757b543a8e9cd3e642382
MD5 deb7ccd8ae5f342023925a29e5c504b7
BLAKE2b-256 c72a3ab92f94296b82c1bb3ebe8fe8f62c8e3af5d6bd9c0ee31782428eb4570a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea54654e6201a02c28cc1ceecfba3e937f458433202325aca6d9ef00946310bb
MD5 128c928c6b6e48a65f8f78a00345229f
BLAKE2b-256 8d2feec2aca8f69c76f4eec954540c32df09a2e5b8424537664849ce7b0735c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11dbd712f177926e4f745626ed6984c93798d5780fab331f2fc1c33309f0e3d2
MD5 706692643ed9098bdbe42844d2bbc8ec
BLAKE2b-256 0878fd696ba9ea18c0afd0e6b1e894bee85b609ce8f31660fae6f0454a8dc2fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7d9911c0f7990bc996391bc3f0cabf05e752feabe8966b8af14e2f3f95841e2f
MD5 9ffb5db7f29e9654400dbd42c12a31d2
BLAKE2b-256 0c5693b10b83f113789882b2058c00c562164570eb62fec094508c2ccc729a59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 498a612185dcc3a7dfab1ee1e8ed8523f27617d7f9a96f413a6c8b7b06eb206f
MD5 6342342b9a8c03d54350ed56c381e1b2
BLAKE2b-256 3d4d310c0be463d609e09109cf4df90cba8413e56552c2a63b5bd7bbd86ba432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 809cd5b9f9b4c7f66d400192f80a7bc5499240489c8379b29d53516ec25c924c
MD5 37b81f8be9ad239c4b870eff9ccd23cc
BLAKE2b-256 be069a7a8230ec4d026bddca1555e51c64752dfe8a5a5f4f819a6c627be6205b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f7ff1a090bde7c5ad3a53cfd6a51526cef41730ab3bdd73ce3554a0b091afa
MD5 3c8a3a0dab1d80011d7869704afe0678
BLAKE2b-256 a938658760f2df4a8168ae79b578c5230c6d8bc1faee8bbe9c6514749e3aebe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39751e753ea397c7440a5377e8515eeb638e531b4d8622d97e0ada3db6582d66
MD5 19407b125640525e63d408427596cea2
BLAKE2b-256 6a7670fc123972bd5cfde3a5ce3ba679b960f9b9906b39f38e189cfd2a91e5c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 519298d83e5a66b838320a1d2f715bd534faa7642e0f900ff4180f76b67d58cd
MD5 fd2362d5fea9fb9e371f52bfca9609a4
BLAKE2b-256 839c41381ebf47f4a58dfa4735a2f48ec55b09c971128da791001f4c74dba62a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69e27d33ab0a29b68a341ecb7cf7ef60f20a548b9c83923b7d66b7464bf587e2
MD5 379d2a40c97fb610d3f10fbc363e719c
BLAKE2b-256 df0b132f285208dfed49ae3c16ab58c37c9fbaa9111a76d412fa737f27291e3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3f94a6bbe73ece53507820724d10fe43ce81218a56466564a1c923e305202564
MD5 06811131a9becd51b1b2eb233cea2c0b
BLAKE2b-256 7d438c3ef18017b5aa0e3197889322b9a599bef09627020127a24c30b65e1046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ff95bf47646661fca4d9f3e10412c8b1e5f574b1b895ae07408b1adf9c0aa89f
MD5 310e85bdef09819f98d29d02ac385d39
BLAKE2b-256 3e88c7f055a79a79407654c48b57bbeb2db00a4b06423b177a248bf412336601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 535a469b966c846a47c917cf77c3a339da96c754c5cd1a1189d344740b31835b
MD5 cc90b317cc38392976f91f311394a1dd
BLAKE2b-256 b231f4a86ccf3b9ae44211e4f0e542e9072652706a0b3b4c3a6da21996feae41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87e78735168b8056fce03b0e181360dc3e1fb6f03584b9dabc77cfe8e714da2c
MD5 b8b4d35834d4b79854294954f03ac117
BLAKE2b-256 551377e92d7cbaa4f3df154f572cf4f5735ed2d10af5870b63c795fa48a0959c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cb926a2a244fce6ee9a889744d3fdb319c02d49280671cd325f2449169fabde
MD5 a90778f236fe2705f667e668dad050f5
BLAKE2b-256 29baab93353f4741963f06ba5b53995c97eb77ba12a851a88b6016afc1953e65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ae990bda0c558335b53347291d33804f3c16745d3aa838da787673cabe81312
MD5 7adbb7102cd1ee56bde4b0aada014e78
BLAKE2b-256 2cc792d860e29a53b20c20dadc0c2db197fc734fce407ef04a4d22ce9a673c46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3df7f214d6c05a98b6e27deede6926576876262f45a188e58cf7fdb4c6015850
MD5 9f63e9397c534bcf88d2c6e208805247
BLAKE2b-256 d82c22d0f20a1ab7e9767619b1ea0b990a71ea9e0732e96321ecf95b7f2e59f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 acada2214b1d9fad87efdd6a2f6bb6d7fecb616da316d18766952b2db53c8237
MD5 ba7ec862af3597a1b7e94f7e03448467
BLAKE2b-256 b55dc14de06a840ef48a2a7925cff8d4040bf4af6e58dd3fa6d755b4d509824b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8ca0bbd3ba669463442ffa5a0662fb1ef8baf96858efe42ade919f0188ef83c6
MD5 d4a5f6f26e57eda01f0f2e00155ff434
BLAKE2b-256 c1679a21985a911e7583203e89c74de3c48da73cad1db894d06ceedeb823985b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6573a7a66a766dcc55978d56bc705f1f4689aa2588f9abed17a0091fbb8926d5
MD5 54c5043611a6a68c73952636509e62a1
BLAKE2b-256 3d1bf9cb96554930a07f9467bfd1a0a7881a60a36c113da061fcc52c64564d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccbb80b7342f418ae864afc603ac6e343d9842f2effb51a26349e8543bd8e30e
MD5 92b7dab08218139db3d64a4b443f4ad1
BLAKE2b-256 aa3ce173f3eb24cc337c859f85950cc4b9c7527e0eeb87f36672a1cc800694ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa340312555c8d9c4e60d92ed97d96528162c4b65e6edea9d0c17fd98b9cadde
MD5 c43e00b73c751ad149ecc457acd9e63d
BLAKE2b-256 5ec07903981220a604ec2268c9520748aea586e838e81a3ba2f20918f2d59bc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18850dc9a5c80e804eaee1167c2d60131b2d8531bf91e9bb4ed12ad29cf581eb
MD5 2e6b98c42bb7150d8eac25726a446f63
BLAKE2b-256 39c7e7136f48eeba922c657847e0b9f1180cbff00ff27f162af92a16e0c62a30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db49bffc5df7c9236fe5d35eb03989102a7aed18d7c9421e1a9ed9e479bac2ad
MD5 d863f296c6eb46f48bea3d4b91ef0301
BLAKE2b-256 4fb1af3e26700058188a8ab95ee7abbc8ef1a38b7052650f68be2ccd5ce20c2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 afa9047d1d769d00416deb046daa6aee0b7a658b40f4a7de8ebeffd66aa9694b
MD5 bc815a6ae09c4b8c0e8c5de15acdeea8
BLAKE2b-256 fa469f7491bd31ee0753df68cbb66ce627e4f7dcecaa3ad49dcaa12b7a7ece82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 625fb94de008650dae69d1a5c1bb84f06c38195602cea3a3f9421a5a5a3011a7
MD5 78a38ad506164c7369beb94250c2ea0c
BLAKE2b-256 1bd4bf63d913ceb26370e5037ef77eaa57fd96baf371ff27c93c860e069ba289

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5c54610b73a890235b94be6f6d251d48ef3b05bcad5b6769afb84c1e5c1db83
MD5 370b964b52deaff7e01d1e68b4a55224
BLAKE2b-256 6fbaf0e62e69d43c8ab63ff0fe002ef5d2e4a7861daf749abed0c8be4bc5336d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbd582089f54341676f77f517d31ff9a943f010a158517bdc7b24b1c800dc591
MD5 a9f8d817e5fa39c05849003ccfa0f3ac
BLAKE2b-256 9f63756b602871871012c854526a3397939e7660d6182c27fae6c8e316eeeeda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d1f39228d22c5f19360a70ad88a7f91ba8654db8e8a6b49d5c2decc73204e9c
MD5 4044a680ca2cefba10489b5275e62b06
BLAKE2b-256 327f84142a09523ff849bfe7930a6f2e61ee058cd0875586bee4121b23b2793a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e2f380cc6233cab2a455219d678369eb1c864482b749890cca1b0d9e379c829
MD5 dcecced05e71f8fe698c057a269c2bb3
BLAKE2b-256 7530362abbc05e5bc85f39254fe591629298cd4ca8ad6cee958a7b9a8fc572d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b7ea5ff6e51f98fd9c6d40378b6818d3622b41ef313f8f4bc9c954afaa8eca97
MD5 7918e550bcecf06a02ca2ddbacfbb370
BLAKE2b-256 5042eba941e6c9d19f5adbeff70f06d302ec2ac9117fef4a529d9dbf9550fb57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 cd80b42f789e6f587b44852f1355ae5e2cea945cc1ac3e1719e1f083d6f44bd6
MD5 1eb30ed21d23c939a0f67ae12dbef15a
BLAKE2b-256 8f98e80057c8a7a38f724a2e4096c671170aaa96944c56b10b56a56ea5d15153

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 228fdd27559d2e33ccd17c385d069b0873856a6cac21d6306c123ae8c1d45ee2
MD5 cc3b200f062f8223b4ac7d9e8b19d5ce
BLAKE2b-256 74dc777e49dfbace3369f0311249ab54977da5a0857c7e2eab6dd3c0fce4ac1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d48e0db4a08f4d517553efdcdd2f790921ab3eec6919758f6e12a6214bc53a8e
MD5 f5acf7c29c66b47da065ce570529cefd
BLAKE2b-256 b60aa990365cc5798889cce0f0f56ead6c6ca8e78b87df99f7f1187210e9fa61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c040dc7c7210f7610e56cf057654840d74c407666162b3c4f07a89df31cd64a
MD5 767271561e67571e6c712b6f8f0486bc
BLAKE2b-256 8329daba9154ffaea2a091193ccefb96479a584ccf231933a68028e4d72908cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5ace61f33f47055502483abdb74a69a168e5ed5a79f0deddf21d4d65d8ead02
MD5 820e947303e522eb260743ee57c0ad50
BLAKE2b-256 eb5efb4bfd3c175ecad78304fbed3caa676e09cddf287b31c2aee96284115a04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd10fd17066adc3b82d940fd4d56b21c92087c5adfca6c2d5e44cc7e58060203
MD5 56f3e4fb87b27df24e752a640f936ef7
BLAKE2b-256 ac7aa6999ca7066b5e522c3057123d84173097ca4789988f3b33ca44794392fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ff3fc15707f2b93956e4ff4e9dccc9c8d3b941983e5b89ce46c4b6245f7a799
MD5 b1d5b8b30075f2de8471a8995ff2876c
BLAKE2b-256 b7ab45e4132afa5f956221605b4a800a523c849a2a969ccdf217dbe6d4c87728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 bbee1eefcbe628476fd610e0855d2a77cc1568ba112d0b7df7afc1bb8ba2e6c6
MD5 3e682bbb4df8e990348e15cb3f75969c
BLAKE2b-256 ea4c0353dc89083b3144931976a1e65949b4601c85267f994c0a89cef2dadb27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.4-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 50eb2bd2589f059d1da173eec947bb069991747acf6ad9ba01bf25f6c061a602
MD5 7ea8ef63c592a5f2ff4e6a220fd14e5e
BLAKE2b-256 02c0bea2c7ac129edad3b7c353040cf569fb28c0f7d5d8f6cbee357b7e366e70

See more details on using hashes here.

Provenance

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

0.1.6

50 files

0.1.5

50 files

This release

0.1.4 This release

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