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.11.tar.gz (815.1 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.11-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.11-cp311-cp311-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 13.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.11-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.11-cp310-cp310-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 13.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pysciqlop_cache-0.1.11-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.11-cp39-cp39-manylinux_2_28_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.11-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.11-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.11.tar.gz.

File metadata

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

File hashes

Hashes for pysciqlop_cache-0.1.11.tar.gz
Algorithm Hash digest
SHA256 77f3f3488d3aad35b0bc07f825b5b5f6430e37c8edd491b48b5182fda2d068f3
MD5 854d781d88bb37ecee7e77780b43fef7
BLAKE2b-256 0181251aa15f3ddf821b3513479987cbf04829fbf65f322380d45ee83a6a24a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f0d9a0c0513d81656f9a26005ed007a5b5539c0b5dc9fca43bb67184fd087126
MD5 a5aa11d4ca905dfaec02f67ce9c06585
BLAKE2b-256 6ad27ef4c2b17727ff540f16b0adedd64bbc521004b62cb47ff0d02c196fb897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51f810cae5b091e7f90b11fd647d761e176e6af2fc7b5971090d7bdb232192a5
MD5 6b586961705ead4a24028dc80aa9b7fd
BLAKE2b-256 c95225fb7c2e9e659d5a1a93cd2027923c85d57427a21d443fab03c8db7ae061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4020d4b2cf4ab0dd4df6dce48ef787729e20495422efc959d62e4a21e9022a95
MD5 c772a015f20d225635c531cd51d40ade
BLAKE2b-256 f25eb361498f9a1b10ed7f4b05c94e5c08f42f4434979701095b1c9c559f4f0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91f581caae2e61b66742600cd2ac2268810ac293b5cc094aee05f3a9d1e0a65d
MD5 21c6315eb1dc438c917c939f21d099ff
BLAKE2b-256 53b90b2ac7d722353da47eb34225fd88b7b905807a7bf8b21715f2ff196e6ace

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 235547121d90ebadbab2446a5b920845a901ad512f6cd8f4fab82dfe7eab68b1
MD5 b7f5fbde2a63a022ca3890a6d0aad35c
BLAKE2b-256 1a152350c810ddb904dce728b1e1b6520eab266d23db682fe704fb67bfb021df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c8908ca783772390782c0cfaa404dfb14a905a93e4eace81f227fd9013846fe1
MD5 7c663f49fa3842b651d28e170871ac10
BLAKE2b-256 019d58d57d1707e99640fc1c8816a397f2be23cbedaa55b99233cff958876392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 236bf5a34a0088847d4e7e3171007376bba1f5ab9c0c3282152cc5bf1d85a432
MD5 28da725204e7f30a9bba9c3f8196bd39
BLAKE2b-256 33f9ecd0b99a2710dd4bbdeceb5032b84bc8720e9362d2331accc6e7e30450f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b251879d8b3b8e6368b17d2baadbb16e97dc98d27b927190f037f712e5149b0f
MD5 90a03e5819a1f00f5a84967f6a6e8857
BLAKE2b-256 91090c065c12de41b5f27a2a1e33385eac0e538cd9d6ed19be233c1362e14b0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b6e6e0b555ee86a2617b567cbabf0ee6d62c5759436a88e643b945585a8670b
MD5 29a281efa07bd45db14c1fea3b2c80cb
BLAKE2b-256 c7f53b6febf7a764e631e99e3dd8208f2b937e0b95833b86eb5a33e29cd3bf99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 928250f76eb7392aa22cf69f7aa5853bf079909893b5123f143706d697d58964
MD5 03a4ca9d66e4ea34041f60fe88a4f045
BLAKE2b-256 fbaf6f7d352851e63657ba193c005e57d750cf7f04f91f20ec55e0c141a029af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3231942deb3b1d56243387be7d1784e7225b5a99f67711be23e38ebd42486b6
MD5 72cc0b8a80a5c814edf26055630b3d25
BLAKE2b-256 8d270c2af1b671fac161ff34b2bd7050e0daf177fc51854ec8da2739b0dfae88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4afcd15e7d2cdf96134368af1f3723b09dcafd45ba8e70e97abce1c73085d97
MD5 a2190670329370c3533e84d081b39fc0
BLAKE2b-256 33cd2d13a76b5a17e987681c7938d3e6816cdf40430878f11f72b5fd29a9318c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b81d40c2d0b4e1b7683ff3672664dba5fb9a70c7859b1275763770ec30b563be
MD5 282daa94f5898354533f014c583a9d1f
BLAKE2b-256 1d2f8c09095357e11d7a639551ced50fb7ad11ed21c6c769554c8db5bee74777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f2a71787d5e3c060a12cbc254ab84116c60d4ab5cce48bf7b77f858868a8dde7
MD5 06e7c52b1ff1954362a6c4ea3f3a268c
BLAKE2b-256 864e9be40da7bc470c87f81a737510cb470cfc51199762e903e7db18b61bba13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86e0cda0c32a3a8cba8062a2274b23aab403e24f3f87463219e585f8209bdf38
MD5 648c01cf4eebdb218f9f85d4a398d91f
BLAKE2b-256 fb3c76204d68e1a94e9dd1158e5e52d45360e78e57bc196b12e1ec47024edd5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb024d33eb394bd859e74d106031eac69143543f0bdd2e88124e60805cedc766
MD5 62dca20a3d2205447cf9d9dc941dc3f3
BLAKE2b-256 67c5c2a3af782095846bcc5fd65143ef7fae2e5c1a37867c5cabdec3b05e973e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a4fb5e72536c450633aebeb5480b647213db442e2b827601d48989ff34c850f0
MD5 9756df70a5538cbc9ae5a9f9c8946974
BLAKE2b-256 24c3b8d02bae34ad04c3fa99044bba62ccbe8ab3296f1be73b866bc098469e17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dee4351de82589dfe56995e28d3adf29ae9e5f45c8c3633d7b218bcbc905adda
MD5 99c8641bef3dc4349d6e3ddc14e7b2f0
BLAKE2b-256 712008e93a1dcd89580e9f597c9d5dd2f2fbd342ac462774a21a98db243a5577

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a98c7e5bda1bc7c904731af363e5fd330a739c05d848c6515b1bd749fab7ae3
MD5 d23b60621275a9eefb31ab2364f270a9
BLAKE2b-256 e9b22bc6f8b4956082b8370228b235e2af52d15663c35126148a02101c23fc40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b88366d8c543d977d7015f6865cf90800651f2786bb613c84247354af89aeb41
MD5 540a9dc6d6ffac3e6f056af32ec2b7b4
BLAKE2b-256 ef6b2b9979e9e3d075657f77c768c975c2d7a5675a3bddb05125941e182bdfc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 d0a30c0117e474f25136a4e94f01a9b044a3f05446de6d5e3e2be6747feb01c2
MD5 b81e8ea69afa09a03d6f3f021fe04245
BLAKE2b-256 f4cd4fe38a7d26f0a3161402230a0971beee798085fa24a189708afb174a2f9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 022f5d5ec4f956755b2fd8b65d781dd6067bb5cecfb2cb644b3f670999e847a4
MD5 edec50a50bd30533858b04810c6b8ac0
BLAKE2b-256 f14b84ffe330476db8db41f938e7d24380c90c5fdd2b33514739a1fe8dd6c181

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1381cbc43bdd4cd57baa70daff8b2bff882e22ee7f85514bc057d14d6ca0ab9a
MD5 b87ccdbd96a88680d038b9a5875c86f9
BLAKE2b-256 701b5b6118c998b67edd209da55f1a18d76adec31dd5d39112fbb23b8ea91952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0c0094e8c865dfe451abfb215dead96acf9c77967b6676976efd174d074b831
MD5 1275bb3b1d1827144049d44caa2385b5
BLAKE2b-256 0ae63f040d71ebdafe982c9a693def79b947305ce7312b0ab9486511943da8ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6af4136bb0db1fe6951f1dca8e590b1ac45b921d308418390fd386dec7d98308
MD5 d83e06fd75e0bd948e29eeb49d4fd6c9
BLAKE2b-256 0460f92b09df58b8bdad150603e7c90ee929d257497a78f90ef4074606132755

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 606387a4e7ea63afd6a705d1fd0e924851677140400d72a8f71d0eae5800f3bf
MD5 7c904d75329280bc4d752689959cbf3e
BLAKE2b-256 b5ee651ff73f6447c20972db85b1c7794077f1deffa23ebec24c0bd652160fda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 04728bcb5f87fc44523e2f721abd2ab7b59d9b6483d2cf3408ed5eef8a0e8fd1
MD5 9780666f1b8e289e39f6366a12d54741
BLAKE2b-256 418e002eabeb1b6b7cda408caa4e262da6f8db9b72bbeffa023c7d2fd4a2e55b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 387e9431cf7d1addc7aa80678e3c4fd3bd5fa19a734a350c4a802b4177613fda
MD5 7f70d43712243c585029f97e0f1e7156
BLAKE2b-256 5070dd6d84d9064566c05387fe120b0e968074d6b7876e0d2543279bc127c199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1e7ab6adfe3e58d6efa4bd9b9f126c22aa859639b7578b868ea9f427b64ebee9
MD5 511c91fc6353a3091aa73c48d1905db3
BLAKE2b-256 7fd5c685ceb084a1a07b1634292b31b71e909749f34a220176584001d7910ab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57d1811ba5e2f161e3640e2854be9e8fba286d6ecd867f0905cd63ce53992cdf
MD5 ae5f60fe946205b6c5dd2b5b7f2b22f9
BLAKE2b-256 54f793a3fb5ffe65d27ce388668e263b17fe55b3c3ae10cc09f6157e319720cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ab3255dff3203a7cd806c24932531a7d2e4b5ba99752753cc11af829ec3abe7
MD5 a94fa68b6df63a4b15867fdffb1b076b
BLAKE2b-256 47b5681ec9c4aeacf51a2cd31228b17cdeaf2fafc8661a6ea0982ab34ac69f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4155a4de86e3c0d44731bbd8bebb2a88bb73eb41e1bb2ef21b48df6ce1075874
MD5 196974e24e9522224adb76ba38ae5bbc
BLAKE2b-256 91594d2f4329331e1da0dda14707e690c42d193c371cc07bb5c14c83f4cd3d08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c87f6e042661d740276f3b04743a180cccd511972bc95a46e68beaec08323074
MD5 5b1337fe4ab37d4cb86e0cf883a950e1
BLAKE2b-256 1ec9af2fe8bf749598e7640b0b13c5dcb6ac0f388d4bd5bdded0abdbc522ea49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 bafba11531e4aceacd85556c19a88a6c8c45b443215f1dd4d414ee14e3fbe4d3
MD5 e1a9ed6b4a957592c62a99a19937e82d
BLAKE2b-256 e8ac6f046e0827a6e5cae6cd782ecc5cc6aca3f644196e72c6d73d173e6957d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 94a444a6c1ce0d04980740ab7011de500822ba838b67f647770b0339ad992eab
MD5 6a769e6a52641966ebe0546018536517
BLAKE2b-256 b7fde9275cfe6c037ba3cdf41a4cc7c69adfb4fa069d94e486a4a6ddde4b227f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f48d91cf1b926997297902e82f4cb163484ab83eaca379f63e65a82933bc7f9
MD5 221953b9c9f8fce1f0a3627808c641f5
BLAKE2b-256 763747ad55ec001fea12dbe198dc794e4ec445f1ca2cfe5d666cedc20a604d4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6de8e92f190925379f0832bda06b4275a8a74efa1b5814e044b51fa3359aee2
MD5 516425fc88255482bc6ee739b2e3f2ca
BLAKE2b-256 e2167c40f57ffecce1f061f188b60c5aa1ba2b82ab67786c5ca024c922496847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 267a8e825bfec2f2ab2acf5fc6e6d711dc73da3eb127d1ecefc37d8cbb833e28
MD5 6c6a789dff92ffc7fc63d257a3473761
BLAKE2b-256 df20505a996fd4e040adf45f892e381e03af0794bdc6ac8e3869b2396f2a35dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e24b1fef3c61bb6acfd59bae7049771fc72a44feea2ef0d82c22e896a6a1b2d0
MD5 3b7acfe6671cd4cd0a8bc063037a48c9
BLAKE2b-256 ee1c32b96ffc871996dadc2061b9a95bd53cc94bbad2f8455b95257ce0a3e55a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee182fa490cae94c91f0f0d430d1d42f9444854ba6047f162d4bd6346c14132a
MD5 17edafe0358334bfa7eced240a7a798c
BLAKE2b-256 e7827838450a95ba7df789b80063e8788f68946889842ba34020bce7ccd28bbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6ac5959f2ec62de412aff68e842f04bb57db0c24232af2ae402585f11a26e5f2
MD5 2e5016ffdae211e4f07b0aa508cfe3f8
BLAKE2b-256 a2e65665bc30b84dde3af960a5a0f70c9499eb3922aef90bed4051bd56a82c8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 6b411375172932616a8f798a1b41552647ff75527a7f813868ce4b16a5aaa1d5
MD5 dfa96e6f0df03741fff251254c8fd049
BLAKE2b-256 37b93b991784e8cf89548186f4a697fecebf5963174bd9837dcb9658447168d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7ac964868aba48a17a16d66e017c442843482906f11576d75d92659d7f27e279
MD5 11517a5ec678b789d95469b70d177a9f
BLAKE2b-256 709b8eaf2bf4cb97de9667e3d4ebbc0150cdfe306e85659be9594749c0eb8e93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad63a4da976e6238d6fc3a24eb42ff27410a52933f7ba27c9aa1e8fd46dc99a0
MD5 b2a7dde5a29a7b9475d2da13eb8dd21c
BLAKE2b-256 e9d2b14d0cebeeba42ac5fee2f8ac11eb0176d7ede7cfd2b8899b6e131a632ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b14861ca03ced570492e8c138711172179b93406d51d53ca0268dd567b21b91
MD5 25be2fd17b877b5d30edc87f5145b857
BLAKE2b-256 182d32485ae720fdfb4825655f1137bf4936323a25ff2beb30eb3a55a2b75810

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b8c914148e31dc506b65670995138bc850e16812cbd55f4d7265bdf746997e6
MD5 706b9357fe4c750eef72b0f47485c3af
BLAKE2b-256 969754abd3bf7171a77f812779e487612deec7c3405c617a563e2af95f7a02c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 048478bf89f02d3373f27c87d8f09a55de27e6e93c31f613fb1db59a444c28a9
MD5 36d18f785659bc4a46aba06425748054
BLAKE2b-256 0defc51eaa395dee025871f66af8615530911610ff4da5c7153028116533c609

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9f568fa928e9246bf1dd55ada5e6989c440f92ea4168b4eb75df947355b0565d
MD5 701fc4ade45b91b2deae461e52d1eb32
BLAKE2b-256 3d2ceea68fbadfed01ab0a88845436c77a04df2216c76be92e8a36c14c67c2bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.11-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 32f66420367d13030cfd7270ebe1ceca88ce1adf579528769be67a1acfbe0a6c
MD5 db3ec3878711be6ba0202a9164238242
BLAKE2b-256 652d010ffd7771a2d83244e17e143792187924d5ee4a583e0d9b5383bd64ae7f

See more details on using hashes here.

Provenance

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

This release

0.1.11 This release

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

0.1.4

50 files

0.1.3

50 files

0.1.2

50 files

0.1.1

50 files

0.1.0

50 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page