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
- Original Author: Ladislav Laska (fatfs-python)
- Fork Maintainer: Johann Obermeier (fatfs-ng)
- FatFS Library: ChaN (elm-chan.org)
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab048c7f7b3cf88c558ba987116afcbd86bafdb3145dc6865a150b50c6800c0b
|
|
| MD5 |
1306d0581e7422ab08b63850d489b688
|
|
| BLAKE2b-256 |
535503ecc7cd5ef6a65fa4e53993db8bfaa1027342a94ac8229479278f1e465e
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15.tar.gz:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15.tar.gz -
Subject digest:
ab048c7f7b3cf88c558ba987116afcbd86bafdb3145dc6865a150b50c6800c0b - Sigstore transparency entry: 836403562
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec7fc9dc56a473c4193d43289e84747a27c66bc29a0bb71c46217db8d2653589
|
|
| MD5 |
365509ad12de178105eaa4382eef75ab
|
|
| BLAKE2b-256 |
3d5b3bf7836c96b07f481b3a27aef28f4864c7f05da3ae8e3e1b31479381927a
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-win_arm64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp314-cp314-win_arm64.whl -
Subject digest:
ec7fc9dc56a473c4193d43289e84747a27c66bc29a0bb71c46217db8d2653589 - Sigstore transparency entry: 836403613
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd1755d02ca0d75cedcec679db3b9243c88ef2b604c50ca80f05b443f435d785
|
|
| MD5 |
591f4b5ec1e2e27db74e53798155da8e
|
|
| BLAKE2b-256 |
bd01df4ed5abae305ab2407ce73412e789d2f0bf11567871ebf86ffeca44c4c4
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp314-cp314-win_amd64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp314-cp314-win_amd64.whl -
Subject digest:
cd1755d02ca0d75cedcec679db3b9243c88ef2b604c50ca80f05b443f435d785 - Sigstore transparency entry: 836403664
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 487.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c47fcbd93fa3c9334118b4584a7214757eb04d6cdcf5af36caf1456737cce458
|
|
| MD5 |
bb9c0f8606fd0eeb6436c485ab6f6af2
|
|
| BLAKE2b-256 |
83e439ac5a7908d33d668a4cdaccc4654f907a59e4adb92409efac412ceb82b6
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
c47fcbd93fa3c9334118b4584a7214757eb04d6cdcf5af36caf1456737cce458 - Sigstore transparency entry: 836403602
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 473.7 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c262223f867a03425c1f0bc2de029b8a81d2c13a44f2f16a318220c55bbc9ad
|
|
| MD5 |
5b128d672ab5fee4c06b4398eefce3b9
|
|
| BLAKE2b-256 |
a4a83d7e33238401b2169b5b870e8960122253f0ec148b07fe167173928479fc
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp314-cp314-musllinux_1_2_i686.whl -
Subject digest:
0c262223f867a03425c1f0bc2de029b8a81d2c13a44f2f16a318220c55bbc9ad - Sigstore transparency entry: 836403619
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 499.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5da97ab69ea75229c04be8e41808c074cfae9bac45bc82bc0442054b3ac7163b
|
|
| MD5 |
1137713f293da062243ebdcc927e7667
|
|
| BLAKE2b-256 |
5097fd976596ed0c0b321564b9cd5243bb8623f0b2d47a92a90e38f3b1f9681e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
5da97ab69ea75229c04be8e41808c074cfae9bac45bc82bc0442054b3ac7163b - Sigstore transparency entry: 836403662
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 503.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eeba6451137b4d5859306c72c0205c140cfdbd68ebc64ef9abfe85c4590aaa51
|
|
| MD5 |
0c8a09693941dcb61a46b3d06369b15b
|
|
| BLAKE2b-256 |
27eda863eadb7c6edd03917b6767e829f6d8df25eaf185d152260139cccb4433
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
eeba6451137b4d5859306c72c0205c140cfdbd68ebc64ef9abfe85c4590aaa51 - Sigstore transparency entry: 836403654
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 474.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c81eecf34e7f5880382eabf4c8ea41d5352da51af8a9874bf91e5a37c6a25c1
|
|
| MD5 |
c415b3d3dd6e25e49420d479a199cdd4
|
|
| BLAKE2b-256 |
a7103d14566855267ffe5f4c5fa0b9bad8eaf3d02c864433732490c4a8f97f1e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
5c81eecf34e7f5880382eabf4c8ea41d5352da51af8a9874bf91e5a37c6a25c1 - Sigstore transparency entry: 836403635
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 98.1 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1beead0079d0806fd0aaa191b76640781499b356072abf412c97ee3de22f3f30
|
|
| MD5 |
f2aa6f8c505780c227cb79536ff03b55
|
|
| BLAKE2b-256 |
28eaf9ad14acb43d3d7a9a7c0dddd4e6b1768a1c530cdc0ebd4390009e5080a2
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
1beead0079d0806fd0aaa191b76640781499b356072abf412c97ee3de22f3f30 - Sigstore transparency entry: 836403667
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 101.9 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dccd531463c2a96e0fcc95c702c514342258305d396582d37704fce73da310d7
|
|
| MD5 |
e17d06f1935ccc775f1ba42a2c24e09f
|
|
| BLAKE2b-256 |
bace3d334bc1ba3b2d89cded9bcd81e1bed5d61d4f2112351963b1573a904802
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
dccd531463c2a96e0fcc95c702c514342258305d396582d37704fce73da310d7 - Sigstore transparency entry: 836403685
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5d3588e536c6adab532cc0271f58d572aa53a985125566d798333956eedffef
|
|
| MD5 |
5a9e2e3078aeba0c7517becdcfe78327
|
|
| BLAKE2b-256 |
794f2bcda744b408f73591d88728504cd0fb086067325289c7e676e019d03c49
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-win_arm64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp313-cp313-win_arm64.whl -
Subject digest:
c5d3588e536c6adab532cc0271f58d572aa53a985125566d798333956eedffef - Sigstore transparency entry: 836403608
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4395bcbe80d9447cc0dbb8f6910effbcbac5acf841a20607b4fa2b759a521ba
|
|
| MD5 |
5e1e6467af7319c9dae3b16a548f8c84
|
|
| BLAKE2b-256 |
e5153525c81882e7e70d06745cf10aa1e5c284e44e766d6c4e4f7c968e7b9851
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp313-cp313-win_amd64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp313-cp313-win_amd64.whl -
Subject digest:
d4395bcbe80d9447cc0dbb8f6910effbcbac5acf841a20607b4fa2b759a521ba - Sigstore transparency entry: 836403629
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 491.3 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c683e3ff1d22d68380976f7932f953ed89dfd5d02cb53b8ffd437998c44f36f5
|
|
| MD5 |
9d25fd1b412115f0575d8a0d4859c7b6
|
|
| BLAKE2b-256 |
27cb2665d13d45acea704b8869a1d391b8c0e651c4a1a61158f9340cf3753b69
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
c683e3ff1d22d68380976f7932f953ed89dfd5d02cb53b8ffd437998c44f36f5 - Sigstore transparency entry: 836403673
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 474.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d893bb823fc30dee58941c5216e53346d98b0224011f724eec47be6f49913abb
|
|
| MD5 |
2116783fb71204ce1887ecf74d3466ac
|
|
| BLAKE2b-256 |
acbd45b618dac89af8a1355253ba536d94cafab82de1b40ec6a104f00365e6b0
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
d893bb823fc30dee58941c5216e53346d98b0224011f724eec47be6f49913abb - Sigstore transparency entry: 836403678
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 504.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee65784c59997e188cda394e38901bb8056a36d3ce0ccb2c1f0bce27395c087
|
|
| MD5 |
d155a98d7414942326b3533e781977d4
|
|
| BLAKE2b-256 |
1f1428b2a4d937cdd61e3b8a5362aaa9b1a88a9039c6c399daf14c624f37bf6b
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
3ee65784c59997e188cda394e38901bb8056a36d3ce0ccb2c1f0bce27395c087 - Sigstore transparency entry: 836403610
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 504.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0c8c765d32904bfdfc79f9a6869ad8e56b4ea80fe5cfc75b88d1c53e126ca4f
|
|
| MD5 |
86f01931b71f9b04f7cbc6ab9f51587e
|
|
| BLAKE2b-256 |
9ddfa47645eaecb08e38f2d58d14c437890cac5fa9464c2c6501f2b568a73190
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
d0c8c765d32904bfdfc79f9a6869ad8e56b4ea80fe5cfc75b88d1c53e126ca4f - Sigstore transparency entry: 836403599
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 475.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6539d46a427c7c21d8ac410d803ae338fb71c7cce191fd226d27ee11c13287e4
|
|
| MD5 |
93b02e6634f38e38fa7ed2d2cff49efd
|
|
| BLAKE2b-256 |
686b134465ff0f453d6df40a467a0b0f1442b961a67997904a6292e808ccdcf8
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
6539d46a427c7c21d8ac410d803ae338fb71c7cce191fd226d27ee11c13287e4 - Sigstore transparency entry: 836403572
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 97.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9994d57267626f2fe935f672f05f09cfe7e018110a4e6f2dac50bc8f1eb765e
|
|
| MD5 |
481a1e07bcd9d41e0e72c46595853099
|
|
| BLAKE2b-256 |
b404bae5372acad0bc57a9ec72462cb16a1556ec02e91c3bbbd6231fb3a26c0b
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
f9994d57267626f2fe935f672f05f09cfe7e018110a4e6f2dac50bc8f1eb765e - Sigstore transparency entry: 836403676
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 101.4 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1647ed1cb13dade6ee5a6ea7bdf7c02a2231d6de6a1d54d65765333525452f7c
|
|
| MD5 |
08e2d8d31470dfe172039b9a393f52f4
|
|
| BLAKE2b-256 |
749b0f7e7240576598e4b755040a5bef4321b36b5a36f5da6d737d25be84c18c
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
1647ed1cb13dade6ee5a6ea7bdf7c02a2231d6de6a1d54d65765333525452f7c - Sigstore transparency entry: 836403707
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6901ae67fcb28804b09954450641ed1cd35f2adc864e477ce4de211df72ae42
|
|
| MD5 |
df7103e2f0906317676263193ac5c3c5
|
|
| BLAKE2b-256 |
48b7372481a87c0fe3c01843fe7ae8ae8084d6cdf1fabdb6d546a39b06c03815
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-win_arm64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp312-cp312-win_arm64.whl -
Subject digest:
d6901ae67fcb28804b09954450641ed1cd35f2adc864e477ce4de211df72ae42 - Sigstore transparency entry: 836403689
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69a57955f93960e34405faff9da69e7869dce4045c536221e9f5f3e64c1cfdef
|
|
| MD5 |
6b5173e700fd9d6eb9892b8073bf5d3a
|
|
| BLAKE2b-256 |
0aad755469096d7b9396158c508971e0a4d6ed4a04c88aebcb2941bae159dc17
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp312-cp312-win_amd64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp312-cp312-win_amd64.whl -
Subject digest:
69a57955f93960e34405faff9da69e7869dce4045c536221e9f5f3e64c1cfdef - Sigstore transparency entry: 836403649
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 497.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
651e50fcc99e5e5fa8ea9c8f33ade7a27f49aba41d1068ecafeb119bcbc023be
|
|
| MD5 |
45562d56e08bcdc8e27721b42ef71b07
|
|
| BLAKE2b-256 |
01eed158fdf4fdcc10867ec1aed29eaba176136e1c27558058c3edc6e9a4bda8
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
651e50fcc99e5e5fa8ea9c8f33ade7a27f49aba41d1068ecafeb119bcbc023be - Sigstore transparency entry: 836403640
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 482.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
203f38e426ede580f6224f8fd4f02c50b57977d7b342228f01365e10c798b5a4
|
|
| MD5 |
a88f1ebb36bb105748511c06befcf0d3
|
|
| BLAKE2b-256 |
2b82bc4b41e2551f22b4d73efb9cff52e36775a3d5f4e72c753213d8fbb20a3b
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
203f38e426ede580f6224f8fd4f02c50b57977d7b342228f01365e10c798b5a4 - Sigstore transparency entry: 836403625
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 510.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54feff0ec257220c6ab350022647af65f8b3705343a748708fd370a9383920b4
|
|
| MD5 |
026cb8e2892bdd211d3355a81e47e2ff
|
|
| BLAKE2b-256 |
2348d1ef133698e5f99dcc657303b3819285d08ccc1de4012357a41344736166
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
54feff0ec257220c6ab350022647af65f8b3705343a748708fd370a9383920b4 - Sigstore transparency entry: 836403570
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 507.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9abce350ec99d4179e1cd202d2e453b64bc9896cc81683a16d09f96d679cdb97
|
|
| MD5 |
75385185afc7603eaa0caab5c7b75438
|
|
| BLAKE2b-256 |
324ecc515bf07b073d0d92c768ea0242ced4bb41cda1460949f1eb30112d599c
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
9abce350ec99d4179e1cd202d2e453b64bc9896cc81683a16d09f96d679cdb97 - Sigstore transparency entry: 836403645
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 481.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94a146e2caa716d006869c0b82693446b12a1935a034c8b700560dbff8210caa
|
|
| MD5 |
bea5bd6186b1e22473ad611f053d7fcc
|
|
| BLAKE2b-256 |
aecbc810660703f41f64a410b75fa7867ff362525d491ddcf1cd7996f326bd9b
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
94a146e2caa716d006869c0b82693446b12a1935a034c8b700560dbff8210caa - Sigstore transparency entry: 836403708
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 98.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7f9c09e6e77472a5ca26c7828fefaf75e07c549c1a01541bbb24db2254eeecc
|
|
| MD5 |
47305e51cf6645e380b5eadff7dfd455
|
|
| BLAKE2b-256 |
afaa4ac8951390e3f3593d3085744cbdd998838b78d708329939b5bc5317ea5f
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
a7f9c09e6e77472a5ca26c7828fefaf75e07c549c1a01541bbb24db2254eeecc - Sigstore transparency entry: 836403631
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 102.2 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d4243aaf240b365f1a1b0dc6c5ca460b46c622c6809d3c6e0869fa896873d1e
|
|
| MD5 |
7a10597f08fd878694ddb61e71b0d87b
|
|
| BLAKE2b-256 |
d15dd63ef703dd2b728593c6ba8a3ced99908a2b8db06eaffd82b55f56594e7d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
9d4243aaf240b365f1a1b0dc6c5ca460b46c622c6809d3c6e0869fa896873d1e - Sigstore transparency entry: 836403575
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3ff34f6610e5d4bcddcc4e65a18b1c47ccdb9cbfd7a38f784e15866476a126f
|
|
| MD5 |
a6d09a2766b5f6f682e80f6ce481ada0
|
|
| BLAKE2b-256 |
388cbbdfa30b3d4613472eb0998bc901c5c5cfe033eafed87881c72203474a4e
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-win_arm64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp311-cp311-win_arm64.whl -
Subject digest:
f3ff34f6610e5d4bcddcc4e65a18b1c47ccdb9cbfd7a38f784e15866476a126f - Sigstore transparency entry: 836403569
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2402466b48b591b18b86d0230407c9c08e303561567c3f47d1b7e9e4eb46c93
|
|
| MD5 |
b699fddea8f153ef0653e26e10492fd0
|
|
| BLAKE2b-256 |
96980d6a327507a2ab81cae3a8704fd09e9a0930ad3a32495ebb239f9a516ffb
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp311-cp311-win_amd64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp311-cp311-win_amd64.whl -
Subject digest:
a2402466b48b591b18b86d0230407c9c08e303561567c3f47d1b7e9e4eb46c93 - Sigstore transparency entry: 836403702
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 516.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5018e010718a6536a21889e715a06490175689ef05abd2a57c7f31daceb934f5
|
|
| MD5 |
3b8c8ad2eb5a8b124974a68ff4555a1c
|
|
| BLAKE2b-256 |
c5571ae404f1d5c4082359f7c1ce17189ac96e0def25c2f051debb4b72662b1b
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
5018e010718a6536a21889e715a06490175689ef05abd2a57c7f31daceb934f5 - Sigstore transparency entry: 836403693
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 500.0 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c3fc5d7fca040065b2027849ed5eddaadfe98381b162775754756d60d737342
|
|
| MD5 |
38c7272b1f70b54be575c22fec1098b2
|
|
| BLAKE2b-256 |
78cc261efab022e38ecf5cc8fc4f7c4e417ac7300b4a2df4e45f66ac8c238c1a
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
8c3fc5d7fca040065b2027849ed5eddaadfe98381b162775754756d60d737342 - Sigstore transparency entry: 836403700
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 520.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d08df25c6642ee70fc3b7d3eb02f221c2d2ee7993055cfacedac0f28b9ad0d2e
|
|
| MD5 |
8906996657f09e3d1f92ca6ed2948aa7
|
|
| BLAKE2b-256 |
f8a02a229892b01006255997d0f2a3d84bc6e54da5ecc4d421da096d68025348
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d08df25c6642ee70fc3b7d3eb02f221c2d2ee7993055cfacedac0f28b9ad0d2e - Sigstore transparency entry: 836403582
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 521.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6b6f8412e2634c51e0494b5a8f20d9d92fe5c5ea2f1d486d21b43f670b6d74e
|
|
| MD5 |
dfbdc55a2f0c234bf095a07f40c3f930
|
|
| BLAKE2b-256 |
39d95ffa021eb0d38f6e8acc8bbdc2314ba1ce682412f79db81c29215fad5d11
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
d6b6f8412e2634c51e0494b5a8f20d9d92fe5c5ea2f1d486d21b43f670b6d74e - Sigstore transparency entry: 836403583
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 497.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68b293c11d6e781249bbe457daddcb00962faf76ec124af6f4c7416c2f292dfa
|
|
| MD5 |
136df5a06d319c6c4be853c893e366ea
|
|
| BLAKE2b-256 |
1a54b6b1bddff35a0e5ad513fe2b5d9d64d4c654fc2462acd22f5778ab418136
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
68b293c11d6e781249bbe457daddcb00962faf76ec124af6f4c7416c2f292dfa - Sigstore transparency entry: 836403682
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 98.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9adf388319c5095553ed1202db29fabed3fe654f3a89f098dab35c41ad62dd55
|
|
| MD5 |
8a33c9565e1f415ffdae58c83f9a81b9
|
|
| BLAKE2b-256 |
ad2110e22198d21e1248bb3237b0c75d9270c4a34b87ff475372e7c4abec4f5f
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
9adf388319c5095553ed1202db29fabed3fe654f3a89f098dab35c41ad62dd55 - Sigstore transparency entry: 836403585
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 103.3 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
131739d87a3191f10f53df9bb0443f9c595445250a6b0fca9af5591653679c06
|
|
| MD5 |
7f78c71078c4208db4e843b38c208de1
|
|
| BLAKE2b-256 |
6bd95cfad5ce9ffc65efd5b1ff847b7c2ed4d08aa36b477fb1bcedce52c3b8b5
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
131739d87a3191f10f53df9bb0443f9c595445250a6b0fca9af5591653679c06 - Sigstore transparency entry: 836403601
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a0d891114d885b741a5111a1697aaf5c2d0852d804690ca3a5b82809d67160c
|
|
| MD5 |
34ba438ef462a2ed230da64d8cc28d7b
|
|
| BLAKE2b-256 |
52ddedd4690174dffb54d973b21e940a6928160c2650336220687647587ee712
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-win_arm64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp310-cp310-win_arm64.whl -
Subject digest:
0a0d891114d885b741a5111a1697aaf5c2d0852d804690ca3a5b82809d67160c - Sigstore transparency entry: 836403626
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a467e3300d4fa8291098b221d49f481958a615415e4490454c07a9fb2770b18
|
|
| MD5 |
40e2dddeac2cac001e3be1e741604536
|
|
| BLAKE2b-256 |
1889c17384e83aa18c0f8e398a795e1a057aa66abf40a6d5adb992ebc0430f14
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp310-cp310-win_amd64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp310-cp310-win_amd64.whl -
Subject digest:
8a467e3300d4fa8291098b221d49f481958a615415e4490454c07a9fb2770b18 - Sigstore transparency entry: 836403604
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 491.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bedadfdeb9f0a8a9029618fe7ccd411ae5e04e58d32fc1fbc8b07a62acfd6b54
|
|
| MD5 |
3badf7fe61b052a19e9a08f82081a45b
|
|
| BLAKE2b-256 |
f2f337b96f008c14058319f5ad43621f63acb6cc3ee77ef690cf5a297b38f08d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
bedadfdeb9f0a8a9029618fe7ccd411ae5e04e58d32fc1fbc8b07a62acfd6b54 - Sigstore transparency entry: 836403699
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 479.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29f15a02cf4b14589f3a0af21b4da78b7dda65c772f1c7f2ffb3876552648665
|
|
| MD5 |
642e3adc3c2ba7ce9e3a053bf97ed0b6
|
|
| BLAKE2b-256 |
44945f58d4aaa29b27dd59363e91922b25ed3e342ce38d1ad4e6e5d4f2a14bc1
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
29f15a02cf4b14589f3a0af21b4da78b7dda65c772f1c7f2ffb3876552648665 - Sigstore transparency entry: 836403652
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 497.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06ae1ab4931ec29a23efa1ebba1d9b4fcbad1abac03a56d0fdb116c4ad4b7815
|
|
| MD5 |
04ce7557d77ca6886b2bbd53765b47b6
|
|
| BLAKE2b-256 |
2beba6bf9b6c34ac3c23d84c62d40304296adad770ae0d7b434cac946c4e84ad
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
06ae1ab4931ec29a23efa1ebba1d9b4fcbad1abac03a56d0fdb116c4ad4b7815 - Sigstore transparency entry: 836403637
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 497.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ede218ab1ebad2d060a5fbd1f9c13600c97a4d508c023049428b9e711fac72c
|
|
| MD5 |
86c1c75ff8d120f41d94e53c48adbb0b
|
|
| BLAKE2b-256 |
5f24a011d599e071b3cddd936b4aa298ee939e885cb16e361eecec023c8484b2
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5ede218ab1ebad2d060a5fbd1f9c13600c97a4d508c023049428b9e711fac72c - Sigstore transparency entry: 836403612
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 476.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
004fbabd21a6d2d3b2c098a1bff3d22533adc40f50afaddaee1837e780a4da6a
|
|
| MD5 |
72c2e322ba2a1b4975f733e6cc18a66f
|
|
| BLAKE2b-256 |
fec4ab4344b5f871e9936ee17b7658175f8646bf5245d3f197cea8d9b508ef0e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
004fbabd21a6d2d3b2c098a1bff3d22533adc40f50afaddaee1837e780a4da6a - Sigstore transparency entry: 836403588
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 98.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2b5ab3f9373731b82402ac8c99c2f9fa10fb27fa853395fd049e8c3878f023b
|
|
| MD5 |
26f9be77c90c6a9c4d19216bd791ff1a
|
|
| BLAKE2b-256 |
b875f5a86251ee1c412e5429335f21b270fee561ba8933a9f14588bc584d4c22
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
e2b5ab3f9373731b82402ac8c99c2f9fa10fb27fa853395fd049e8c3878f023b - Sigstore transparency entry: 836403668
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 103.0 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff1df4ffb4feb380c94ceb9be2cd07588727a80d57f4332e2655ce523b315d69
|
|
| MD5 |
a369c9b605b847f18e3b956f3db32a82
|
|
| BLAKE2b-256 |
6ebdb863ffbf08df6114e68fc039510ea3ac316d5ee3faad62ec94fa8f5f7cda
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
ff1df4ffb4feb380c94ceb9be2cd07588727a80d57f4332e2655ce523b315d69 - Sigstore transparency entry: 836403691
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a513ce75f32cc2b3bf9e984fef70381562922622c82dd3a4288280c357aa5a2d
|
|
| MD5 |
2856176e357f5ecf0be8229f460925f2
|
|
| BLAKE2b-256 |
f30f9ab3d265b31f25c0e3c51be904e4250e777da44ac926cddabd2b0fd97732
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-win_arm64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp39-cp39-win_arm64.whl -
Subject digest:
a513ce75f32cc2b3bf9e984fef70381562922622c82dd3a4288280c357aa5a2d - Sigstore transparency entry: 836403658
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1a8a0de23eaccbb1b5ff4bb166299f0759a755e8524c511f246ad276568db98
|
|
| MD5 |
7685fbef4d129c7d3d316bd778a10850
|
|
| BLAKE2b-256 |
c2dc02fbbdee759c974bf018bc9cd0a6dbae02b396cb3dc8b499b7176588ee17
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp39-cp39-win_amd64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp39-cp39-win_amd64.whl -
Subject digest:
c1a8a0de23eaccbb1b5ff4bb166299f0759a755e8524c511f246ad276568db98 - Sigstore transparency entry: 836403632
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 488.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a870c7180f2c64509298da993ed9476c3e1e4b16005f8852b7af84194c447bd
|
|
| MD5 |
2e72485f3915f44cabd9555ff6653fa9
|
|
| BLAKE2b-256 |
b201f71c72ed414a710be8c5437455a6b81c4dae31cb7e78233e90d1dda2d5f9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
0a870c7180f2c64509298da993ed9476c3e1e4b16005f8852b7af84194c447bd - Sigstore transparency entry: 836403591
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 476.1 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18e802bf75fa6c302cae643f593473d31577717b770c1a30880ec16897ead269
|
|
| MD5 |
c475467fbe98fa5487862204839180ba
|
|
| BLAKE2b-256 |
2019df4009019f4204aef9a672b2de9fdf40b89df0f775aaf4d62189973d0f0b
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
18e802bf75fa6c302cae643f593473d31577717b770c1a30880ec16897ead269 - Sigstore transparency entry: 836403567
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 492.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
440443a3cd682d8d9d39c88a500ece032c929b56c05c81b79bb0e8b187fb2c9e
|
|
| MD5 |
64c8d17a4492377542ac07cca07500c1
|
|
| BLAKE2b-256 |
e42a005b01b516df49b8794dfe8128e6854e3758682f4a6ed73acb0d65e95c8e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
440443a3cd682d8d9d39c88a500ece032c929b56c05c81b79bb0e8b187fb2c9e - Sigstore transparency entry: 836403641
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 493.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
742b3f43fc56097e039ccc1e49b97730609d7926344dbef57de1041091f6b021
|
|
| MD5 |
ea6b987787335afc0fe0c229f3fac65f
|
|
| BLAKE2b-256 |
dd5cb363f36137be5ce25b4af1ed588c0e5a33cdb7ca1d6de3471cc736cfea66
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
742b3f43fc56097e039ccc1e49b97730609d7926344dbef57de1041091f6b021 - Sigstore transparency entry: 836403617
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 473.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bce0125644efc8716490fd3113c9ccb44bc0fe626174cd18bf5a49cf2c8ead2
|
|
| MD5 |
302c627f97016a4a290a6a2622d87651
|
|
| BLAKE2b-256 |
24c71ddae032a80d56e27f948ef46f11370d63c9387f252dbd1327b6b076d7c0
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
4bce0125644efc8716490fd3113c9ccb44bc0fe626174cd18bf5a49cf2c8ead2 - Sigstore transparency entry: 836403671
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 99.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dbf8050d9cb381d89e92d97809e0c4927ebd2ea3171f0e3aa6e7bdabdba5787
|
|
| MD5 |
f4cf9583cec7521b80c059ced6152703
|
|
| BLAKE2b-256 |
b8d8a9ca6bfdf6715bfef969db4c75d7a3f97ab11c5db59c5a854046f9559b8d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
8dbf8050d9cb381d89e92d97809e0c4927ebd2ea3171f0e3aa6e7bdabdba5787 - Sigstore transparency entry: 836403622
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 103.5 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
206f23a50f09dbb04663ee532f3f81a89ec34702ee315b53ec08e02c1a42f36e
|
|
| MD5 |
26b102ed13d04be70359f09c017183cf
|
|
| BLAKE2b-256 |
953aacdd75e09f3adc6a6b0be7acf64ebf6252ed5336720db14311c336c8b8e1
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
206f23a50f09dbb04663ee532f3f81a89ec34702ee315b53ec08e02c1a42f36e - Sigstore transparency entry: 836403686
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87a0b2287c874ae94d6829ce76e8d63c56433d90136c3fc3508fbb743d4a370e
|
|
| MD5 |
750273b46bf3d82d7a745637e31e36db
|
|
| BLAKE2b-256 |
481f1b8a6927c23b3ef9ce60aabeea6fce248a13f94c4dcc72674b75d6c34975
|
Provenance
The following attestation bundles were made for fatfs_ng-0.1.15-cp38-cp38-win_amd64.whl:
Publisher:
deploy.yaml on Jason2866/pyfatfs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp38-cp38-win_amd64.whl -
Subject digest:
87a0b2287c874ae94d6829ce76e8d63c56433d90136c3fc3508fbb743d4a370e - Sigstore transparency entry: 836403593
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 498.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a4aba1dc2e7efffe0423e501e580f99a02ef8700d180451b671bca12ac6c794
|
|
| MD5 |
bea317857dd2aa8ed4cbc52f4c0fd271
|
|
| BLAKE2b-256 |
b173271bf1f0fda3b0e44662a83c64ddf55ae31962f89ee39238fa36029fe2fc
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_x86_64.whl -
Subject digest:
4a4aba1dc2e7efffe0423e501e580f99a02ef8700d180451b671bca12ac6c794 - Sigstore transparency entry: 836403578
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 487.9 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
307c8ad186f026ced08167045498beb86947f827bc38a4f4a5e743fb869e6fcf
|
|
| MD5 |
078e1dd2d2ea2494d3bd29985dba43f2
|
|
| BLAKE2b-256 |
d39f2d793568cf8d8804660000450885f0ea8c512a03ea98718f0efc3c448250
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp38-cp38-musllinux_1_2_i686.whl -
Subject digest:
307c8ad186f026ced08167045498beb86947f827bc38a4f4a5e743fb869e6fcf - Sigstore transparency entry: 836403650
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 505.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65679f247d52c9f5cde3918fd003564419ff15b2525eb9c08823eb0a0fedbc08
|
|
| MD5 |
0ae269c6e204ca0d37f8feecf42298c6
|
|
| BLAKE2b-256 |
cf7c8374ec71f48bb06620e96e451e7e9c72c4a18de3f1f142af8e8226c8c3c9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
65679f247d52c9f5cde3918fd003564419ff15b2525eb9c08823eb0a0fedbc08 - Sigstore transparency entry: 836403660
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 507.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe3ca3a4fead863c72ca0f2aeb47b67503b0105952a6877667712e4926507c99
|
|
| MD5 |
54765d78f916794ed72f8a25d56e1134
|
|
| BLAKE2b-256 |
c8922b4451b2d53f4d7367bd18b315f6c4ac35caa50e5f70efb7f9f41f65c95b
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
fe3ca3a4fead863c72ca0f2aeb47b67503b0105952a6877667712e4926507c99 - Sigstore transparency entry: 836403705
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
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
- Download URL: fatfs_ng-0.1.15-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 485.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfef96a2208cdfebed27811c6d052e904d0e94f6eb1ec9b2f14f68a2133f1373
|
|
| MD5 |
cb3a1bcbfb9e66b8fcb15949d1583597
|
|
| BLAKE2b-256 |
3e43faea4d86b1836917c1feed96b252f8aff5db89d9854a297926074aa266ae
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
cfef96a2208cdfebed27811c6d052e904d0e94f6eb1ec9b2f14f68a2133f1373 - Sigstore transparency entry: 836403616
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 102.8 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
979e06dff726d46dedc0dcf73318187b03d8c10ae01a3b3168343e2c78b0cdda
|
|
| MD5 |
2f6a5520830661a0134f920be7c15108
|
|
| BLAKE2b-256 |
36c3287c768ade6642afedcd45713aa0b6dcfba74a13315acb5f8b369a808377
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp38-cp38-macosx_11_0_arm64.whl -
Subject digest:
979e06dff726d46dedc0dcf73318187b03d8c10ae01a3b3168343e2c78b0cdda - Sigstore transparency entry: 836403574
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type:
File details
Details for the file fatfs_ng-0.1.15-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: fatfs_ng-0.1.15-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 106.8 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c13f2142441b87a589b5de32006c080fcb9e918ff728d30e123c0c574b133a4
|
|
| MD5 |
156b2989d457aa022b56464f8785c87f
|
|
| BLAKE2b-256 |
4f3bd9002316016b08dbc36e25119202b2dca7484c78b4a362a7f7c44da0b0b8
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fatfs_ng-0.1.15-cp38-cp38-macosx_10_9_x86_64.whl -
Subject digest:
9c13f2142441b87a589b5de32006c080fcb9e918ff728d30e123c0c574b133a4 - Sigstore transparency entry: 836403597
- Sigstore integration time:
-
Permalink:
Jason2866/pyfatfs@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Branch / Tag:
refs/tags/v0.1.15 - Owner: https://github.com/Jason2866
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploy.yaml@c6e1f191a3551f756edfe43d694a3ef95d4b36ac -
Trigger Event:
push
-
Statement type: