Skip to main content

Enhanced Python wrapper around ChaN's FatFS library - Fork of fatfs-python with extended features.

Project description

fatfs-ng - Enhanced FatFS Python Wrapper

Enhanced Python wrapper around ChaN's FatFS library with extended features and ESP32 support.

This is a fork of fatfs-python by Ladislav Laska, with significant improvements and extended functionality.

What's New in fatfs-ng

Extended Features

  • Complete Directory Traversal: walk(), listdir(), stat()
  • Path Operations: exists(), isfile(), isdir()
  • File Operations: remove(), rmdir(), rename()
  • Convenience Methods: makedirs(), read_file(), write_file()
  • Bulk Operations: copy_tree_from(), copy_tree_to()
  • ESP32 Wear Leveling: Full support for ESP32 FAT filesystem images

Improvements

  • Fixed SyntaxWarnings in Python 3.13+
  • Abstract Base Class for Disk with proper type hints
  • Better Error Messages with descriptive exceptions
  • Comprehensive Documentation with examples
  • Production Ready for build and upload operations

Installation

pip install fatfs-ng

Quick Start

from fatfs import RamDisk, create_extended_partition

# Create and format filesystem
storage = bytearray(1024 * 1024)  # 1MB
disk = RamDisk(storage, sector_size=512)
partition = create_extended_partition(disk)
partition.mkfs()
partition.mount()

# Use extended features
partition.makedirs("/test/dir", exist_ok=True)
partition.write_file("/test/file.txt", b"Hello fatfs-ng!")

# Walk directory tree
for root, dirs, files in partition.walk("/"):
    print(f"{root}: {files}")

# Copy entire tree
from pathlib import Path
partition.copy_tree_to("/", Path("./extracted"))

partition.unmount()

ESP32 Wear Leveling Support

Create FAT filesystem images compatible with ESP32 Arduino Core's FFat library:

from fatfs import (
    RamDisk, 
    Partition, 
    create_esp32_wl_image,
    calculate_esp32_wl_overhead
)

# Calculate overhead
partition_size = 1536 * 1024  # 1.5 MB
wl_info = calculate_esp32_wl_overhead(partition_size)
print(f"FAT data size: {wl_info['fat_size']} bytes")
print(f"WL overhead: {wl_info['wl_overhead_size']} bytes")

# Create FAT filesystem
storage = bytearray(wl_info['fat_size'])
disk = RamDisk(storage, sector_size=4096)
partition = Partition(disk)
partition.mkfs()
partition.mount()

# Add files
with partition.open("/test.txt", "w") as f:
    f.write(b"Hello ESP32!")

partition.unmount()

# Wrap with ESP32 wear leveling layer
wl_image = create_esp32_wl_image(storage, partition_size)

# Write to file for ESP32
with open("fatfs.bin", "wb") as f:
    f.write(wl_image)

Extract from ESP32 wear-leveling image:

from fatfs import extract_fat_from_esp32_wl, is_esp32_wl_image

# Read image from ESP32
with open("downloaded.bin", "rb") as f:
    wl_image = f.read()

# Check if it's a WL image
if is_esp32_wl_image(wl_image):
    # Extract FAT data
    fat_data = extract_fat_from_esp32_wl(wl_image)
    
    # Mount and read
    disk = RamDisk(bytearray(fat_data), sector_size=4096)
    partition = Partition(disk)
    partition.mount()
    # ... read files ...
    partition.unmount()

Features

Basic Operations (from original fatfs-python)

  • Mount/unmount FAT filesystems
  • Create FAT filesystems (mkfs)
  • Open, read, write files
  • Create directories

Extended Operations (new in fatfs-ng)

  • Complete directory traversal with walk()
  • List directory contents with listdir()
  • Get file information with stat()
  • Check path existence and type
  • Delete files and directories
  • Rename/move files
  • Bulk copy operations

Use Cases

ESP32 Development with PlatformIO

Perfect for creating and extracting filesystem images for ESP32:

# Build filesystem image
partition.copy_tree_from(Path("./data"), "/")

# Extract filesystem from device
partition.copy_tree_to("/", Path("./extracted"))

Testing

Great for testing filesystem operations without real hardware:

# Create in-memory filesystem for testing
storage = bytearray(1024 * 1024)
disk = RamDisk(storage)
partition = create_extended_partition(disk)
# ... run tests ...

Documentation

Differences from Original

Feature fatfs-python fatfs-ng
Directory Traversal ❌ Limited ✅ Complete
walk() function ❌ No ✅ Yes
Type Hints ❌ Partial ✅ Complete
Error Messages ⚠️ Basic ✅ Descriptive
Python 3.13+ ⚠️ Warnings ✅ Clean
Status Alpha Beta

Credits

License

MIT License (same as original fatfs-python)

Contributing

Issues and pull requests welcome at https://github.com/Jason2866/pyfatfs!

Note: Package name on PyPI is fatfs-ng, but import remains from fatfs import ...

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

fatfs_ng-0.1.15.tar.gz (828.6 kB view details)

Uploaded Source

Built Distributions

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

fatfs_ng-0.1.15-cp314-cp314-win_arm64.whl (79.0 kB view details)

Uploaded CPython 3.14Windows ARM64

fatfs_ng-0.1.15-cp314-cp314-win_amd64.whl (89.0 kB view details)

Uploaded CPython 3.14Windows x86-64

fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_x86_64.whl (487.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_i686.whl (473.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

fatfs_ng-0.1.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (499.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fatfs_ng-0.1.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (503.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fatfs_ng-0.1.15-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (474.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

fatfs_ng-0.1.15-cp314-cp314-macosx_11_0_arm64.whl (98.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fatfs_ng-0.1.15-cp314-cp314-macosx_10_15_x86_64.whl (101.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fatfs_ng-0.1.15-cp313-cp313-win_arm64.whl (76.4 kB view details)

Uploaded CPython 3.13Windows ARM64

fatfs_ng-0.1.15-cp313-cp313-win_amd64.whl (86.6 kB view details)

Uploaded CPython 3.13Windows x86-64

fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl (491.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_i686.whl (474.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fatfs_ng-0.1.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (504.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fatfs_ng-0.1.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (504.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fatfs_ng-0.1.15-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (475.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

fatfs_ng-0.1.15-cp313-cp313-macosx_11_0_arm64.whl (97.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fatfs_ng-0.1.15-cp313-cp313-macosx_10_13_x86_64.whl (101.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fatfs_ng-0.1.15-cp312-cp312-win_arm64.whl (76.9 kB view details)

Uploaded CPython 3.12Windows ARM64

fatfs_ng-0.1.15-cp312-cp312-win_amd64.whl (87.0 kB view details)

Uploaded CPython 3.12Windows x86-64

fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl (497.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_i686.whl (482.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fatfs_ng-0.1.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (510.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fatfs_ng-0.1.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (507.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fatfs_ng-0.1.15-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (481.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

fatfs_ng-0.1.15-cp312-cp312-macosx_11_0_arm64.whl (98.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fatfs_ng-0.1.15-cp312-cp312-macosx_10_13_x86_64.whl (102.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fatfs_ng-0.1.15-cp311-cp311-win_arm64.whl (77.4 kB view details)

Uploaded CPython 3.11Windows ARM64

fatfs_ng-0.1.15-cp311-cp311-win_amd64.whl (87.5 kB view details)

Uploaded CPython 3.11Windows x86-64

fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_x86_64.whl (516.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_i686.whl (500.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fatfs_ng-0.1.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (520.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fatfs_ng-0.1.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (521.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fatfs_ng-0.1.15-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (497.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

fatfs_ng-0.1.15-cp311-cp311-macosx_11_0_arm64.whl (98.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fatfs_ng-0.1.15-cp311-cp311-macosx_10_9_x86_64.whl (103.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fatfs_ng-0.1.15-cp310-cp310-win_arm64.whl (77.3 kB view details)

Uploaded CPython 3.10Windows ARM64

fatfs_ng-0.1.15-cp310-cp310-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.10Windows x86-64

fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_x86_64.whl (491.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_i686.whl (479.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fatfs_ng-0.1.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (497.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fatfs_ng-0.1.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (497.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fatfs_ng-0.1.15-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (476.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

fatfs_ng-0.1.15-cp310-cp310-macosx_11_0_arm64.whl (98.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fatfs_ng-0.1.15-cp310-cp310-macosx_10_9_x86_64.whl (103.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fatfs_ng-0.1.15-cp39-cp39-win_arm64.whl (77.6 kB view details)

Uploaded CPython 3.9Windows ARM64

fatfs_ng-0.1.15-cp39-cp39-win_amd64.whl (87.0 kB view details)

Uploaded CPython 3.9Windows x86-64

fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_x86_64.whl (488.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_i686.whl (476.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

fatfs_ng-0.1.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fatfs_ng-0.1.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (493.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fatfs_ng-0.1.15-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (473.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

fatfs_ng-0.1.15-cp39-cp39-macosx_11_0_arm64.whl (99.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fatfs_ng-0.1.15-cp39-cp39-macosx_10_9_x86_64.whl (103.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fatfs_ng-0.1.15-cp38-cp38-win_amd64.whl (88.0 kB view details)

Uploaded CPython 3.8Windows x86-64

fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_x86_64.whl (498.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_i686.whl (487.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

fatfs_ng-0.1.15-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (505.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fatfs_ng-0.1.15-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (507.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fatfs_ng-0.1.15-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (485.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

fatfs_ng-0.1.15-cp38-cp38-macosx_11_0_arm64.whl (102.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fatfs_ng-0.1.15-cp38-cp38-macosx_10_9_x86_64.whl (106.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file fatfs_ng-0.1.15.tar.gz.

File metadata

  • Download URL: fatfs_ng-0.1.15.tar.gz
  • Upload date:
  • Size: 828.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15.tar.gz
Algorithm Hash digest
SHA256 ab048c7f7b3cf88c558ba987116afcbd86bafdb3145dc6865a150b50c6800c0b
MD5 1306d0581e7422ab08b63850d489b688
BLAKE2b-256 535503ecc7cd5ef6a65fa4e53993db8bfaa1027342a94ac8229479278f1e465e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15.tar.gz:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 79.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ec7fc9dc56a473c4193d43289e84747a27c66bc29a0bb71c46217db8d2653589
MD5 365509ad12de178105eaa4382eef75ab
BLAKE2b-256 3d5b3bf7836c96b07f481b3a27aef28f4864c7f05da3ae8e3e1b31479381927a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-win_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 89.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cd1755d02ca0d75cedcec679db3b9243c88ef2b604c50ca80f05b443f435d785
MD5 591f4b5ec1e2e27db74e53798155da8e
BLAKE2b-256 bd01df4ed5abae305ab2407ce73412e789d2f0bf11567871ebf86ffeca44c4c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-win_amd64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c47fcbd93fa3c9334118b4584a7214757eb04d6cdcf5af36caf1456737cce458
MD5 bb9c0f8606fd0eeb6436c485ab6f6af2
BLAKE2b-256 83e439ac5a7908d33d668a4cdaccc4654f907a59e4adb92409efac412ceb82b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c262223f867a03425c1f0bc2de029b8a81d2c13a44f2f16a318220c55bbc9ad
MD5 5b128d672ab5fee4c06b4398eefce3b9
BLAKE2b-256 a4a83d7e33238401b2169b5b870e8960122253f0ec148b07fe167173928479fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5da97ab69ea75229c04be8e41808c074cfae9bac45bc82bc0442054b3ac7163b
MD5 1137713f293da062243ebdcc927e7667
BLAKE2b-256 5097fd976596ed0c0b321564b9cd5243bb8623f0b2d47a92a90e38f3b1f9681e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eeba6451137b4d5859306c72c0205c140cfdbd68ebc64ef9abfe85c4590aaa51
MD5 0c8a09693941dcb61a46b3d06369b15b
BLAKE2b-256 27eda863eadb7c6edd03917b6767e829f6d8df25eaf185d152260139cccb4433

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5c81eecf34e7f5880382eabf4c8ea41d5352da51af8a9874bf91e5a37c6a25c1
MD5 c415b3d3dd6e25e49420d479a199cdd4
BLAKE2b-256 a7103d14566855267ffe5f4c5fa0b9bad8eaf3d02c864433732490c4a8f97f1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1beead0079d0806fd0aaa191b76640781499b356072abf412c97ee3de22f3f30
MD5 f2aa6f8c505780c227cb79536ff03b55
BLAKE2b-256 28eaf9ad14acb43d3d7a9a7c0dddd4e6b1768a1c530cdc0ebd4390009e5080a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dccd531463c2a96e0fcc95c702c514342258305d396582d37704fce73da310d7
MD5 e17d06f1935ccc775f1ba42a2c24e09f
BLAKE2b-256 bace3d334bc1ba3b2d89cded9bcd81e1bed5d61d4f2112351963b1573a904802

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 76.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c5d3588e536c6adab532cc0271f58d572aa53a985125566d798333956eedffef
MD5 5a9e2e3078aeba0c7517becdcfe78327
BLAKE2b-256 794f2bcda744b408f73591d88728504cd0fb086067325289c7e676e019d03c49

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-win_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 86.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d4395bcbe80d9447cc0dbb8f6910effbcbac5acf841a20607b4fa2b759a521ba
MD5 5e1e6467af7319c9dae3b16a548f8c84
BLAKE2b-256 e5153525c81882e7e70d06745cf10aa1e5c284e44e766d6c4e4f7c968e7b9851

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-win_amd64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c683e3ff1d22d68380976f7932f953ed89dfd5d02cb53b8ffd437998c44f36f5
MD5 9d25fd1b412115f0575d8a0d4859c7b6
BLAKE2b-256 27cb2665d13d45acea704b8869a1d391b8c0e651c4a1a61158f9340cf3753b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d893bb823fc30dee58941c5216e53346d98b0224011f724eec47be6f49913abb
MD5 2116783fb71204ce1887ecf74d3466ac
BLAKE2b-256 acbd45b618dac89af8a1355253ba536d94cafab82de1b40ec6a104f00365e6b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ee65784c59997e188cda394e38901bb8056a36d3ce0ccb2c1f0bce27395c087
MD5 d155a98d7414942326b3533e781977d4
BLAKE2b-256 1f1428b2a4d937cdd61e3b8a5362aaa9b1a88a9039c6c399daf14c624f37bf6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0c8c765d32904bfdfc79f9a6869ad8e56b4ea80fe5cfc75b88d1c53e126ca4f
MD5 86f01931b71f9b04f7cbc6ab9f51587e
BLAKE2b-256 9ddfa47645eaecb08e38f2d58d14c437890cac5fa9464c2c6501f2b568a73190

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6539d46a427c7c21d8ac410d803ae338fb71c7cce191fd226d27ee11c13287e4
MD5 93b02e6634f38e38fa7ed2d2cff49efd
BLAKE2b-256 686b134465ff0f453d6df40a467a0b0f1442b961a67997904a6292e808ccdcf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9994d57267626f2fe935f672f05f09cfe7e018110a4e6f2dac50bc8f1eb765e
MD5 481a1e07bcd9d41e0e72c46595853099
BLAKE2b-256 b404bae5372acad0bc57a9ec72462cb16a1556ec02e91c3bbbd6231fb3a26c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1647ed1cb13dade6ee5a6ea7bdf7c02a2231d6de6a1d54d65765333525452f7c
MD5 08e2d8d31470dfe172039b9a393f52f4
BLAKE2b-256 749b0f7e7240576598e4b755040a5bef4321b36b5a36f5da6d737d25be84c18c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 76.9 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d6901ae67fcb28804b09954450641ed1cd35f2adc864e477ce4de211df72ae42
MD5 df7103e2f0906317676263193ac5c3c5
BLAKE2b-256 48b7372481a87c0fe3c01843fe7ae8ae8084d6cdf1fabdb6d546a39b06c03815

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-win_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 87.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 69a57955f93960e34405faff9da69e7869dce4045c536221e9f5f3e64c1cfdef
MD5 6b5173e700fd9d6eb9892b8073bf5d3a
BLAKE2b-256 0aad755469096d7b9396158c508971e0a4d6ed4a04c88aebcb2941bae159dc17

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-win_amd64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 651e50fcc99e5e5fa8ea9c8f33ade7a27f49aba41d1068ecafeb119bcbc023be
MD5 45562d56e08bcdc8e27721b42ef71b07
BLAKE2b-256 01eed158fdf4fdcc10867ec1aed29eaba176136e1c27558058c3edc6e9a4bda8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 203f38e426ede580f6224f8fd4f02c50b57977d7b342228f01365e10c798b5a4
MD5 a88f1ebb36bb105748511c06befcf0d3
BLAKE2b-256 2b82bc4b41e2551f22b4d73efb9cff52e36775a3d5f4e72c753213d8fbb20a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54feff0ec257220c6ab350022647af65f8b3705343a748708fd370a9383920b4
MD5 026cb8e2892bdd211d3355a81e47e2ff
BLAKE2b-256 2348d1ef133698e5f99dcc657303b3819285d08ccc1de4012357a41344736166

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9abce350ec99d4179e1cd202d2e453b64bc9896cc81683a16d09f96d679cdb97
MD5 75385185afc7603eaa0caab5c7b75438
BLAKE2b-256 324ecc515bf07b073d0d92c768ea0242ced4bb41cda1460949f1eb30112d599c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 94a146e2caa716d006869c0b82693446b12a1935a034c8b700560dbff8210caa
MD5 bea5bd6186b1e22473ad611f053d7fcc
BLAKE2b-256 aecbc810660703f41f64a410b75fa7867ff362525d491ddcf1cd7996f326bd9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7f9c09e6e77472a5ca26c7828fefaf75e07c549c1a01541bbb24db2254eeecc
MD5 47305e51cf6645e380b5eadff7dfd455
BLAKE2b-256 afaa4ac8951390e3f3593d3085744cbdd998838b78d708329939b5bc5317ea5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9d4243aaf240b365f1a1b0dc6c5ca460b46c622c6809d3c6e0869fa896873d1e
MD5 7a10597f08fd878694ddb61e71b0d87b
BLAKE2b-256 d15dd63ef703dd2b728593c6ba8a3ced99908a2b8db06eaffd82b55f56594e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 77.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f3ff34f6610e5d4bcddcc4e65a18b1c47ccdb9cbfd7a38f784e15866476a126f
MD5 a6d09a2766b5f6f682e80f6ce481ada0
BLAKE2b-256 388cbbdfa30b3d4613472eb0998bc901c5c5cfe033eafed87881c72203474a4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-win_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 87.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a2402466b48b591b18b86d0230407c9c08e303561567c3f47d1b7e9e4eb46c93
MD5 b699fddea8f153ef0653e26e10492fd0
BLAKE2b-256 96980d6a327507a2ab81cae3a8704fd09e9a0930ad3a32495ebb239f9a516ffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-win_amd64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5018e010718a6536a21889e715a06490175689ef05abd2a57c7f31daceb934f5
MD5 3b8c8ad2eb5a8b124974a68ff4555a1c
BLAKE2b-256 c5571ae404f1d5c4082359f7c1ce17189ac96e0def25c2f051debb4b72662b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c3fc5d7fca040065b2027849ed5eddaadfe98381b162775754756d60d737342
MD5 38c7272b1f70b54be575c22fec1098b2
BLAKE2b-256 78cc261efab022e38ecf5cc8fc4f7c4e417ac7300b4a2df4e45f66ac8c238c1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d08df25c6642ee70fc3b7d3eb02f221c2d2ee7993055cfacedac0f28b9ad0d2e
MD5 8906996657f09e3d1f92ca6ed2948aa7
BLAKE2b-256 f8a02a229892b01006255997d0f2a3d84bc6e54da5ecc4d421da096d68025348

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6b6f8412e2634c51e0494b5a8f20d9d92fe5c5ea2f1d486d21b43f670b6d74e
MD5 dfbdc55a2f0c234bf095a07f40c3f930
BLAKE2b-256 39d95ffa021eb0d38f6e8acc8bbdc2314ba1ce682412f79db81c29215fad5d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 68b293c11d6e781249bbe457daddcb00962faf76ec124af6f4c7416c2f292dfa
MD5 136df5a06d319c6c4be853c893e366ea
BLAKE2b-256 1a54b6b1bddff35a0e5ad513fe2b5d9d64d4c654fc2462acd22f5778ab418136

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9adf388319c5095553ed1202db29fabed3fe654f3a89f098dab35c41ad62dd55
MD5 8a33c9565e1f415ffdae58c83f9a81b9
BLAKE2b-256 ad2110e22198d21e1248bb3237b0c75d9270c4a34b87ff475372e7c4abec4f5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 131739d87a3191f10f53df9bb0443f9c595445250a6b0fca9af5591653679c06
MD5 7f78c71078c4208db4e843b38c208de1
BLAKE2b-256 6bd95cfad5ce9ffc65efd5b1ff847b7c2ed4d08aa36b477fb1bcedce52c3b8b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 77.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0a0d891114d885b741a5111a1697aaf5c2d0852d804690ca3a5b82809d67160c
MD5 34ba438ef462a2ed230da64d8cc28d7b
BLAKE2b-256 52ddedd4690174dffb54d973b21e940a6928160c2650336220687647587ee712

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-win_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 86.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8a467e3300d4fa8291098b221d49f481958a615415e4490454c07a9fb2770b18
MD5 40e2dddeac2cac001e3be1e741604536
BLAKE2b-256 1889c17384e83aa18c0f8e398a795e1a057aa66abf40a6d5adb992ebc0430f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-win_amd64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bedadfdeb9f0a8a9029618fe7ccd411ae5e04e58d32fc1fbc8b07a62acfd6b54
MD5 3badf7fe61b052a19e9a08f82081a45b
BLAKE2b-256 f2f337b96f008c14058319f5ad43621f63acb6cc3ee77ef690cf5a297b38f08d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29f15a02cf4b14589f3a0af21b4da78b7dda65c772f1c7f2ffb3876552648665
MD5 642e3adc3c2ba7ce9e3a053bf97ed0b6
BLAKE2b-256 44945f58d4aaa29b27dd59363e91922b25ed3e342ce38d1ad4e6e5d4f2a14bc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06ae1ab4931ec29a23efa1ebba1d9b4fcbad1abac03a56d0fdb116c4ad4b7815
MD5 04ce7557d77ca6886b2bbd53765b47b6
BLAKE2b-256 2beba6bf9b6c34ac3c23d84c62d40304296adad770ae0d7b434cac946c4e84ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ede218ab1ebad2d060a5fbd1f9c13600c97a4d508c023049428b9e711fac72c
MD5 86c1c75ff8d120f41d94e53c48adbb0b
BLAKE2b-256 5f24a011d599e071b3cddd936b4aa298ee939e885cb16e361eecec023c8484b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 004fbabd21a6d2d3b2c098a1bff3d22533adc40f50afaddaee1837e780a4da6a
MD5 72c2e322ba2a1b4975f733e6cc18a66f
BLAKE2b-256 fec4ab4344b5f871e9936ee17b7658175f8646bf5245d3f197cea8d9b508ef0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2b5ab3f9373731b82402ac8c99c2f9fa10fb27fa853395fd049e8c3878f023b
MD5 26f9be77c90c6a9c4d19216bd791ff1a
BLAKE2b-256 b875f5a86251ee1c412e5429335f21b270fee561ba8933a9f14588bc584d4c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff1df4ffb4feb380c94ceb9be2cd07588727a80d57f4332e2655ce523b315d69
MD5 a369c9b605b847f18e3b956f3db32a82
BLAKE2b-256 6ebdb863ffbf08df6114e68fc039510ea3ac316d5ee3faad62ec94fa8f5f7cda

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 77.6 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a513ce75f32cc2b3bf9e984fef70381562922622c82dd3a4288280c357aa5a2d
MD5 2856176e357f5ecf0be8229f460925f2
BLAKE2b-256 f30f9ab3d265b31f25c0e3c51be904e4250e777da44ac926cddabd2b0fd97732

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-win_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 87.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c1a8a0de23eaccbb1b5ff4bb166299f0759a755e8524c511f246ad276568db98
MD5 7685fbef4d129c7d3d316bd778a10850
BLAKE2b-256 c2dc02fbbdee759c974bf018bc9cd0a6dbae02b396cb3dc8b499b7176588ee17

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-win_amd64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a870c7180f2c64509298da993ed9476c3e1e4b16005f8852b7af84194c447bd
MD5 2e72485f3915f44cabd9555ff6653fa9
BLAKE2b-256 b201f71c72ed414a710be8c5437455a6b81c4dae31cb7e78233e90d1dda2d5f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18e802bf75fa6c302cae643f593473d31577717b770c1a30880ec16897ead269
MD5 c475467fbe98fa5487862204839180ba
BLAKE2b-256 2019df4009019f4204aef9a672b2de9fdf40b89df0f775aaf4d62189973d0f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 440443a3cd682d8d9d39c88a500ece032c929b56c05c81b79bb0e8b187fb2c9e
MD5 64c8d17a4492377542ac07cca07500c1
BLAKE2b-256 e42a005b01b516df49b8794dfe8128e6854e3758682f4a6ed73acb0d65e95c8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 742b3f43fc56097e039ccc1e49b97730609d7926344dbef57de1041091f6b021
MD5 ea6b987787335afc0fe0c229f3fac65f
BLAKE2b-256 dd5cb363f36137be5ce25b4af1ed588c0e5a33cdb7ca1d6de3471cc736cfea66

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 4bce0125644efc8716490fd3113c9ccb44bc0fe626174cd18bf5a49cf2c8ead2
MD5 302c627f97016a4a290a6a2622d87651
BLAKE2b-256 24c71ddae032a80d56e27f948ef46f11370d63c9387f252dbd1327b6b076d7c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dbf8050d9cb381d89e92d97809e0c4927ebd2ea3171f0e3aa6e7bdabdba5787
MD5 f4cf9583cec7521b80c059ced6152703
BLAKE2b-256 b8d8a9ca6bfdf6715bfef969db4c75d7a3f97ab11c5db59c5a854046f9559b8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 206f23a50f09dbb04663ee532f3f81a89ec34702ee315b53ec08e02c1a42f36e
MD5 26b102ed13d04be70359f09c017183cf
BLAKE2b-256 953aacdd75e09f3adc6a6b0be7acf64ebf6252ed5336720db14311c336c8b8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fatfs_ng-0.1.15-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 88.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fatfs_ng-0.1.15-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 87a0b2287c874ae94d6829ce76e8d63c56433d90136c3fc3508fbb743d4a370e
MD5 750273b46bf3d82d7a745637e31e36db
BLAKE2b-256 481f1b8a6927c23b3ef9ce60aabeea6fce248a13f94c4dcc72674b75d6c34975

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp38-cp38-win_amd64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a4aba1dc2e7efffe0423e501e580f99a02ef8700d180451b671bca12ac6c794
MD5 bea317857dd2aa8ed4cbc52f4c0fd271
BLAKE2b-256 b173271bf1f0fda3b0e44662a83c64ddf55ae31962f89ee39238fa36029fe2fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 307c8ad186f026ced08167045498beb86947f827bc38a4f4a5e743fb869e6fcf
MD5 078e1dd2d2ea2494d3bd29985dba43f2
BLAKE2b-256 d39f2d793568cf8d8804660000450885f0ea8c512a03ea98718f0efc3c448250

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65679f247d52c9f5cde3918fd003564419ff15b2525eb9c08823eb0a0fedbc08
MD5 0ae269c6e204ca0d37f8feecf42298c6
BLAKE2b-256 cf7c8374ec71f48bb06620e96e451e7e9c72c4a18de3f1f142af8e8226c8c3c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe3ca3a4fead863c72ca0f2aeb47b67503b0105952a6877667712e4926507c99
MD5 54765d78f916794ed72f8a25d56e1134
BLAKE2b-256 c8922b4451b2d53f4d7367bd18b315f6c4ac35caa50e5f70efb7f9f41f65c95b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cfef96a2208cdfebed27811c6d052e904d0e94f6eb1ec9b2f14f68a2133f1373
MD5 cb3a1bcbfb9e66b8fcb15949d1583597
BLAKE2b-256 3e43faea4d86b1836917c1feed96b252f8aff5db89d9854a297926074aa266ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 979e06dff726d46dedc0dcf73318187b03d8c10ae01a3b3168343e2c78b0cdda
MD5 2f6a5520830661a0134f920be7c15108
BLAKE2b-256 36c3287c768ade6642afedcd45713aa0b6dcfba74a13315acb5f8b369a808377

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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

File details

Details for the file fatfs_ng-0.1.15-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fatfs_ng-0.1.15-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c13f2142441b87a589b5de32006c080fcb9e918ff728d30e123c0c574b133a4
MD5 156b2989d457aa022b56464f8785c87f
BLAKE2b-256 4f3bd9002316016b08dbc36e25119202b2dca7484c78b4a362a7f7c44da0b0b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fatfs_ng-0.1.15-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: deploy.yaml on Jason2866/pyfatfs

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