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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmacOS 13.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 13.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 13.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 13.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

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

File metadata

  • Download URL: pysciqlop_cache-0.1.7.tar.gz
  • Upload date:
  • Size: 802.3 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.7.tar.gz
Algorithm Hash digest
SHA256 71fd79f9011c2c814e0978dc9ab70476e4d6f52f0d19edc2e00e5ffe998fa41f
MD5 53b27e87a3e803aea0cc38d60c5f3b67
BLAKE2b-256 415dc14c54979bd582c9fd4ed496be9de35859fa946d7aa1650b9539f360d038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 74ae119355149878babe8a67d41e5f0c56f6dda7f583ecab5a93ffb9c29290eb
MD5 0ddb703d1758d8de851d61a108a9c4df
BLAKE2b-256 5ac21847227b4ce00b035232e90a9c0c11df8487e89dec23aaeee80cd5d77504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a793dcc85ffcf318788c1ed12856ec8a58fccc733683322069429822a68b326e
MD5 a883bb082d5791f8c34c671310e8a636
BLAKE2b-256 765b27295875f33af3455c1df9ca846b4d2aff742f74f620f9e634d175a3dded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d01b0da6b35c92b0d428233ed02707ceec1b43995ab59b01bb1e5b1e2e4c0ee
MD5 88ab7b7ca148b4425c878963f6a1c296
BLAKE2b-256 dcb060be8043bbb0251d8e93226da805e79aaa9c2b2d716df9f495ceecb0165e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00b1fa20c421e7c0479574c87fcd310678ef1a4b057d05d85c09ace1fe54c97f
MD5 c9081c31252809559f8dc194fd29fdb9
BLAKE2b-256 e209297655985897fbd36d44671f931d3e39985592023db9a2deb6db177edbdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4933c6ee514d0a27ba2cb543bf8e9e0c50314ac19d0d460ece34ba7f54f5bbda
MD5 93cbd21c7f6faa17f67fbd3567fb941e
BLAKE2b-256 60a6da826aefb02d93f5443f45fb6882f89ce81b9107bb64e46f74a61ffad877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314t-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 66204100f85d41b751202091cba8cfa0d7c540b97266b7acea0c41a344f23d57
MD5 20149140a94746129f5388846beaed74
BLAKE2b-256 a943bc28b9cb81bee47321b11af900274b0f345cb45c093ce96f865589c01c53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314t-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 fe3dba571da6016cf9f506375a78bcffaf5c6791dcda0ca396236e83eff692ff
MD5 9594b9a856c16409e078e241426fcb10
BLAKE2b-256 cdbb33d162b684019c0714eb3bcce71a936604c35ddda6bfe364a027471c0ef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cbb398d89a26f6a4f57cfb5f443bae3059897b1f36ea799edc0cbfe6f89ab4d6
MD5 709863e17eb756edd5cf30df02ac2302
BLAKE2b-256 67f018863c68dcbb18c196df8369d109899c63087156a990fccf0ff9a775de86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6cea641588779652b7e1334a720da371bb7a82664595c8f7b30847652b3be440
MD5 810eca7d5a8347f070faacf73daaa2bc
BLAKE2b-256 f63815d42437e7cf7ffa76af540edd42402652d197a0580ee601d4f0d9db4e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29e78b6fc7a4f982a1b9020854fee97427359596b548637cacd55d08a4ed6e5f
MD5 0287fcf536160346514d51c44d8249a9
BLAKE2b-256 ab9ad712a59d4ab214797ffa729f6300996cda62696431b460fa5f2c8dbbef71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 233c61c541189d29d6e98433b425cb10bb2a99f02b7516c42a7b39b880118087
MD5 4e9dbf0da949ba9f92848d0b73ec401d
BLAKE2b-256 b93ff286843996448acbc3e39027b10163c5e36b1b1cbcc3dc0c38a00f3b880d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b61a7a0cc5b46b59bd288c51a6cb4b78151ed43fe47f793a1ae16e20b98be10
MD5 c1d45589c0842b9aadd8c2aaadd05318
BLAKE2b-256 7ee9537534aa4c4480d09274cffaa0fcf71bb1c1bdddb424e224fba5f96b008e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 4b1500b148f8576c201f6222ed00b596e86c71fbc9019536647aac0abadfaf51
MD5 eb84f1f22cece1fb6a7e83b6130ea775
BLAKE2b-256 ce49744cd32beaa0ef1b18396adcf2cccecaca7b88a0eef42f6e5d22e2710877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp314-cp314-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8bb39b855da5a49e168e6a023ca1752e220b5cca6735e96ef6a553cc0511f8a5
MD5 d108201926ce5f397d05d11bf9d8b677
BLAKE2b-256 6f1939544cff8e003ef138cc74504dacf2bc5890ab0b4c3bcf57f535eeef1259

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 081d991aacfe4c4ad4e859b33c3dc872e9eaab656c1160b7e5ee738e76af2107
MD5 8f8fefe3d9b069b9f18d4ed26f81f0a9
BLAKE2b-256 e53df4e5135bcb45b80b7284ac5ecd8df787705d927ec7f9b43932d5d418cfd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5aa36294a3d6178f3a248da1681b39fc204116d8660f3b484c284c7852f0e6be
MD5 6906d523f4e8954854bb6f282cc2d8ea
BLAKE2b-256 ea8e284985eb1b1dc4ddb343c1d3e3dd15b7ac3ee2e4fd06bfcf3a15dca2f22b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c6adca467f59c6baee5d9e00aa84ad3e5bea3a99726110bd6995aa7778b0df5
MD5 65763c6c3a3a98dab847967c8b9319c7
BLAKE2b-256 25b0c10824750dd179479c1975932d88db759e6a9ad8f1d05e53b8750317ed72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 38fa7b8dcaec17723c5dd77b606fc526c1338858867b1c7abaea7d80e4a13c82
MD5 1469996a750829afa7094c682118e220
BLAKE2b-256 66502516bc9b1c2f8d93e483c843dd68efba072b095e4135a7eca99339dcd206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d5cd1a2be2ab3f38f6fec60df5b0eb31b3e86795307f115f20cfcd0097a009d
MD5 13f64b7671c8a0182482f301446273b8
BLAKE2b-256 d0f0fd4d3a0a162f392385bb45f03db77a75839344dcb0a77a43f4f259ff27e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b64075974a0984829d1ff9c5ef975695e76145da6d430dc1034d8ada6911dcc9
MD5 0c5d5eb91f269d19724cf961138be72a
BLAKE2b-256 ffeb81c06f29c3d7363285f3c66636d4926712166ec6add4d42330db496b9482

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 268bca71d063677c23cbcd0b85c1a862fa30b4a84424a74bafdffeb095c87132
MD5 cb2e1defa07c8b91448b7f16f9790957
BLAKE2b-256 dd2fb5f26edcc7226cea0686fc62577fdff65b9feee1a7e94bfff6eceade30ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9fcfe5fa29fd3f64046faf9757f750f4f82255b88deca395374bd03b3f8da62b
MD5 900bed680e719dc04d0107bc96cdb438
BLAKE2b-256 0d4f94be4c1a8222fa4d888eff21b5f07e16a24d46bfc847481de8295a079d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffbcaeca26c14ba510fe72ea8b6aab7386dad9cc38052b13d01030899477ecf5
MD5 43d357c9783d2c8b88885d4e2a44e5cc
BLAKE2b-256 a7166e4ab8a1fd0a797ee315b2af9d410c94560d8d5283805e9081302c79575c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 275edb27aa8230a1f6d94d24b75c17b81d61c2892ddfee3db44764f2b8a09aaa
MD5 3ba5947e7efa5c4a3b9a4119a71e4d41
BLAKE2b-256 6254c79310b7e562fd9152fa9cd5b7ae0ac4e5decebb7eae083e4768311a3426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d36d97407d20c23693ec9f6cc990e7c38cc9006ed1ee76a0d4546ebc42f658d2
MD5 2a5a46b64e258b2ac66a063393fea956
BLAKE2b-256 7b8fec23145100e63c4ef355d568f55c8e3e9d8c02038cf2e7d9a4b213e79d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f558a6b82b526d2a47e99c7d34259c9dd33901a0001734216d1abac87574c34
MD5 f6dff3cf1370bb73d41dc6979dde5d42
BLAKE2b-256 d7e4471cbe0cc27a6c5361a190e40694074e0f172f8c9128834e23459466d3ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 40fd26bff3e1bd4387ab5b88a400868bfa8dbb013ef8690056cda152a707f122
MD5 956ab2d698c733ee160ff13a30deb8bd
BLAKE2b-256 eddb1d6e42618d41503d05a2568cc7dc1b8be61fb23d17f4b0b2e827b7ff1ff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 749c1d78028393c0f187cb267f076b67ed16ddfa0345e32e680d108ae8a11653
MD5 e7acac22803014deb8bba4c9ea315c19
BLAKE2b-256 f9f054035beea6e6bb58194d659a02191be34c11878b7b6aad57eb0b5bdab233

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0cf1265a2654db868af64719fc4bc03d68c6536fbfd6db5a047c847a5e20d87f
MD5 bdd05f4aaf8902429e8b85f8452d6047
BLAKE2b-256 15d95208a1806db131001bfa65ac7c87924f587135c0907add4dd68e45259870

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1aad08a0cc19eadf0d168bb39fd7b338cd39eb2f8a5dd9fbadd8b1e390fbf57
MD5 d6d91d6873d64e83ea2ade80673a160d
BLAKE2b-256 de4080c724be9d45fd2a95e95f2890c4af5323ef9aa3f7eb4007b5b6015bdc38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a67fde54155fa4857071ca97fa8d67609b16c1b675342a2a6fc9983c578eb149
MD5 ee5b2f984cb23f7bc046ab0e5caa1fa1
BLAKE2b-256 392e579679e0200ca383f9bc6864f7078b671526753bf265e13022cebc131dbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6edae4ea5a7e91e4c4af929934def7a276df56a00334038ad0a9901d5e7524e9
MD5 85b473ba0eccdf5a4bd524ca29af5c8e
BLAKE2b-256 6ebe6b8c71cb2344cd978b4011c0ba40d39d47a308a3dceddfe94c73d80e1b21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 175312eb12da738b2a0048bdcd6eda64f9d27195aab3eef2b27a0a18b3db5f6b
MD5 4de01934583e61d96f79abe975a7402a
BLAKE2b-256 136ad65329029a5a4c89257ad237cf1a90487f6e128a61c18ea38f94c1aae107

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7834743bfc29b4bf3145d9093c703651baed3c3f45d71b518a8e5fa6b2b8a796
MD5 b4be1cedbe33edcbe581ffbac2d4fd34
BLAKE2b-256 d8bc06228f641036d82f8b95d8c63599ac58139c87cab4ed909dff691f0349fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9abf246da95099a87bbd3e617710165c50a77486e0b0dbe830dfb0d4baaa2a3c
MD5 1738420b84cca1056facb04d696bc6a4
BLAKE2b-256 c6dd04951ec3051adf3ed216f9b9a5741d24b984a78b333bb5990e24dd8b9715

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d2f699face5459455c251e9f927c54b13ca3dcd3455c6d9d685c47bb13a2de66
MD5 064a4d1ff65535b9dd7f5eb2d1b3db1b
BLAKE2b-256 55e8032a3662d3377b9089a9b4626b2383f352dfa95b0e0f10d3a4da130f6fed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a374d01e5f7210e6e80faa097e404360bd31185095a5fe5ba950d45f0e91c792
MD5 0ca9e093444a8b83c3022fa7765453b8
BLAKE2b-256 15bcfde1c83b7434eaab880315ee34a8f796a2e4c05975ca41184efce071c741

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c218bb0ae0518f09bee06b385c9bbc207836a3167f3c8ec8febfd06ac4e1237e
MD5 874fb37ed6a54cce4da4a7da979b5dd7
BLAKE2b-256 cb85d921bebffbbcd32772f884ccc00aa130e7b8b5e92b8bd1d4e434579a0664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74455fcef56dba29393d1b23bd9d6b27c5d4a758de03479125eff5cecef05538
MD5 e2fbc71c9ae9666230725a3348d0881f
BLAKE2b-256 f1ea27da74601d8500a628ea88bb1f81fcf608064e359b614e97c44880f23118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8599fb85ae7e99106e0f7def75889812d019c96fc11ddcd4cf5e1fcfd801a01
MD5 c92c6763fef60cf95b4b673c44d4f1d5
BLAKE2b-256 3df6f819ac6c104ca9c1134bc88198f6446a66027ca118e1b3a37b5a8e8760fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 eca4116242676d3439a1b5ede8a18fe66aacec0c52fd980c626f3bee2fc91baa
MD5 23e0f7c7c1d145abdbe5fb007b9ce5b4
BLAKE2b-256 8c738a7abb103888a2dce7da9e70cf41337d97e4dd4d62d25ff4eaa5b09e6e07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 a8ec300585b96ec9298c3060d57fec1840c8cca0fe8325f5427c479fa2739d14
MD5 348bda7b66d7ae88450b5d6f0915ef36
BLAKE2b-256 c92deb752d1ca3fd46accd06ff3d854920a1923f23e1ff412928631b56ca6237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 283bb0d5e470fcf8edc1f5a334c62f621925143d2a6b4f77419429b39ae1b4f0
MD5 d262e4f850bbbea044130a2b66eca4f4
BLAKE2b-256 5fa6edc94032e8408e4908b22660e0edfbfdb55ec7cd90c896cddd8ca4acced6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32ac7f55c0a44eb31d50e9a8bc08c57ed0f434f18bca1fe79a59d0dc4555ebb1
MD5 4f7410ea10eb64068776690746f7f2b6
BLAKE2b-256 853185aa72109b78e58a3436387ea6572c93a7d0f9e9b16da702a1e6ba8a14c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 897d1c8c26283dd5598fc25bea1ac9eac6e6281fdd205c332f2e4f3d01c39121
MD5 7cdc42b9e7ba33c3b3667263a2fe3940
BLAKE2b-256 78e7859f611d8f60ca2ad14507f8f13c61c45db8eeab069fbb5e6d5c677ae5fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9659f7df5176267fee39f60395c3d32702c05e906170484c52469bc1a2a2da1e
MD5 fa9051a9d4392767a4799364d9b59978
BLAKE2b-256 7c9b04adf16f037500e1f1ae9734103fbe9104f14a0aca5171f009920cf9fcaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 661bad28411c8e306b3d8dc54c68401b56bf06914088a4c42ee6c7249098ab6b
MD5 97b49778922882fb7b2c73dfd7aa64ad
BLAKE2b-256 d02f3d8dc125964bbe3b877e22703db8a99aee103d9bb063c39fb6345bc367a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 84b714d18b3dbe1f3ca3329010cd0947d246866a0b783d22a6c959588a2d4ddc
MD5 c409c128ca772a7213464b9961cacd94
BLAKE2b-256 9010efb2061ad54e9c7cf828517cc2ad40ef372acd6aa12911d882a054bc2e2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pysciqlop_cache-0.1.7-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 75bbd99fe64b9d6e14480a6b049e485055180dc5ea69a4d54fcdc04aaf62ee6d
MD5 95f37fca42ded93a6c9d6985f89559ab
BLAKE2b-256 57eaa9e25ba51019166b5f140db3e0d102f921852bdaed4a3ed9af71137103bd

See more details on using hashes here.

Provenance

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

This release

0.1.7 This release

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