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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 13.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 13.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pysciqlop_cache-0.1.5-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.5-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.5.tar.gz.

File metadata

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

File hashes

Hashes for pysciqlop_cache-0.1.5.tar.gz
Algorithm Hash digest
SHA256 c017ee3170eded690581b49a60d8a2bda05c56606e7f7f231e04807264c5072c
MD5 e1e73d1b5431758143a4cc8ce346836d
BLAKE2b-256 2d18473ccef6b0a7da6a983768b993a6240706d3e9432e41ff2d6f58d748ddea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f0df1b8362f38687ee75e7e9ac800f041389edc3f0f983fc4662590515d209d2
MD5 2c9e55a816ee9a7d330c57f05ae1309f
BLAKE2b-256 b38d28a9024b1a7f86a5bfad765f8b61c1786cf7f919ea4640b61f4bdda59b0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdd08a09bf40b212f3e557a547ec9f8e9915dd74fc0568708e57294c5104dcb7
MD5 17c9c0bf5b3486575e894d7aca2f8649
BLAKE2b-256 3405c9bcb7e46c06d8d8f1cb478ae781298ac15a5060fc20e6d8921ea52b2564

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 568dcad90692caffc8fc9843fdcb95bee83476eeae4c8f3d9589de1b08f97e2f
MD5 743680433cf7f52c349c6c5ef72eac32
BLAKE2b-256 68b80a94b637f9bea3f9b05bba2a07c21fb86c97735b57d6b5fa1829db776718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aeee2cdb45b9c978c371aed1d7c6711ac51382fc977dcdfdeae1774d7131fa09
MD5 64a4708a2dbe21f7df736ea87feace6e
BLAKE2b-256 561729b6e407666c20100aebe19dc25193b03fdc2e40d565d9409a849e3a525d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9400539af594ef097a9b2c086607c08b5489d1dd4a3f7af21604030339ca7dbb
MD5 622879af8650089876a5121092ae23d0
BLAKE2b-256 b0b5212b9a3d0c7f925f57a09f6fdade3c791017d91b3d22c97fa7c2c047fec5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7ec34fc1cf23b8751f1adc054d0b5e3b2b3386debf6a697bef0bd2b13e18807f
MD5 3e049cd5a8b195fb412f14643e1e7560
BLAKE2b-256 18e19f4162329a11ed3897a9f9a27c94e888f06fcd05e9157d0ca4e4a368a2ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 7c56176bb634615fa17474c5a46f568c6d8f4a05ff6a90cd15e8eeb1f7679199
MD5 11e38d0be90c1758d87015c67c61f501
BLAKE2b-256 e3b250a9e9795b2aa4d71a5980ef9f8ad9a3ab4ef550da7b6c22d223e03a4da5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4373d6a902c470092ff192e0eb8aad72264b974af22393eae99b4d867e172b6c
MD5 8c051057d4d777989cbab25f12167e6b
BLAKE2b-256 4647b4e2fcb814fc917f74f5eef86f10a8bed4211c69ec699e996df77e3b898d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27b1c3d2997fbcc50f93d532feedb764d5b7239e40acb869b06e90c5a5d48922
MD5 37b1aed6f8c6483d75931b2a187b06bb
BLAKE2b-256 dd5ba5a31e5bc84692a27962d366aa4f0dc0674882de08b83dbeaaf0edc3ebb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbd13e7b95c717db911d3548fba57650bbc05d5bbf25d17dd5f78cbefbbac5d6
MD5 c2d80c9482faac15ff4e3a91f412a39e
BLAKE2b-256 2540465a4419bde48800917495d473dbe4c92a265a2322db37e64fc542441d8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb6ea3a60d0aef86f210c80acec0fa042bbd3676ec0994d5ed47943b01e247f4
MD5 b80f65c89e1dba05bdaa993d80bdee99
BLAKE2b-256 95daf84752a1e293bbae772c5637833191bec56c7c2ebe858c5311c78659745a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e29d84cd8b0aa6101902278851f4d1b10f3c728b18880ec67bcd39f205c91d0e
MD5 38df63fafc68d442561db435a84ce9e1
BLAKE2b-256 939034c40180d6c9d2bdede5fb0e478c7066b7113b40544863a8f9da002361d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4f9fb46827e0fcbcaba42a11825e53b39fededb999c434cb71cb25c3cbd7e38b
MD5 7b0657c7686c83bd6bf2de4b7eedd0f9
BLAKE2b-256 f30472009316738490eabf8f98c6c0eff0d4a8f0e991be76261f5ca4d6256621

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 cf3d6ad0ee3deae5bc95b073fe899ab7e39ff90c99c95de04ebf4816c5d6d7f3
MD5 10a4a328b06638df4b386624999f1488
BLAKE2b-256 b16e8e7aa2fc2255e483d09200e59c40bec83eef07837ad1467c8a970301f67b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c77ad1611c68f5f83a8813f3d3c1c362372988e435691db352eaed3fccc969a6
MD5 229106bd846175c727572dc2431f078c
BLAKE2b-256 1e9ee0fee6e773a2919983e2a3b9ba6cba67d7d018fe88ac0309d1d3a939f52b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68d549a044dab6db01bfd5b5a648ade741b8c95f0bf9554850da3faf08fc7739
MD5 8a2968b8986b03c1c031d22e4361fa62
BLAKE2b-256 9b7c2dc2f11392e0747c1eb0c7d83be9b0671de70bef3359884bee226cdaf71b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c7745c854e63aaac7588bf75087ac64b15066897a9ef5ad61ce2c32bf0a717f
MD5 bf3151401e4b20f86368a47b7e6033fa
BLAKE2b-256 a43d0316453ac8d7704424b125f21a4a5ba8cdba5eae645b60fcd0b5ab2556e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0c42adb91339fad8690460298049092c8e4fac5f48e122b9b272babd935a8d7
MD5 e82e4e82f488e60d63edb9e84906c65f
BLAKE2b-256 a3de3027f906eee9bca08636e75bcc0c1b0d3f061ce217c5ed32b80eecd640ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a6dfb37fcf4115292c39bbf312b5dcc24ad66d9ebd5fec00f770347a9a1bf03
MD5 ddfc95a807cf2a2eb75895c17ca685d4
BLAKE2b-256 68a29d34213ee69d623525eb469573b124d3bfcfb709188950a4a705479cfd57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 fb066ff3e52caedc4279cc0a2490a23caac51cc41ac7ad601ae60770b2329342
MD5 d31b1d863f4e4f1525e5598fbb89d7d4
BLAKE2b-256 02ade652b2845237aac602bd1fdfe8c3c7cb817e0250d1d26001786000bc38f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a9d2fab4b4cc580c99f1916d0c7464f10d9d031234e52ebabba45583f696edf6
MD5 ef5637460dcecd297904985d259cb8b5
BLAKE2b-256 36cb75746d2c44f60891d4ba51383321c0a2417cb63f6fb4b2514a7efbe2d9f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd9820ea6c4a9e9ef268da055d35205e8c9f94076e25bbdff8f7a27801e927e7
MD5 14018857a7410cb4e060a4954f15b8d0
BLAKE2b-256 e5703dea34efc730517c1c3664fea8ad0e082b4bad3527da88d468dcceb4c30e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8702d8afcc995eb4203395ef231f4c25701b360dfdcd2c9e5d02c3585a919339
MD5 0c966b5e3af60982b86714475c73b8b1
BLAKE2b-256 7fc8f8cbe70e8ebf73adefcf0fa906bc26dac37b09102697308d8af3c7c4e7ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e55736722497f79dcfff5f31bcc70080a6a361cdbdf6f5b84f1da990b98d8ea
MD5 0a301db3d874bd8b484391b92265303e
BLAKE2b-256 798561fe6ca725288438afa2b58ee724ce511f134720ea2218ddf57d0c3e330e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1265aa4af4becc162dc8481a10db6bfed253d83f85aef07051c948a0d063dc3
MD5 d67a49a8a8f76caeb9961152913e2544
BLAKE2b-256 bdd84408f94d9c227025330765cec31d21a56e57158e6d4fd74a2580dcc40f7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbf36a0c605ae6dd372203a5fe9731aaa25c74f33fb577dcc4aeb41e6852d47e
MD5 a4bb16b3e078f1c1f4d176539c63dca3
BLAKE2b-256 19aef95cd8cb298a66aee9bda82f0aa50f7b5c5bb763827f8a497271bc5d047f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ff5409d721597fa3bd3ea7b72cb9662060e8754629c1a6d6269c27b47b155ca3
MD5 1a76b7916dc039298762f997473adc45
BLAKE2b-256 3226c07cc3a62021268f989015b36a69395fa24e4acf42b8e53ceb3c89dce9d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a765ef3b4ff5b1c28ca108bc50b1fdbf6c4dcb5df5cbbaa5a14bb2fab5e6dfd7
MD5 bd4bdcbb23aa160d8c9025727f6fc294
BLAKE2b-256 966c0f1bb0979ceb5d117925c9fc31115e2630b73c92fa48acfd854422de8737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1706ba4b8e94299ae1172c8f0b039f2e95ee1b0946981bdb5e603674fd935cbc
MD5 a3cb5523f072a29ae09f0ead4303766b
BLAKE2b-256 0a65535bf841122fcd742c3be768298fbd4b107b091221d11514016a5d8e5331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e07a833a423b83511bedab228fca0eabf1b3e2a491db3145ec36b98f1dc803b
MD5 4b7b3b72e9c771c5feebbc1862295f09
BLAKE2b-256 577d6a1cf6010c0fd021d2743445b2d05084f45a9a5417f7ef6d180a4291b52d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b10ef114701df7fc669437cfee08d84a2c0c27bcb210f8cc0e94aabcf0b8f1b
MD5 079224e80f9d4e6e845d502a5b37fe9f
BLAKE2b-256 a7b673932e1a016ce3a385faeabe50121c119cc2543b2f73f09e029f71d13a3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16c4e65e488b3f3a72ce35e6091e55dc89c9fc6ffc6116839e3aa42b70694bc5
MD5 0b48c5858287056b3202b50ffe205a43
BLAKE2b-256 d4af5cf4b2e674f418bbe42d4709c37e8610eca76c02465bed7d158da3605adb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3f56aa925ef0b1b112d7f82c8dfb8eb068f6dd57abef844672a203ee13ce603
MD5 8f02f1e6f2a156afe5fc34146d556490
BLAKE2b-256 782f9f6ac31605abd481266ae59706679a825e5289cedfb918b94c87cbf06d15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9610cff6efdb782a20b53e4b2c5803e83a1a8db9c70577175ad11b843515ed59
MD5 60487e0db5f61d0b36f413fe1d50e9c1
BLAKE2b-256 3aba73e4ae1afa1809f42c4a32c0c39d3ca2ed5adbc49f2671d622316f1bbffb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 92d78dccb3c076dec0a15c5dec5df0e520ce72b65b34bb51e3b1efb55e16313a
MD5 d939f46bb50ba5b9199126f41c70c74d
BLAKE2b-256 6b79c4a932d8a661a470f0b3c85977a9c9dbfe5cf289fe90882b06d5a90b8133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bed4495eaee024169f55f3902e926c91813f4a015078bdb1812ce49444ec541f
MD5 55f3cfc610cc8731b128e060314bab42
BLAKE2b-256 b1470e14995f45abd3a24e3c9d514e2e6356162bb73c0a1d289e54da45e3e988

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d072f9407d747adb61d25345f530eaee2f5874a420218cb28f6a6097ac10414a
MD5 5b5c723f2383b122f3628e172f8af7b9
BLAKE2b-256 996b216cd56f095799b63949140b98270f53f911533711ade75a9d2bd8a8a64f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e4826f2fda4f2da4e64e7330ccc394a41a1165f792f887f8201d74005f441f1
MD5 5cf59ea6fed5f6d9559f95122574a25a
BLAKE2b-256 6e1674381c6b8a0987d96291ba2ba94e89dc48b08de51fad0221bac8af5a9a79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5747f2ba572a327c85ab00b10c9b6780b2aa48fc581bc85dd2c93f25376ea046
MD5 79362fb6fe73fbf4fcf7c052e7ea4fe5
BLAKE2b-256 93cb30fc5c0f45290adbb26937cbaebba476cd3dd603a2cc8e6b6c31c8821ded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e0cd55734137309d7e54a8a620b5ed7a4b09aeaa50db552ea000706f6f0a382
MD5 0bbfac402a0fc4a50e6bea666bb5689f
BLAKE2b-256 93c126c639c137bdf5ef9955b4b73704b7cdb3f898786eb5732e16723578e2d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 877f0cf32eb09938561673c53aa6dcaf28ef8238bcfdac8ab50f74b674f46ae1
MD5 a6b6579f3c728e4143ba51c5e1a4f6f7
BLAKE2b-256 f30c80e139e2b91cf7f016f91720ab31e8b088c0aa3ffc9f00bf255fdc760cf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 75fb67439e60d4e666a09ad7b3cf346cb2badd8d93eacb0160781748404dd600
MD5 198b5aeefd3723be7d8e9102fe6f941b
BLAKE2b-256 8b7c48b88d1573f14a3b091a37acde8711d713ce92681122b30a3e51380049e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 354da7beaf018f27682d41051cc0b70e9a77afee3ea1f919746a8a1f4f2a4504
MD5 f41f35b38362863a9a65050e216b7e6d
BLAKE2b-256 de95f922add2d5ab3da4ea9209244963e9ddfb5f04c7766a19a0734a10b57c86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b7749f3bdb1996968384edd35992b101bb5fc199ac0a69082738bdeb25ad9d4
MD5 eeec009036c4bffaf796b2dde91e97f8
BLAKE2b-256 ad5eb420f25645d7ae2d5add7bd0c260ecf3e0bbdb20c94accfb34e8c962ed2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a4efbc3247ddd24d049d03045370e02210b82259db4ceb58d8fcd4a65426fc8
MD5 2295e2cc75d3d437be716f6e4ab4424e
BLAKE2b-256 9940747e2201bbb04949e9c5ae30a9b95955d409ec06e33c1c60cfec12715493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 341793f645d12692dc091c6acb9d012f8bb15eb8d2c4c5cfc938a520afb1248c
MD5 87e8037c7501e797954701757e7df8a3
BLAKE2b-256 f16c058a66b245e379a847d0652728387e1f9fe5da2fd7cd5a8d3abe45867c44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3181f5c9ae1917505a8701845d914a0850ac26309e98614f122bac556d333f6
MD5 5907bf65f999c15e037d060ee7b0bb36
BLAKE2b-256 0bd1e828dd279359ab1e6ba57fc7d85634cef265f15ba070c4c1538289213729

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c7cbb9f8f7b19c5f6690887b72605e8929e1cedd9d5b23cc005327643ccdfb24
MD5 50232167b82e9f9855394820d8fe08da
BLAKE2b-256 e4570ee40dca65b912f83c8fd597d9521ab595f4ab1f4bfd587d4cb0d504ce5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.5-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 78076c781bafa9b84b928006d140367bfa6cc1e83a28ffb7133a0943717ed23d
MD5 f678b9285802cb1dc193874174056d1e
BLAKE2b-256 0e68bb02c7708253fcb3d541e73ccd543224c56b56e2b59d7bfe0963b1fb9e53

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on SciQLop/Sciqlop-cache

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

Release history Release notifications | RSS feed

0.1.11

50 files

0.1.10

50 files

0.1.8

50 files

0.1.7

50 files

0.1.6

50 files

This release

0.1.5 This release

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