Skip to main content

A high-performance disk cache implementation in Rust with Python bindings

Project description

DiskCache RS

License Rust Python

中文文档 | English

A blazingly fast disk cache implementation in Rust with Python bindings, designed to be compatible with python-diskcache while providing superior performance and bulletproof network filesystem support.

📊 Performance Results

diskcache_rs consistently outperforms python-diskcache across all operations:

Operation diskcache_rs python-diskcache Speedup
Single SET 8,958 ops/s 7,444 ops/s 1.2x faster
Batch SET (10) 13,968 ops/s 1,889 ops/s 7.4x faster 🚀
Batch SET (100) 14,699 ops/s 7,270 ops/s 2.0x faster
Cold Start 806 μs 14,558 μs 18x faster 🚀
DELETE 122k ops/s 7.7k ops/s 16x faster 🚀

Benchmarks run on Windows 11, Python 3.13, identical test conditions.

🚀 Features

🌟 Core Advantages

  • ⚡ Superior Performance: 1.2x to 18x faster than python-diskcache
  • 🌐 Network Filesystem Mastery: Bulletproof operation on NFS, SMB, CIFS
  • 🔄 Drop-in Replacement: Compatible API with python-diskcache
  • 🚀 Ultra-Fast Startup: 18x faster cold start times
  • 🧵 True Concurrency: Built with Rust's fearless concurrency

🎛️ Storage Backends

  • UltraFast: Memory-only storage for maximum speed
  • Hybrid: Smart memory + disk storage with automatic optimization
  • File: Traditional file-based storage with network compatibility

🛡️ Reliability

  • No SQLite Dependencies: Eliminates database corruption on network drives
  • Atomic Operations: Ensures data consistency even on unreliable connections
  • Thread Safe: Safe for concurrent access from multiple threads and processes
  • Compression Support: Built-in LZ4 compression for space efficiency

🎯 Problem Solved

The original python-diskcache can suffer from SQLite corruption on network file systems, as documented in issue #345. This implementation uses a file-based storage engine specifically designed for network filesystems, avoiding the "database disk image is malformed" errors.

📦 Installation

Prerequisites

  • Rust 1.87+ (for building from source)
  • Python 3.8+
  • maturin (for building Python bindings)

Build from Source

# Clone the repository
git clone https://github.com/loonghao/diskcache_rs.git
cd diskcache_rs

# Install dependencies
uv add diskcache  # Optional: for comparison testing

# Build and install
uvx maturin develop

🔧 Usage

Basic Usage

import diskcache_rs

# Create a cache
cache = diskcache_rs.PyCache("/path/to/cache", max_size=1024*1024*1024, max_entries=100000)

# Set and get values
cache.set("key", b"value")
result = cache.get("key")  # Returns b"value"

# Check existence
if cache.exists("key"):
    print("Key exists!")

# Delete
cache.delete("key")

# Get statistics
stats = cache.stats()
print(f"Hits: {stats['hits']}, Misses: {stats['misses']}")

# Clear all entries
cache.clear()

Python-Compatible API

For drop-in compatibility with python-diskcache:

# Add the python wrapper to your path
import sys
sys.path.insert(0, 'python')

from diskcache_rs import Cache, FanoutCache

# Use like original diskcache
cache = Cache('/path/to/cache')
cache['key'] = 'value'
print(cache['key'])  # 'value'

# FanoutCache for better performance
fanout = FanoutCache('/path/to/cache', shards=8)
fanout.set('key', 'value')

Network Filesystem Usage

Perfect for cloud drives and network storage:

# Works great on network drives
cache = diskcache_rs.PyCache("Z:\\_thm\\temp\\.pkg\\db")

# Or UNC paths
cache = diskcache_rs.PyCache("\\\\server\\share\\cache")

# Handles network interruptions gracefully
cache.set("important_data", b"critical_value")

🏗️ Architecture

Core Components

  • Storage Engine: File-based storage optimized for network filesystems
  • Serialization: Multiple formats (JSON, Bincode) with compression
  • Eviction Policies: LRU, LFU, TTL, and combined strategies
  • Concurrency: Thread-safe operations with minimal locking
  • Network Optimization: Atomic writes, retry logic, corruption detection

Network Filesystem Optimizations

  1. No SQLite: Avoids database corruption issues
  2. Atomic Writes: Uses temporary files and atomic renames
  3. File Locking: Optional file locking for coordination
  4. Retry Logic: Handles temporary network failures
  5. Corruption Detection: Validates data integrity

📊 Performance

Benchmarks on cloud drive (Z: drive):

Operation diskcache_rs python-diskcache Notes
Set (1KB) ~20ms ~190ms 9.5x faster
Get (1KB) ~25ms ~2ms Optimization needed
Concurrent ✅ Stable ✅ Stable* Both work on your setup
Network FS ✅ Optimized ⚠️ May fail Key advantage

*Note: python-diskcache works on your specific cloud drive but may fail on other network filesystems

🧪 Testing

The project includes comprehensive tests for network filesystem compatibility:

# Basic functionality test
uv run python simple_test.py

# Network filesystem specific tests
uv run python test_network_fs.py

# Comparison with original diskcache
uv run python test_detailed_comparison.py

# Extreme conditions testing
uv run python test_extreme_conditions.py

Test Results on Cloud Drive

All tests pass on Z: drive (cloud storage)

  • Basic operations: ✓
  • Concurrent access: ✓
  • Large files (1MB+): ✓
  • Persistence: ✓
  • Edge cases: ✓

🔧 Configuration

cache = diskcache_rs.PyCache(
    directory="/path/to/cache",
    max_size=1024*1024*1024,    # 1GB
    max_entries=100000,          # 100K entries
)

Advanced Configuration (Rust API)

use diskcache_rs::{Cache, CacheConfig, EvictionStrategy, SerializationFormat, CompressionType};

let config = CacheConfig {
    directory: PathBuf::from("/path/to/cache"),
    max_size: Some(1024 * 1024 * 1024),
    max_entries: Some(100_000),
    eviction_strategy: EvictionStrategy::LruTtl,
    serialization_format: SerializationFormat::Bincode,
    compression: CompressionType::Lz4,
    use_atomic_writes: true,
    use_file_locking: false,  // Disable for network drives
    auto_vacuum: true,
    vacuum_interval: 3600,
};

let cache = Cache::new(config)?;

� Testing

Running Tests

# Run all tests
uv run --group test pytest

# Run specific test categories
uv run --group test pytest -m "not docker"  # Skip Docker tests
uv run --group test pytest -m "docker"      # Only Docker tests
uv run --group test pytest -m "network"     # Network filesystem tests

# Run compatibility tests
uv run --group test pytest tests/test_compatibility.py -v

Docker Network Testing

For comprehensive network filesystem testing, we provide Docker-based simulation:

# Run Docker network tests (requires Docker)
./scripts/test-docker-network.sh

# Or manually with Docker Compose
docker-compose -f docker-compose.test.yml up --build

The Docker tests simulate:

  • NFS server environments
  • SMB/CIFS server environments
  • Network latency conditions
  • Concurrent access scenarios

Cross-Platform Network Testing

The test suite automatically detects and tests available network paths:

  • Windows: UNC paths, mapped drives, cloud sync folders
  • Linux/macOS: NFS mounts, SMB mounts, cloud sync folders

�🤝 Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests
  5. Submit a pull request

📄 License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

🙏 Acknowledgments

📚 Related Projects


Note: This project specifically addresses network filesystem issues. If you're using local storage only, the original python-diskcache might be sufficient for your needs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

diskcache_rs-0.1.0.tar.gz (119.8 kB view details)

Uploaded Source

Built Distributions

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

diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

diskcache_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

diskcache_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

diskcache_rs-0.1.0-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

diskcache_rs-0.1.0-cp313-cp313-win32.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86

diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

diskcache_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

diskcache_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.1.0-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

diskcache_rs-0.1.0-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86

diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

diskcache_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

diskcache_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.1.0-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

diskcache_rs-0.1.0-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

diskcache_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

diskcache_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

diskcache_rs-0.1.0-cp310-cp310-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86-64

diskcache_rs-0.1.0-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

diskcache_rs-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

diskcache_rs-0.1.0-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86-64

diskcache_rs-0.1.0-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_i686.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file diskcache_rs-0.1.0.tar.gz.

File metadata

  • Download URL: diskcache_rs-0.1.0.tar.gz
  • Upload date:
  • Size: 119.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.1.0.tar.gz
Algorithm Hash digest
SHA256 08333bb38da01e7f9cee6615c8c897895547ed30123b09c26411a6eec6168fdc
MD5 2d7a456f6483d20341e6687a0a5821fb
BLAKE2b-256 f1941c782dc02eb95772bb2a6f9eec3c58cc34edf283283b77cf66e6eb6ca915

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0.tar.gz:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 232b63a05e53f35d2c710699ba3acaa1e3248e08aa07d7af6c1db29623d7acf7
MD5 6120b17328e5f04f6cbc9d8afd020801
BLAKE2b-256 d7787a6b9a2122b02ad09a41b6c0f655bbcabbfe0ffacd26d525e6ea538b71a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ede24877d305c69fc1bd64e87e0dda4ab17b2413b0a35de2db28c9bb0dd0a0fc
MD5 ff68b4761fd6b1c4a9f483ae6f07ce74
BLAKE2b-256 71bd13d476c16da34d102e17b17e4e2947def83e906c142b273c9e3289ddbaba

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1979232420e41d32ba5f00b376f5b2ee583ec338cbc19c2a95193c9f9eba430b
MD5 a23759b073b6813943ce2fc4c6cc8bd2
BLAKE2b-256 6739ac795605d344d489d6757e33513807488197236cbc59537c70a284b29040

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcee5d142c83c751a35dcd977e52e74959d726b0fde18eafbdc7607cd2ab7353
MD5 46c26ea05c34740dddc0e654c1d7dc7e
BLAKE2b-256 6b40763123f322f35194c6daee2c6276bf15c13a56e1d232aad0073dc4392a96

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df7105843d32499bcbc4fc7d2eb1855d21aa3e16d148660537114c4cfd2c1011
MD5 e4d50b1dc4eacd17ebc5fa2b3a380533
BLAKE2b-256 e567e1ee479a490dc102d0f728fedf0219c77ee9a39a1e072ca29aa119d978f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ce4058e09740c4adf7044ce42c47482e68cefd4f11adc30bc46400be58c862a
MD5 e84432a36ead7a96342f66efe4426b87
BLAKE2b-256 974db1061b9657247ae87507c2469144381e308d364a54b671349b33a5158cbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7be8f2de78d7a2eca8db11b54768a23583f6744a6de1df48cc6074e74572a7be
MD5 26f94474c428b140a42fdcc9cfa1ed7c
BLAKE2b-256 3582a48a38bb547a1bd30a83be0ed61f6864f062da6720561ea6c46b72f994bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e94c4dee6ee75b42e5f8220591b15138757e8126693d3b502a1e89b8e202ec8
MD5 87b8544b0f386fa178d67af4dba366ea
BLAKE2b-256 865372c7ed7c99c70de4fa21bcdb1fb836b81dfedea88a07387bd0f5bb7f78c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e44cb7b7c476cc2f1c2d0a92c1fb9030d08292e0c84e21e510aa069d3177a46f
MD5 ea3115c240d2942dc2c4cfe7dcc961c2
BLAKE2b-256 a176efbc56e21028fff100cb9c415e41f49fbe265cc1242d92c4e558b33bce0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f44062a4fcd954203ab302a68d536ac377d896039435384cd64a2e7489ccefe6
MD5 e9d8741e85857fafb99bcf92017793df
BLAKE2b-256 e483890158bea141e427ab552ce22828c0f8888cb12f56e97ce0d80fe8f16637

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88805cead4960f1032f757454d5212fa886c22b80950cc1209ce6eb5adfd5077
MD5 b3799af0ba0b8c192107c087f52fb12a
BLAKE2b-256 c976337052757526ffa63db9221c71f11df9ff7be6db9475afc96c607964e001

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e360ebdbea610e15a63a84663ef007aa63ef683185cbd6a388fdd397257aa9f
MD5 1fdf553e24470b84c1c71084f3820485
BLAKE2b-256 378273f5016dee77306c9649994c2a1e2276c86899dd40ad75274b448b46166a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28842ddd4f796e5d8780540d17d0020ef0ee14d99f3459390853dec2f6b1abfc
MD5 5908ece36fade78cc5d3882cd0bfe21a
BLAKE2b-256 a7d98a2a863a4e394ad9c9559184d9464699d1729971589339b6f511e4723e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ebe7a3da34c0d583dd6edbef7acd78db311491e848fe2e9394763ccdb70bae3
MD5 91002d7c0291cdea2ab8278fb14f8b80
BLAKE2b-256 256e102d2069b1cd06d6a57fc0da8dc3acee7a43eddef6165d14ae1f7b3e2e8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81d1feb042ebb52c7a18ebe5ba64672bbcb570ae8624c67ab1bfa7b470bd5579
MD5 deffadee03d27731cf0871d74d2bd880
BLAKE2b-256 a6c918c5e3452e7cb0def48c06c7c608a6d4b277f90d78767bc1bba27a7de429

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b50913323e200bca861543ce5967d481dac0cccc44984f0526dcfba61eb4b619
MD5 3eabd6ecbca2d79d406d33fcdd65d079
BLAKE2b-256 2c581095016f628e4243d442b66e1e0c8d9c248e37181c399251f2c39cc2a45a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8eb320912d6da2ca8ed8235d90dc2d2007e3ab779d6bfb753de9d6c3c803fc87
MD5 09c58a4e88a7c9ce444f639bd1b87f45
BLAKE2b-256 3685303ac4bf9b951995c11980648976eadbf94962ebacd5b2c579912f972ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dfd444f7d29abb4104c9ef93169a421dd60cb9686531c27b39e1abd4d613f543
MD5 d0e324ed75256cdf618015980c0dc595
BLAKE2b-256 ef6c577f4598b6aeec5a2704d07555717a85f7be2738065bb121715cbb679cb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8b36d1133f53bce8470ff418c869f99a4b77a51fc21f7722dbc92fdba4a08a9
MD5 76600bedaaa478182d374eed0ff170a0
BLAKE2b-256 aeaf3f13eaaf57f81b3f526cdad6e7b6bb5f015e3db608ee74814c2e7318bcfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4b33e41254cb9a601c12d2715f9a2b942d7014360ff4df8ffecf622a7e53b13
MD5 2f0f21cbfc855d653ae0db799e95dbf5
BLAKE2b-256 6da37f5211f5f3b00605907c4c154643ba8922d28aa76ff9d24bf358b51d3298

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89969c1189b94fc5f65512f65f71192ecb6d3e3201acc324fabf085e8e844154
MD5 9c1f6cf4417b90447372032d3aeb4cc0
BLAKE2b-256 ada066d49eb9246afa3f0757595c99bbce814d3f484b7a363498d9023fa25fd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e987888d8e5afa6b02f332a7f7ddefa8fb3e173899b23387ec104cb1c78acee2
MD5 d3cefac2aa762abb53eb64c94d198ed8
BLAKE2b-256 466ab66a0a9953c620f864adb0deb80abd515fb17f31e86728f1cf0df1beea8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d4db3ad8dfe0cec377a026b62adc512cdbce0efd779da4e74ccf8398ff548fe
MD5 cf47c744ea57959ad29a511ea29a0995
BLAKE2b-256 113940bbc14a6d6eb2e0caf2365390839a75cd3e7fde569f4e030737f771b5ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 797b96eb1ab8403f7a83a1915f0f4769811b25207b8a61e4c3c284d99651ee29
MD5 282f337b0aab3882d31168755f104d1c
BLAKE2b-256 cc4c3803482dc0dc8e250c76b6016a068c574457cbb0f9893c483d9382cf57b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92d80be17c0a3fe7e4848a509d921380941edc8921236db240bc265df361da88
MD5 c81b3056191b92c46f3cd11eb81a977d
BLAKE2b-256 aec0760309dcfdc340526cdc4af0e4159c7c07590b48b4e8e84413ca0ad0e1c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7fcebf9581eea1b89f14ea8cd03d7d2697dd3688a3451dbe3d4dc8050931533
MD5 890d70252d0456975de203309e43c32c
BLAKE2b-256 40ce25135db7dcc16ede261b8210ddbf912be7ac4c4d3bdac006208144298fec

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a026a967df0e00c328c808a1e3e1142d1aeb417b713b70e391c32ef8b658381b
MD5 adbe807ec2d3f8194f147ba87803f6a9
BLAKE2b-256 2cd80d166a388cd02843ada75d125c7d6d31b1ac003718043dd657df86bf248a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9369472bcc9e39c2222c9a6909a2f306566e9302c024fec0c0c5563142a1a14e
MD5 8b4ac8a257865ea5df9d8b7c42b8378c
BLAKE2b-256 0988b19fd911342bb1e476701f174f8577c8448f0b51084ae47a28c5734f720a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a28cb47e23018f0a5bb711de66e0f5410f3065f7019621d26e909b4baf01016
MD5 9e2dc0e82ac7d32ef7c7b7f729311918
BLAKE2b-256 0921b0ea64a40ebeb55eb258613325c5fd69e18f9091382772d41cda42c54daf

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f33f06ba9b4faa051255b2d5aaf787cae5b2810debc310531e2cf030e4d8de6
MD5 7e22110d700f569ce3aa4828d30eb369
BLAKE2b-256 30ae708efe99770922591fce4b3337ac42e205d505243f35dded1898487dc84f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 af15b706cf03f86e31c7e2fbc9db34e74cc481019022b623fb24bfa3e5ea5a23
MD5 68d347a2aba31256b2989ed35568b924
BLAKE2b-256 f6ec649fa6cfcd65e4c121e92c7738ee7ed31b4f5eecbbc4f171462dd2697ffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 61eb9d51cdf8704fd333606c0c58c159ad5291a5860b7df75494f106c17e81b3
MD5 4d6cd35f14d92fbb7641422df7c7c496
BLAKE2b-256 b7acd5a25810d5ff0c8041cb795c5e7fb8c99f229f8f53781f93cafe6f1e2875

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-win32.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b49ea33c12cb59189e90b099d08eae32198d4b481cc09653c81b82be4b95b15c
MD5 8b35df7f8d4596dcaf1f40ecac48e7a2
BLAKE2b-256 98667b6a7ac84b6e1abade171ea5629da217d55240e6d6b85860dfe587c9c446

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd5e67528e3aad77dfcc5a7ed86e8e6cb5ff757b61137ea63b3688bbb0495da8
MD5 ad51c781d0b478ca2632674a9ebc0982
BLAKE2b-256 fd38bb467f56945d0621dcaa9223c8fc1a1c384333aa4527ecc4de70541520e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6fe9960e89fc5c8b6a98a5fd133238c1d83a10015fd1833bbe69f20872a22f0
MD5 36dceea40adb01474479a60b48a11206
BLAKE2b-256 111febdb736136b77365d5e51e238835366aabebba4b7a7644986959fa1b02c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7836edf61921f462307d52de92b4d25ad9466492288d9182b5a8cd2401b7e834
MD5 771992e27d25569123ae19a0c2890526
BLAKE2b-256 862b6d925881fd9e7c468edffe97cb29677de17560d50ef294ab912eaa5c6eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c497cc57c6426a4943fca1d384d8e6643553c00cea76aebb1ef5a8332919c86
MD5 e6cdd152b95cdbc7ab37b2b4c25e730b
BLAKE2b-256 f69ba4af0ca8649120989b9372eb55a207a8e13a4e7a16b39bab34d7a465afb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c8be92868ee5211a25c4ae0bdcc533cbc46e794ddc122948ebe3281bc95a50a
MD5 8c4389398b00d98242956192df278786
BLAKE2b-256 adf093fe57a3e566e2a79c1d241df6158fc7ec18157bca05e6e40659be6f225f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e8ea04a4e7b5eeee43acc83fc0beb84fb13f3f8e5c1add2bcf3ba08e50acfad
MD5 87f65620d17f09ec87e67acd9a3ca155
BLAKE2b-256 3623c8f2b423264b1fd05f30d985b259dc06ae78e55d61db1af92472ad6ebbfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77e1a9d04b97ad9574906069cf31a42db6f4740c706fdeb78d8afa46930fe3a2
MD5 a065aa41965f443f190064b77de90e2e
BLAKE2b-256 ed721b6203c0f56bd9c9df7a59fb73750eeff0f80796dcfdc35b31451b077bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee66d67cebb8c764bd53c94768fa824fb7210fcc8110d65d3822eb07a612167f
MD5 9d3a65fcbeb4d1e80c22a40f477b78c9
BLAKE2b-256 e3cf0bcb5eabd060c3362f133ec25c5d417b0c58307b26b8499abfc2e9fb24ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 9403d7b5e5731236fa9a17bdf554a38f0584b7253e8703be871823d9d0724dca
MD5 71dec75f3c57664c8949e128d8d4be90
BLAKE2b-256 92030e8df352c5739afb2af14bd3b1e5633d094716bca00966e243f960dc67f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c936065df89c1d625c85e0ab130c8dbd55b904ba59312b54acbca784293ece8e
MD5 eee6addeeee1b182366cb5b5cb8748b2
BLAKE2b-256 6d28aa9ddf1428d84b463074ec50534744c254b7d584689a0a8bb944513f401e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f32f45209c9c373cbc958306320cd989f09b202e001889a437cb15229c875ef2
MD5 561c37eb87641c113b248f11ed798f94
BLAKE2b-256 fbdc934e4c76b1bba02891871fe58afc28e530ec61355ca65ee3dd5f787c6856

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-win32.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ec7f57f2c46706742ef6bb942b2f4291366a0cbd1c6762593d19b9af61050e4
MD5 1001a92f71d6127d0e693d1bd8911a4b
BLAKE2b-256 17981b01bbaf2486bfabf3d412ab4dc99c7469cbd0ce13fee148104c3e5c1f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8d2aaaeabd6f5067af7293ddfbd9e62fb6464477fe1b432ed514391add2bcad
MD5 3ada777ee1510d64d5c9b6d91b4c8435
BLAKE2b-256 a66ef3327e673b222a2755ab6ce202196a94c6a8618b2f70a53f345a7d166150

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 291fcef691ab2564777028290a8e18922360631476a223e26b6295b786b491cc
MD5 bf3f7702934f6409f19a0f1c74885ba7
BLAKE2b-256 147264be8fe3c030856db5bc7c90799aae4464f4f169ddd5c58ffab8975f7ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e60ebb33a25a8007cb9d3c3533f014e679d5b1338918f92b2821b1d6dd183d37
MD5 dc9db445a8afddf71b17da96566339c8
BLAKE2b-256 e2cfe561a8dfc7759926999daa4f18864da1aa131cd1caf7825e2048a2900041

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef484e6a544aa31715f0e064ffb98f9cb487c8b28bd4c44c0870cbc836dfeec7
MD5 af0b4e1f89a5560618e290f04f5b8c77
BLAKE2b-256 3dec6e6bfa81d80035dec4b5eb1e44036b2eff142f4f9e18e8dd8d86e9b80308

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73028a4c4bc55c97c74e89c07fae82ca746fd2a45abcf1699726985f9acdfa17
MD5 c66e1dbe5751a0d9e87a5c96ad2d73fb
BLAKE2b-256 b773aabcbc86e3177ea22658a5b8e1180a54f08bc6a724d15b3936fc46867159

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c38d88c3313f4965152df7bff29cb4c26d4caac6d4136ef962f279de142298e
MD5 3bf85c41c7077be0e4398a5dcd27322c
BLAKE2b-256 9150051c8f84fd766195bad9c727a93d80dab034e1a0beef395fc5ca4223ca98

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fee15ecfb3093fb665fa83ccd2f52e0a9bf2f7edfeb17a71366e74194a5e96f4
MD5 99da7f50fc2aebb2b7124adbaefdd4e7
BLAKE2b-256 6bb2e4d499c1975b6f6d190521ae50950a1a59e8d906bc9cb64d221cd97cc8d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81355e3ff92d876f92b7a7fd857bbdd464c8f756d16a01b42fe65fa62f00608b
MD5 710b9a64e3a2ee8ba6244f4feb7091ec
BLAKE2b-256 179cf0fa55fea4717c930591d49cd3c1814eef40596bd3141824d85a484a266f

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 dc97583c38259706fe1859d416a11c164c574e54e57c9ab46a3817c336251ee1
MD5 8ec325c62cd152bd6d82af6d0c557f6b
BLAKE2b-256 e8de5062ba881671f908cfc60fa62a195982456d7b78fbfe1c573e1f55c37787

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eff508521313db6d0f93efe8e45290325e7c672f3ef2cf88d47e45d674ab5ed5
MD5 c851ccc48bc26bb2a1c5f90e70c9e3f8
BLAKE2b-256 0fc2885b1a36e762a7a074ce6128a6b20b8da8248658623a017b3e5f3d75abd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 484ff140f17dca5a0177d2deebd95c68b8c80a539049c2ffec6ea2971f21de18
MD5 f3a717877a8ca0e20a97a98e2d4e8549
BLAKE2b-256 1c678903a08d74504552f773d478dd44b9503d8eb89eefd4ed9e04540fce3923

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-win32.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4be039bcb372119cff42266ff67ffc42915f20b68ea4412890ae843d3a96f5a
MD5 08c3f0a3c65b99b3a4e83da512ab900b
BLAKE2b-256 2c624a2a72fac95ab80d3419c0d5e3881d44a8c8fc4bc59a2664faa286a8dd3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ae750c783e02f0e36624044757e890a090d3aded71396213f048ea2e10cb748
MD5 fbeb7c030ccd3173861bc198c8209f0b
BLAKE2b-256 991dfefdd86236f4124fb957a06c53f32c0cd50df1eab95200c46a8dc042050c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2e5bfd2776146e2e518efbc62a34cca77186c17850cf9ddb63699ca944ce8bd
MD5 3c1895da34b2a13cd7561d2c56808ce2
BLAKE2b-256 1fb4ae316a2d36bf145ba44da5c93b779901125a8c3ae76e66c389a8de86b6a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c85fc4b6b450561fefade25e38074f9e2a3f1b205b5f5f42cee6a8414e952326
MD5 f8b6ab98a90619c2e4dd615cfeb6189c
BLAKE2b-256 13b5733e8dec75271b730f8f3515a250dee3ffe1545654cf9a3c15f98ec33a08

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2858ef6561b8039a9ea578561972ef7398f9706f83c351a57f5cb1d80cfaf04a
MD5 6ebc5b00aa1aa2fa64810f12d0fbdd8e
BLAKE2b-256 3fa562315d366efffb6afb4bf18a1e37aeb852d59a461468a0fe23bad3073969

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c843cca89475bca3ba17008f092cdc6dc832b21695853a6b2ccc9748eb624d84
MD5 f2c4db06388a7c2bfd6942bdeac51538
BLAKE2b-256 491496b9c346bb62f2919789bb07cc15c7b12b6cfa772782e614b027f103d41a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76045702cd09dfcfcce72045dd631924b323f29d58d2680bbd6023121e08f760
MD5 21cb98648c9690c74ca088ab9d883005
BLAKE2b-256 eb15b702d6e957186c2f5fe362feb393159c59ffb9831604744841c7a4659192

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d5a3830ea68e780afb1fda5c65219bed837731a34fc79056265bb8735acf6b7
MD5 a65fdb59a7cd88e329eb3b302a3a8210
BLAKE2b-256 ac1dd3b31b33e0b6242b7647c91448d119200786e380215a2fefff874e007fd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d24a3f8c5267618c37318c46253757a074ed159c9120106364b370dfe14fd0bb
MD5 abce8efe5bd9661a315170950736700e
BLAKE2b-256 56e8da37ff000c6f5180b2637b96c08e528e9cbf1ffc9ceb6e39f705b66e198d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f33f589d7d330bb8915df3db2f2e512e9139816d0fa0367f828f0123eb3b1976
MD5 4ffe94b2802f523e89fecac38fb77389
BLAKE2b-256 808406f810de2bac37d942d493adee4116c00ad780b5fb5ff173570acba0c531

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7bf0609b063b11c609a7d4e1aaa61620796aa34ac0da7ba719de13bd7187da0b
MD5 eb4e131d80942a2a0e0eaa34b4b9ae79
BLAKE2b-256 f30ecb0a5218a930dd5794ea2e9eeaf3c090ff28c760b69d7f4b39b48dc56113

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6c5197751730b7e032178cafde54b28465eb0bdff29e9b598508ce19ff76cff5
MD5 c47d0e5f25140eb1245e0e66183687f5
BLAKE2b-256 c0d4359289b119241506afe68295657f067286722df59561d327415bc771ed3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-win32.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8aa578156e25b95fe0c9a0b819b89281df5cf0fc4ff3090ef031020004468156
MD5 a352c2d29270602494fbe536696f69db
BLAKE2b-256 ee708bfc358a995600b4c913aee761082f9dea4c5307da0a01310d84e8f1bb4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb15d4c58668963a4d74c62b156a0fc7734d193fdd92178271c8d16fa34e556a
MD5 ba9ecfae9370015f1a5197e147d6d033
BLAKE2b-256 2f1ec5c0be566119e36ebb63ad13399e9324ec5e0f570eabb9bf7d9b2443100c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86a7dc6b4d9f3c956e3f5de369dbfb6d0f4987a1e082971d97d172c58e5c9f05
MD5 01fcd9ff73ccdab901591c951e6a5524
BLAKE2b-256 6d4d4a9202db2086e56dec52c20da2b0ff53870e6899d93bec547966165bba6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c623ca89c09e12b544025485c9d3ee2d278144177d1fec1bc542220771016986
MD5 f8de642e617328fcc5ab3ce8254c7df7
BLAKE2b-256 7a70eed5c27af4a0d4c82069af10e6754514f855c56dc4cd807b86629800b95d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b4f791f4bd3d5527e8f1bdd665e035b091c34494c7113d97a558adc5fb9e968
MD5 afdbc50adcd75de3fdf895a538647ed7
BLAKE2b-256 d93f3348bcc66731b9dc3974c8f7faadbfa889948f385ab49d493b65c578ef3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f32865a5512ef170d34ebe54b5faa65ad158f3c8e457f5bb293f899e832ef892
MD5 82064046506165a70de590c7ff85e5fb
BLAKE2b-256 5c1a460fcbad76fada33e63f3430c3ad91f54fa40c1efb69edb4298bc0892fd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8084bdb7c8cf9b501f02121287039ace8c71fe32c6bd4334fc142b8b6660b40
MD5 5ec971dccba7c2fcdf211ede22496bff
BLAKE2b-256 b66f41c479521df0d7369adbd5d0dadd19f32a023ad5d0d0f35f160fc1814e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 809123b5e25250e4df4c998bdd6b6c0329a49035c31aa8695b8f0e38d5d3bec7
MD5 339e78df01bae7b53f403753d01bf35a
BLAKE2b-256 74ae5b6a07f80b105a628fcf37dd4b1973216779864e9f8e0cd27bedadcfad19

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a4efc79fabec8171e1404ffba8d531ce012d4f4af8f46af3e439d45e83a5b8f7
MD5 848153a9b0385f3bccac143e1c0570f6
BLAKE2b-256 7f4b3cba52755656e4c402518152dcebb0d1ff5e5d02abaf5f32fb8e6799bd6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: diskcache_rs-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 985d6a82bd09a0735dda4ae1e1fb75c0a390684e99d889b1ae38b09920fa39df
MD5 bd2879e33c43717ce654b626736b96c9
BLAKE2b-256 cc15701b2fe81a9a5bd2afdb1aa25a1ba12eeef0785eae7d228a77ab857f847e

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: diskcache_rs-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ecd1e299e90886a40ff87eee23dd64a48e14e38c9ab6e7eaf0480d7842fea91b
MD5 5915417a3eb1ac0496446e878d73fe18
BLAKE2b-256 c9da39dec62cc144607f21dc83e55c32242e62048276d948881fd9e48a39da3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-win32.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a548c210c536a4c56fce5a5dcd3bf8dc47620daf3c61b0320b329493777a3ab
MD5 dc2d632def3e67c9d7b1685d0e963087
BLAKE2b-256 3067f1dee00751bf0d9cd08429b51e7a778897da35b0b7483f0d82a8329a78cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be2ff691005fad9fcb3209e24dc8cde0259b4929408d74700fbce3f3a16c03a0
MD5 bc80a66a386ad4445a2fb33dda8f4725
BLAKE2b-256 bcbb7724115c8128a6f4494dd2facf05c90bf33ba40460a7137cc227492cb2f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 604a11eafd85c45f2647a7784382ad6d66164a84e0591a9ac957232c7e0b84bb
MD5 5570f53eaf7637b237b86660efc29bb8
BLAKE2b-256 2f68af8e75ae8484b0c56adee6a9a22920788de50f24c3217d160404d44e9b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8661deabfb7c513d982d060b2f4064ed6861a4597a471c089e3f21a7a4b30f4
MD5 4ce0e525fa8a8cce0f5ad462ac114834
BLAKE2b-256 dea1033725e37bf6d549ffdba610b4f7c39dd6b2f0a45f36115097aafbb289ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa1bf440fc1f7073d76571f7c04beccd3aaebb858980a1bbf731cce99dc80a85
MD5 4597e69da82df40a30ff3b4a2738c4b7
BLAKE2b-256 8fc6606b2dc163e99cec8fd4ef7688f9b935ffdef5b6dd25acdca0b03f42c77d

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e82326eabff57d8dc344110c7ab542be4d640b446ee3808e7aeb12399b84922
MD5 7aaa0fd61cd5fd704c6a8edee416bb2b
BLAKE2b-256 98e6e94fef63764b6ecddd03d6dc0a0ca5bc0e705fe07f1a3d86fde5ee743f8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3f304cf52a3d5430c8614a762246e9285b1aa93d4f27aa7f845218272cfe614
MD5 f5c8359e84cbfbc6b99972b5df4b3da2
BLAKE2b-256 2eba612ec331662f76f12f3c05d4abfa26da70bf6e94aeb038755419e0980222

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa46f31b82400310b1f8c1d4fc186b71510b8976dd2fdd3d32e1315d7f3a76cd
MD5 194ef1041190c4e529394d69f54b5c37
BLAKE2b-256 98958e8d5ad6b7b3b27ff8f3f005fbcb281e9155371c26db15610eb046267b05

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc0a5fcb06ce844286af6ac2284846235b99f08cde7f692d3f6f131a72d3637f
MD5 ecbcbb24e36307be6f58dc17c5f16eac
BLAKE2b-256 d11f11a8cbffbf249e4f313d78e5168d48419d03eb33fb15898b1539423165b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4cfd040693e05308c35695c8c8aec2d47f371ff182510abad0a1fcb717a83dd5
MD5 5153e5458ba03ef10b54b520acef405b
BLAKE2b-256 14ffdcce3100a90a9793cb743df9e0a492b31aec2cf0fd34b3b53dd837828047

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c45d14e66979648cf5644415545175aa7e636adecc7ff4cb652d4e1ca53f64f6
MD5 f881d06807d5cd358bd1566e966f3496
BLAKE2b-256 e62b67ade0c6142c29fb8ec648608a130462ed4d94764b16ca69ed57aec5ed0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6dc0bc65d74ae4fbca2ae6b0f30d99a468bc708afc89c0d1324130a37604efe3
MD5 ba87058bae4bc63ce44259b0134fd8fc
BLAKE2b-256 d750040a9a6db76e2feed3eb1a285eb639eb044209c8a38564908fd88d7b9e53

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72bad05250630d4666fe0f598b9b8421b1bc7084bbdffe3f63fc27ec5a75e7ab
MD5 338558d03a5dc24110175ccf9a7d9312
BLAKE2b-256 3a946c06758c68fcc5bdc36c93eb450faa4ac6d63fdd62be7a74516cbe3ef430

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0f8d4ecb9b841ae4fcb7bc79782aaf25b87a1b61f4c6e68dca44b782be946c6
MD5 2ffcf47c9837d3ee15470f54cad30dcf
BLAKE2b-256 3367af2579a4408b2b9a81e5c7b4f8ce0460fa53982cdde306692879f88200ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1976c6482ad033909306d591bb996c4576ae8ac3266d83897871d21e932c7abc
MD5 38406280dab80e3fa0ca7eb8fb97af81
BLAKE2b-256 b929564dc7537876f72474ac17732fdf8027d909c7966ce8404a81a81bbad27a

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

File details

Details for the file diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3412f37ec16d011513136c5464669355d22d51ef40f60a40a42766c5d2b373d4
MD5 bddd2058d87e7778a5c19e9ae9591d0e
BLAKE2b-256 d63d8a4651939f3227786093b3aa8ead639cfadd33f66246a706391be6a5be90

See more details on using hashes here.

Provenance

The following attestation bundles were made for diskcache_rs-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on loonghao/diskcache_rs

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

Supported by

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