Skip to main content

A simple and fast on disk cache library

Project description

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

Project details


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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 13.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 13.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: pysciqlop_cache-0.1.3.tar.gz
  • Upload date:
  • Size: 809.5 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.3.tar.gz
Algorithm Hash digest
SHA256 19df7232516ccb9048948e4989521b1bcd0f6bc3b2d2def8394078691f9a1846
MD5 f0df67fe9f1e8f2d6e6c7ee7fdfb2ffc
BLAKE2b-256 8fa80f2db252a114c84ef22e9be38aa728c973958fb2d9b209bd9155ff1fbb6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 97daa6f434bc048ef9e3a638421e89179ad914d3d1483a70f3f8d148e727152f
MD5 7299a07643d4584bb1206ba4ad1ebe50
BLAKE2b-256 4608a10f9d61e6d15cc61fcf53e03a909163423ef2cd06c003280128930ed16c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03600969f7c60717367f4dd50e8a25027837dd1a42a5993545ee5652efdd3377
MD5 64dc54d5afe96dbfcede5a76dfc9a4b8
BLAKE2b-256 527ab92f6eabfee2b8b32696759fa450c895edad67015ee92f6aa51dd4845f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 038189184d30a8f4e2241490317ff70f72a27bfb50e7d782deb73a09373b2434
MD5 cbfb69b6fbcb347864850fee87047fdc
BLAKE2b-256 1653c296a7648cf2a9c56ff866118fab2eeffaf174308970e49aed42ea4ec49e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 794ae2de5a82e0bdaea15a522ac18cbe870daa2204652ea7ea3bc1f06e829617
MD5 6781e39c48f22cbe21a9c178578787dd
BLAKE2b-256 473a5f6e0b45b2e60b2396cf3993451b8b328e0adacb541a247edfbd7e22efa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9912a8a8066c2310ac3ed6b8da3454880bf23accb2209aad0fe75586bc4d5aa8
MD5 b1dfad263cc254079fcc2feb139b11d7
BLAKE2b-256 9ab9d5b3fcdb2688af117125216c38cd2c1d577ddf93b6b501cba4e69a3efee9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b92e775f2bd5e081c3e1d44b5e9e2d408232a8fe9f8a34e499115b0674e71b6e
MD5 8c86001b1bbfcaae7efdd57957379270
BLAKE2b-256 fd6551393d9ae5d9ca9e4176d0de608f3d4e81790bc0361e8bbe035e0e4e47a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 17ced42a6cb954ab56d74b3f8c9ddf1c073013126741297acb362a7a607ec719
MD5 8a3b24508bacd973991878bff4391e0c
BLAKE2b-256 c32d2addb5ab95c0bf80240a6133bdaa8209419adb8a8bc3198793cdf9d5c931

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 14c9b4a048bde92c6922131ed30a5615cdfc3d038f41614525a4ce918342aa8e
MD5 a7d04898098a5d20a758684090f54e49
BLAKE2b-256 4b4d028250a1676fe8f124f798b95a6fe493776c120e904c3ef6643b1b873e7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a0d58ced29ea1a18fb5c460be5594f83cb40e05baa52eb725954e96159019a6
MD5 b694ea20ad1debe913774f5044ba0f1b
BLAKE2b-256 d893d7cd17773f6397eafa93af290006e29a0d86d591c2334ddfd03bbc8d5e0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 daebad108d53313e65ec5f5dc0d62cd8c28eb7771906e0af04b7203d6df08eee
MD5 5de020b015d4429440c5e5180f77c9e5
BLAKE2b-256 3193cd8fbe464f206f470891f05f4d1963d6b456fc63f90b747586f4f56f917e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eea2ab37df48e8d93fc2ed8d8c6e31296677dedbfa2ea67d7c5aeb6ee001eda2
MD5 7d4b136c3f6c3bfa56a9ab3bf79ab4fa
BLAKE2b-256 49989a05ab649bdad4339c89df60857e1d8be8ed10ac2fad5646d2de0d0c2cd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 863d3c03b60c83ce1ee5c9be23fc2bd7e1accb19938cad980897e83ff0b4e58b
MD5 af606134102334eeb42b7255cfe3cbc1
BLAKE2b-256 46af5e2ac9b12991bac827b39d56e698f19056891c9533f0a3d8ed88900aa036

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 cbd70cce86d5e4aa1e8d86775562c258b34a11896795b09d333b958d702bf434
MD5 ff18de1ab004d28ad7a6492f0517a157
BLAKE2b-256 ef27bfdd0f678d48744fea52a04d8e7a25371b0b735acd17546edc7d012ccad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ced30f06b22b89f7d10f1e62d2d105ae8b72248fd1b651d7e00ce5c44fa6416c
MD5 d877be1d1daec3f7b6b1c59decd2a7b7
BLAKE2b-256 67703fb335616b5d1c245ed0241759b339eed642972f71269732aa49d679e886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a2c710bbf5ac539c6cfb429944dc6fae27fcd1c0e747eb71d7c3fe54d5d92c49
MD5 1a672a8d599876f8d744dab829fc597b
BLAKE2b-256 43de80b4001db58c2bcfd3f1d8c37401d5925a8f3036235966559334cfbc90ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1770037ec616855bb3ee59b70327a0a55118fee3e6574a206c2be5395593aa97
MD5 1a79fafb5f43403d02d4feaf9b2792c3
BLAKE2b-256 617ecc6349545193f74140f864728d240172a7db80f9ebb7b030b22ccd31b2fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e8f6ddce5bc86476cdc7ebd08352ca950eff5d3338c3b0ade8009448818af27
MD5 7f0d9ba3ee293f044478448f20300434
BLAKE2b-256 6cce189ba0e337167720ebf2b2df5d2cc6bb221fa572ffa956f4dae2243eee83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c10aa4ae6a09d184d86314b82705e938e82445de2cd0fd402139f80b935d6c29
MD5 5d1a7918e5132c71f3843c6a9be4de6b
BLAKE2b-256 8e40c881358c0eef22d3633a77682bf4d34009cc1581e3272c6bb76eead46f9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1dc9b28991eb44c495fc50fcf7386fa970f9816ef2335af180bf4be138a5270d
MD5 c80c4a867e6df822703e2d9ca5872cc1
BLAKE2b-256 5a8579ac01f33199054424fa72a08bf5cbc4fb32b6c3c99d5f63e3e3f951e90f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 80fae0c6891775cb517eb79b2a65cc8d011be7f200cceef0f7750abdf300c947
MD5 6894dd4862c0e7b7e5f4125fcd04e33a
BLAKE2b-256 4418980933e7b2aaf2ec43da5c01ed9d8137c1a03e48ed23cbd877b4417d1690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 aee29147c1391b37f5aaa431d7b4b6dea9b7d45ebf96551b4570e4ebc34a8c6d
MD5 39c27cf6f3fc9e583684a948d3e1eb80
BLAKE2b-256 95d92739867111348725924847f67e0c242da1b7c87f3df0ed6f1785279d9f00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6377baa2c585d31073782f81292b0024dda3725d474d55918f591acd6f1b3d93
MD5 3ae43331707e74e926344f00a06ac133
BLAKE2b-256 041cde164f2c84af4d0147212264be19c9d4c81efa0b1f6f93737c071bdd2733

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbaf6b98f2c5654de98d9304d0b4e8795b33ec3720d95dab5ce479ca0ce0c1b6
MD5 8da1df61191a1286f8b98b38b18b573b
BLAKE2b-256 690908355bf1fff405809a509ae9c7b52475f132195f8b9cc742010799739971

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 328929b47df87ebe17867a8e7f2d64b0dd83506d117ee3802c1cb17343068eb8
MD5 4883b8ff02189616a9a269049ae7fd60
BLAKE2b-256 5a0657160607ef7c020b6afb6a4ada79a288f8b3b1cff33e292a38dd736ca570

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc7d3e416641909a43a2a863b02fae89d827c1454ac0eefef01269f65159bd1e
MD5 2f1f1dc7c4e156e94673c69b941111d2
BLAKE2b-256 e4290a82bf4511b70bc4888fa2036cee7cd55a7c7b2dcff5e52a4b9563511f3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eba033baec9d01fa4a8ea703e6436993f2ffdf0b1cb6ae9a4f49483586f00527
MD5 ac10fe4d02ea17d6eb6c381424ceade6
BLAKE2b-256 771b35b36845bf6d2fb2ef1674f8a3086c29f288e26cb759f6f4dad1b9d42e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 427f6b39fd6bc8bddb4314a2005b72605664ebb4bb19cab0fa5d59746c436eaf
MD5 359b80eef9b5baf23592c0eb45b3e148
BLAKE2b-256 92d0ca62e3d170832aab1bc00f5cfdb3212a7683e1ee581b70089232cd91983c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ca9e4b574d4bc1f1993951c3f78ec6463b82a1238565ade0dd7f365e289672b6
MD5 b6f05b17726ada9a7848622de85f51cf
BLAKE2b-256 570053144546fcba7e8b8a09e7afeec19f09b9820b9c86ff5296c6b4c1619d00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1efd9bda32d42a9cd2d15b19366eda53b1cfebdb2680950e8f2dd4e280d63039
MD5 33086da47183900722268647e2e89af9
BLAKE2b-256 997cd03f8a0dbc4c7d2b6d0d3633c328f677bce3276639e350eda0a08d6ad41b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3be314c36507dbc0d2cdb07999a15c83d15ea973ab81e604db1df107631834d
MD5 d1ffec1621c218c21a5fff04cbe76d79
BLAKE2b-256 2a4f78e0256b7a3be5dd0969c6b9a7fbec8eafc10053a70278d5e68478929f09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11528eff99a0236496448cd9231a704201c0bf2d611588f7e93bacd3246890ea
MD5 86a73b6e51ed334ffbcd4c6900c684a5
BLAKE2b-256 f4351402315aab22d49691e3c2cb946fcd88d7fc0b7ce7370a48429c95533997

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4c8df16d714c01871ae3901875a7abc38fa1d9dd4c39a50c2ef327d2ea2807a
MD5 088d3ec398eb55c26f9db3b8f57387d5
BLAKE2b-256 64e17c965b4196e37c3ad21e24019e4d0e66110d90a1ea6c4e4d9a736236ca6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49ede8ce87706bfaf2f5a8862f22a393ff430e8022d51cd2303b5cf3defee9af
MD5 dad9c852f53dc6683e3f16c40906d6c7
BLAKE2b-256 720e953eb51f05776682a60c5664ab73989a3a941f295a645e6f380821c5a5ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5c9c6182e47b34ea6ef80ebae75a6f2affb84e41fec88e729c01fd3263672723
MD5 ae9eea26e66bf683295180dd5c2ec1f4
BLAKE2b-256 12af6b73872b4ceff1702cdc0dab7fca990f7491851f80b195d0f9f8dc6c13a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 147d36148b6a639cf147d2fdee97bedfaf1889cfe7b3fcc89d24e82b7c6951d5
MD5 097a5b03f91a14e51e4369042852c9fb
BLAKE2b-256 b08f99d3484b48536e7621b57208e9c278a2d83a53a557a44f3a6f38a03944d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 468a2b695287891227f75949e5f65f59d969d494525e63876be7b20f0503e43f
MD5 9fa0f1fac67b24ce3f02b4aec09fc2f2
BLAKE2b-256 abb3c2c3a42526afd8a447edb8c2545988a786e37996d14b24de068bc5778318

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d3ffd554993c2ea28f8707aef8c536afb124653be4d0be2764d954f5e54d359
MD5 842e4efa5a43e0306f4fdf212b67a725
BLAKE2b-256 448a35700bef9450ff38b103dd9a0a314bfe4ec7fa6c15d12a11e32e64476a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af73e47123d574edfd4fdd267a1a30c7ab60129d50c42dc1d1b7d0d65bb5bbb7
MD5 bb65c7078caa5016cf60f18ef1da0001
BLAKE2b-256 a9d7d37adb73d49d5271aebf2fdd544985d0d82371b371e354fc8cebf3ebcd4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98ca5a48f43084e6e0d55abdd4728a2e9e8873feb18528f5265f03c0063fe5de
MD5 bde5e00f787358a18238de4f0d74b0d5
BLAKE2b-256 a9bdb17f2ef05bd8891fe00dd8a377eec95691120708322574231c661f273883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 371f6b6b76d8c30fca9c38db61478e204e384b127506b76980328a05bbc023b1
MD5 d451a52c1e28837cb0fbc9334c7d5ca9
BLAKE2b-256 26ac75ae269ae4b92911bbb5312ec0d3197137a830e13c1e42d7770ee97552b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 94bb1dc6d1d664ecb5480f90f6f4c854d88053728aaefd4752e9ec64d7a9e1e8
MD5 07f0d69839d655082868dc4784d059c7
BLAKE2b-256 dfbc5a32f066322b95b002ea3f3f3f5779545712745dbca2edb4d986262e8049

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b129a52143ba207f6c1e132cf6ad36b80dc6f2e920d649cc9226c831e79d71b3
MD5 40ed7235871a97869faf380114cd12cf
BLAKE2b-256 516290b129b99d028f026c23b68ed23a5ee83e978c1e018e734934e92fd3b0b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 be2504f2007ab07d084ace71739445691a558a8984d45770a827c6fb1e8cbdf4
MD5 30ac31839c18eb692279bce77cc95203
BLAKE2b-256 d373fb2db23da58ddbd37dd825ac5c0ea3ec27eb30edbfccd02f11499ba15d87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c276cd80b39e631a0734b97a3ed606977cd936f677cbaac347c2ad804c7e339b
MD5 00396961b566325c05915d5035f0f05c
BLAKE2b-256 efde923577e81431031f73370a256800da3ebb05a7e56957c54621e7d752de58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a64e38fcb9e6e29d5cc3473d8dc1794df87a0300c5ffc2c05c3e4dc1ed41a0e
MD5 affb2b0a752c5ee8de0408ff48663425
BLAKE2b-256 622010420369f325e5ce5a19f67e9e635bedbc95aab098d53bf3579e2c5270da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2571d8cd1408a97a2be010f485c775cbf99a4646c2c2a69a5eab45d03cf69eb7
MD5 f9a1b304bf97c83eb78f4120e46e0057
BLAKE2b-256 5a8e372996693607b6f2c0a7646b3ed06373dc0e53e86941b0215048f3d4dd61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a61ff06495a73581fdb9f3dcb917c6917f18bfd95415f096f9c3cf316efcada
MD5 18803f246e9ec2af36a6b4b9d556125a
BLAKE2b-256 12509a58f41184ded99d447d05b9d484d68503601dcd7e91906bde0dfdeae5e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 2363e925c4ebe06e31bc2c31c54bad0a41a80e45cf72da09b15390c6b65a5fa4
MD5 5aa7b9440322950511ef9018e86d4a45
BLAKE2b-256 e71855bb7f8192989fc07b2ea07fad1109e4abd8924142da6ae7e3cbe10ab422

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.3-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 05e02f1934804e7a21c60775f632e2776d550051d91c052f116d69fb7476fb34
MD5 c67a8123a426221e3f3196f9330e6fc5
BLAKE2b-256 719137da0e0fc754e1ba203ca817561c9d5e0da874efb78d24acebb90c351613

See more details on using hashes here.

Provenance

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page