Format-preserving TOML parser
Project description
tomledit
A format-preserving TOML editor for Python, powered by Rust's toml_edit.
Parse a TOML document, modify it, and write it back - comments, whitespace, and ordering are preserved.
Quick start
Given a TOML file like this:
[project]
name = "my-app"
version = "1.0.0"
# Search terms for the package index
keywords = ["python", "toml"]
[project.optional-dependencies]
dev = ["pytest"]
You can parse, modify, and write it back - comments, whitespace, and ordering are all preserved:
from pathlib import Path
from tomledit import Document
text = Path("pyproject.toml").read_text(encoding="utf-8")
doc = Document.parse(text)
doc["project"]["version"].comment = "# Bumped for release"
doc["project"]["version"] = "2.0.0"
doc["project"]["keywords"].append("important-keyword")
doc["project"]["keywords"].inline_comment = "# updated"
Path("pyproject.toml").write_text(doc.as_toml(), encoding="utf-8")
The result:
[project]
name = "my-app"
# Bumped for release
version = "2.0.0"
# Search terms for the package index
keywords = ["python", "toml", "important-keyword"] # updated
[project.optional-dependencies]
dev = ["pytest"]
Truth in advertising
It is intended that using a Document feels just like using a native Python
dictionary, and that the Items you get from it can also be treated as ordinary
dictionaries and lists and suchlike.
Under the hood, though, every Item is really a path back into the shared
document.
This is mostly invisible, but sometimes the implementation leaks out. In particular: because items are paths, they can go stale when the document changes underneath them.
doc = Document.parse('arr = ["a", "b"]')
first = doc["arr"][0] # a path to arr[0]
doc["arr"][0] = "changed" # mutates the document
print(first) # RuntimeError: this Item is stale
The item that performs the mutation stays valid:
arr = doc["arr"]
arr[0] = "changed"
print(arr) # still works - arr itself did the mutating
If you just need the plain Python value, grab it with .value before the
document changes:
first = doc["arr"][0].value # "a" - a plain str, not a path
doc["arr"][0] = "changed"
print(first) # still "a"
Project details
Release history Release notifications | RSS feed
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 tomledit-0.11.0.tar.gz.
File metadata
- Download URL: tomledit-0.11.0.tar.gz
- Upload date:
- Size: 81.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4aedbd0fa386fbd4f7d772b346f65d4c6d8080253e482b708f87aefc29071e7a
|
|
| MD5 |
b7978d3072f80744b0720a6f39ddb0fe
|
|
| BLAKE2b-256 |
819e4fa7818359fef99f3c597d7ac471dbb3f5fa584c052b0d50a11a41319bf0
|
Provenance
The following attestation bundles were made for tomledit-0.11.0.tar.gz:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0.tar.gz -
Subject digest:
4aedbd0fa386fbd4f7d772b346f65d4c6d8080253e482b708f87aefc29071e7a - Sigstore transparency entry: 1136959416
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 420.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 |
4ad2f2c34a6b3fdb0ff203bab5b3845bdca09ece0a8d1413566e3b398175a122
|
|
| MD5 |
522f83ba7941a4116d46cbe723def62d
|
|
| BLAKE2b-256 |
d8103a9af15468405108e6a7662d30181b0fcfa913763077bdc59867acfe523d
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-win_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-win_arm64.whl -
Subject digest:
4ad2f2c34a6b3fdb0ff203bab5b3845bdca09ece0a8d1413566e3b398175a122 - Sigstore transparency entry: 1136960727
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 431.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 |
7192c5316552bef332b2273a4f35a252f06288f2ecdcb4d5c1a4b4050aaf0947
|
|
| MD5 |
4049ea874bfbf6b71764e5c17aee1a76
|
|
| BLAKE2b-256 |
dcc64b49a9155389936862228c71a73a0ad177fb8d443b3fb132b3bfdf928e67
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-win_amd64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-win_amd64.whl -
Subject digest:
7192c5316552bef332b2273a4f35a252f06288f2ecdcb4d5c1a4b4050aaf0947 - Sigstore transparency entry: 1136959713
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-win32.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-win32.whl
- Upload date:
- Size: 401.5 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
268f410369fab66207bea4a420ad5282f0d37d9b66eeff3116e4871f067ce78d
|
|
| MD5 |
9c1abb6f8299d235c51190785228c8ac
|
|
| BLAKE2b-256 |
65fdd2e185ad6ea9bf199bfb1b367ddd178c11d759e826b9bcf2a058cf8e7911
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-win32.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-win32.whl -
Subject digest:
268f410369fab66207bea4a420ad5282f0d37d9b66eeff3116e4871f067ce78d - Sigstore transparency entry: 1136960938
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 811.7 kB
- Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97a5f8f0791f29ff9b497bee7d9b6ec2443f4ff943c62df8488ded3b0419e536
|
|
| MD5 |
349d0a1eca53e0e4b29a841e852bcc61
|
|
| BLAKE2b-256 |
152b4e6c0170e31ceed6c0960874999f5d0d077758ef2c49398cb9f71dee1d0e
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl -
Subject digest:
97a5f8f0791f29ff9b497bee7d9b6ec2443f4ff943c62df8488ded3b0419e536 - Sigstore transparency entry: 1136962024
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 776.2 kB
- Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8918d5d9a6ad89debae0910a979cc8f62ff34be52279bae48c0eb0154514420
|
|
| MD5 |
b99d6b52682b98eea759227479b727a3
|
|
| BLAKE2b-256 |
97e867e7409486ca702cef15b4a6d38f8afec6aeadd2ccf62c344a8bbe8d2561
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl -
Subject digest:
b8918d5d9a6ad89debae0910a979cc8f62ff34be52279bae48c0eb0154514420 - Sigstore transparency entry: 1136962769
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 604.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c35e5b2affd4ef9309a0363eb9afa491ad6903486492beb8a754ad67f47c6a3
|
|
| MD5 |
65699503674edc32e837e2278fb0616a
|
|
| BLAKE2b-256 |
f28bba38b26ae8c9c6386a9c44e7e5ad7167bc8470d9133e28bc8fd00780bc06
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
3c35e5b2affd4ef9309a0363eb9afa491ad6903486492beb8a754ad67f47c6a3 - Sigstore transparency entry: 1136960060
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 635.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d3f1dfa6d994c412d17865c7bcc9cb564701a186ba30bec1b299fd9394b9e4b
|
|
| MD5 |
3500a2192af69b407f281aed44b39b0e
|
|
| BLAKE2b-256 |
123120e6cf28f590b02788e1b6b2a85356a5aa3156e71107533987524aafd643
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
7d3f1dfa6d994c412d17865c7bcc9cb564701a186ba30bec1b299fd9394b9e4b - Sigstore transparency entry: 1136962101
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 754.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
513dd60a1b249b8a92e8406dcd5c47784ce47ce7bf34e07e8d4a749e32a9b536
|
|
| MD5 |
d6cb7770c52ee5064c68cb99dfae60fe
|
|
| BLAKE2b-256 |
6d1a185577e58e0229a24d00c8e4c700c16ef7543ced397eadc3687e4ad9cece
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
513dd60a1b249b8a92e8406dcd5c47784ce47ce7bf34e07e8d4a749e32a9b536 - Sigstore transparency entry: 1136962359
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 604.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
698a3feae1dc70986edaf4951a00f9c3cbc90c906078828db484af74584e652e
|
|
| MD5 |
a1023362a61a08e38009aff1a944a351
|
|
| BLAKE2b-256 |
1f46229f3d8a7b146fdce3e1b4a0b2a42b843bfa504846437e33e7da704afa18
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
698a3feae1dc70986edaf4951a00f9c3cbc90c906078828db484af74584e652e - Sigstore transparency entry: 1136959474
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 600.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
801b2d248ae165de133c92de943d2d7c56a1252aa56b8a0efb95cefbe92ed33a
|
|
| MD5 |
666213a41fbd79cf69b0a3007b7564ed
|
|
| BLAKE2b-256 |
dfba2a904228d35bbdf6b979c71ff6183fc3c0fcff2f9b78f58d2c89b5a61ae8
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
801b2d248ae165de133c92de943d2d7c56a1252aa56b8a0efb95cefbe92ed33a - Sigstore transparency entry: 1136961949
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 657.7 kB
- Tags: CPython 3.14, 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 |
51511b19c210ec037d64858dbaab4bb7244d11893ca6177e9d8af8bb2a8202b6
|
|
| MD5 |
d1fcb76cb5d90e421b1b835f81a22224
|
|
| BLAKE2b-256 |
66cfec08b73d9be63e6d7b884e42e1f14641504f830b97ee3f6ce9caf47f5153
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
51511b19c210ec037d64858dbaab4bb7244d11893ca6177e9d8af8bb2a8202b6 - Sigstore transparency entry: 1136960115
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 563.6 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 |
bea5bf9e0d260e1f1c068c11ca2fe22cb36f48b15ebb5e8f4fe0a0f7ed8e6d49
|
|
| MD5 |
a1184520f8ec5ac8b4e63c15f7e62582
|
|
| BLAKE2b-256 |
a1ef79fe4af179d9ffe4e629ae51bc0cda115d6e7a16d1d823bc49c01a7e129f
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
bea5bf9e0d260e1f1c068c11ca2fe22cb36f48b15ebb5e8f4fe0a0f7ed8e6d49 - Sigstore transparency entry: 1136960683
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 573.6 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f517dac4e67beff559f590f0ec6d44866cdea3a60a53af6046e1e190c1750ac
|
|
| MD5 |
9b8c1d33732849ff1c8e0180532ca965
|
|
| BLAKE2b-256 |
93e2085a0db24deea118649bb4f2c1df0bd156ae2b764c6bab8b56d97c00a495
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
1f517dac4e67beff559f590f0ec6d44866cdea3a60a53af6046e1e190c1750ac - Sigstore transparency entry: 1136959775
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 424.5 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 |
6f97055d90ca5aa00870c2172f5d7d737d06031a8022d5147e23a09a25c4d14f
|
|
| MD5 |
2fd2725a0be6f0924b39602b725ad30b
|
|
| BLAKE2b-256 |
f0d3d88bdcb11be091589fb0a55407c576815d9179b4c394ac2264dc09fcdd07
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-win_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-win_arm64.whl -
Subject digest:
6f97055d90ca5aa00870c2172f5d7d737d06031a8022d5147e23a09a25c4d14f - Sigstore transparency entry: 1136959963
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 437.1 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 |
0d4b4592eedd3ca0d570f674735042718371b6fc07b5d04103624215a7844742
|
|
| MD5 |
ad0cf85ec7d4fe1c18f32ab8bf4a635e
|
|
| BLAKE2b-256 |
da5df46b695bd26235e358e6e765a79596531151742b9c7809347e5780aaf035
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-win_amd64.whl -
Subject digest:
0d4b4592eedd3ca0d570f674735042718371b6fc07b5d04103624215a7844742 - Sigstore transparency entry: 1136961313
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-win32.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-win32.whl
- Upload date:
- Size: 406.2 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e52d921dce003cb3111835a9ce7e471b0e4002d6c5ea935c78e1843c3b4b4225
|
|
| MD5 |
8c39ab22ce9d1790f9f5a9f41e247076
|
|
| BLAKE2b-256 |
ecc48bd353313557fd75f6c19be13c6dc3f044826c06682d6541a1a08fc07715
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-win32.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-win32.whl -
Subject digest:
e52d921dce003cb3111835a9ce7e471b0e4002d6c5ea935c78e1843c3b4b4225 - Sigstore transparency entry: 1136959529
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 818.9 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48fb02aa8dcb73c87b8429c922dd2cb0182fa4cbc9edd7d62d6f15181da37771
|
|
| MD5 |
82e2164bd8bddd4ba6fed885f89a7c6f
|
|
| BLAKE2b-256 |
1441f03e2308453e7dc122fccc86189965408ad533ef60e5d22e48589241bf49
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl -
Subject digest:
48fb02aa8dcb73c87b8429c922dd2cb0182fa4cbc9edd7d62d6f15181da37771 - Sigstore transparency entry: 1136959609
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 781.4 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
438315f61f87bb3802b6c204bd6a5ae1e30669001f3983ae4c40517c0d7b8b28
|
|
| MD5 |
bbab0623abc34fb7f953bdac00ecfc89
|
|
| BLAKE2b-256 |
cd1d88d52f9cb143557e2f60e96d34d864817d44f6991b415dc435b9307bc88a
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl -
Subject digest:
438315f61f87bb3802b6c204bd6a5ae1e30669001f3983ae4c40517c0d7b8b28 - Sigstore transparency entry: 1136962819
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 611.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd911fe9e39181ec92dbc65640ecef3d5fd6c1c4080a5f9a37152fe0a271396f
|
|
| MD5 |
578f46f625f2cee0442011bd801223fe
|
|
| BLAKE2b-256 |
27ae5c28743bcd1d2bab997dc5b85982479f93ab4f13a6123d89c6c2d233e48f
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
bd911fe9e39181ec92dbc65640ecef3d5fd6c1c4080a5f9a37152fe0a271396f - Sigstore transparency entry: 1136959663
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 641.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
288aab4c264857cf05a292fc0b66490c50e0754f55611fe6c50388a7cec0115a
|
|
| MD5 |
ca5d74288a51f61904600d363f1c24d4
|
|
| BLAKE2b-256 |
43b17760b69fabf23b959b96d187597026c04b6c8267e32ce203a94de7225bc9
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
288aab4c264857cf05a292fc0b66490c50e0754f55611fe6c50388a7cec0115a - Sigstore transparency entry: 1136961128
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 755.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
141c6aa0268196db68250a28313d18a4d44a74d26e49177bf1b8354ed20f3b69
|
|
| MD5 |
24b5418e1e49763af20b6fe2a42bd813
|
|
| BLAKE2b-256 |
6d9cec9d1a022afa9a7e25932972e2c9317524d063e2e5c3ac2a04255d9d84f0
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
141c6aa0268196db68250a28313d18a4d44a74d26e49177bf1b8354ed20f3b69 - Sigstore transparency entry: 1136960389
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 610.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1375b59dbdfbef784f4fb4a241fecdd2545aea8166273c85fb7c7fc62c0337a
|
|
| MD5 |
305c8e43b6489ec85c83a2fbaa0310cd
|
|
| BLAKE2b-256 |
b011996e7ef4b9739c47a491c564651006427ab79fd371ae6d599e8384a7c7d5
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
b1375b59dbdfbef784f4fb4a241fecdd2545aea8166273c85fb7c7fc62c0337a - Sigstore transparency entry: 1136960213
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 606.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3880ee46530e7cdbc0d2cb9ef9d922d20f2e49433379fa37e905c647114a3bb
|
|
| MD5 |
6bc6dc421ef8bf6bab517e89e6b4e0e1
|
|
| BLAKE2b-256 |
48f0815373d3addfb79701073045228a6fff61685bf69f2a8ff94f29c4b4b100
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
f3880ee46530e7cdbc0d2cb9ef9d922d20f2e49433379fa37e905c647114a3bb - Sigstore transparency entry: 1136960768
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 664.1 kB
- Tags: CPython 3.13, 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 |
4dc14677927b11d4b9f4538ee927aa32de6476c4bea91506cb87ec8744b12372
|
|
| MD5 |
8f01b0bb8ee4fc9b2e382a0868187093
|
|
| BLAKE2b-256 |
b52b852e1124dfde6f262edbaf6058be120bddda44e7a99a4513e52887168d90
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
4dc14677927b11d4b9f4538ee927aa32de6476c4bea91506cb87ec8744b12372 - Sigstore transparency entry: 1136961399
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 567.5 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 |
1f09f8f586fa4272c16361350355ed9f5f0272082a62ffdb0298aeab038ce223
|
|
| MD5 |
37ac695e1cdb2e23d9757163b84c8292
|
|
| BLAKE2b-256 |
d3c0ab5fa3b7e621e0f27c1f243f27d160cec18155b3d59b8d2ba17f4cbf5d21
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
1f09f8f586fa4272c16361350355ed9f5f0272082a62ffdb0298aeab038ce223 - Sigstore transparency entry: 1136961691
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 580.8 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86275576c59a89df7d34712f83032269826f39362d11abc6f54411d96299cf77
|
|
| MD5 |
65293ff92f92c25b77719ea915bb1e3a
|
|
| BLAKE2b-256 |
008d8f92ef14d825e7850b7880cb77e8b14aed9b85adddfc4ee3e9c3b9e43add
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
86275576c59a89df7d34712f83032269826f39362d11abc6f54411d96299cf77 - Sigstore transparency entry: 1136959842
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 425.1 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 |
7f73f69e5cfb1bc0f1e4769292d68436d0c97ef77ebc2b263fa0ba9003c766c4
|
|
| MD5 |
60d6dd975cc10bbf92a51cd119aa1275
|
|
| BLAKE2b-256 |
65beb2233cebcc23bc53bdaa7af537015dc0390e6b0b8b62e4953e28c705bb0e
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-win_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-win_arm64.whl -
Subject digest:
7f73f69e5cfb1bc0f1e4769292d68436d0c97ef77ebc2b263fa0ba9003c766c4 - Sigstore transparency entry: 1136960864
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 437.4 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 |
5b0781d1c1b21da569b2b0c853121f2a15fb3fe700f88659dff838dfd8e7a4d7
|
|
| MD5 |
f78a037acdf771eb9a890886d0de7d62
|
|
| BLAKE2b-256 |
6d5891c952be0155e140931fca5b6e8b4471a9ef9220c7f29621f1ab9c884652
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-win_amd64.whl -
Subject digest:
5b0781d1c1b21da569b2b0c853121f2a15fb3fe700f88659dff838dfd8e7a4d7 - Sigstore transparency entry: 1136962429
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-win32.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-win32.whl
- Upload date:
- Size: 407.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af132ef8b33b5d9653960f87a1d76d4c27c15ca2f0f391df3c006efbf9d5bb55
|
|
| MD5 |
ce27e38beee5384213b09ec2b60c29f4
|
|
| BLAKE2b-256 |
117a4a573d93a0afa17c446f756720928a89ecd40aeed9564a276c2ce1901be4
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-win32.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-win32.whl -
Subject digest:
af132ef8b33b5d9653960f87a1d76d4c27c15ca2f0f391df3c006efbf9d5bb55 - Sigstore transparency entry: 1136960812
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 819.1 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
498425fbf658cd5fe011d956f77326ec92fae207933c74535d0be1518cbb0586
|
|
| MD5 |
7ba562b09d8527dca5927b1d0cba9f49
|
|
| BLAKE2b-256 |
ac5e6f2e42519f88f9e60ac0048fadea6e3176ac00dd1c0a5e2e9db6c5d3e2ae
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl -
Subject digest:
498425fbf658cd5fe011d956f77326ec92fae207933c74535d0be1518cbb0586 - Sigstore transparency entry: 1136961643
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 782.0 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50cc8e7a8bace493e0d3d48674582d609e83fcd1f5abc798efbbaaf0e33f128d
|
|
| MD5 |
15cc4d1ac3a959597b7966cf9aee707d
|
|
| BLAKE2b-256 |
083955004c215cfcb418c5d60b27052c80ff086ac178e5e86199109bb1aeead6
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl -
Subject digest:
50cc8e7a8bace493e0d3d48674582d609e83fcd1f5abc798efbbaaf0e33f128d - Sigstore transparency entry: 1136963058
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 611.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
835bf403eee9836acb74ef23c2a399424260d9760178d91273ce66a05de561a4
|
|
| MD5 |
589e9b679c32cb55f28b4cfcbb9efbb2
|
|
| BLAKE2b-256 |
1508590eea06d3497eaaf4a501427ae46401e66a23de10487ffe215ed7679e30
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
835bf403eee9836acb74ef23c2a399424260d9760178d91273ce66a05de561a4 - Sigstore transparency entry: 1136962895
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 641.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5fb93da10bab275fd46911511eb828c9eec6b7a066e23f194cc8614d60b433f
|
|
| MD5 |
cd7db27ca83e6b2f475caab5275ec94a
|
|
| BLAKE2b-256 |
e65412bbc11165b6a10377df8f4d323fe62440f6b18968276589df157676b1d0
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
b5fb93da10bab275fd46911511eb828c9eec6b7a066e23f194cc8614d60b433f - Sigstore transparency entry: 1136961597
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 756.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b397d9cdc26d6621010798665f10487cbe3762b27a0b915c1aef84463be1a980
|
|
| MD5 |
383a4426d2aa03e938cbb15c90597e42
|
|
| BLAKE2b-256 |
5d73e32f4579e4173df0265d8af81bdb6093907eeb605fb287a07b71ce64291c
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
b397d9cdc26d6621010798665f10487cbe3762b27a0b915c1aef84463be1a980 - Sigstore transparency entry: 1136962493
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 611.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9010ec8f6ce89947c47007b1fbe89622952d7dcbaf03b1dda25b64be93a40387
|
|
| MD5 |
bf557ec09c455c0f375d98f7b40eeb40
|
|
| BLAKE2b-256 |
d268c79e16a6976df0ebd490c1a66391363f82bcd1677b5c403e168d68c0771c
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
9010ec8f6ce89947c47007b1fbe89622952d7dcbaf03b1dda25b64be93a40387 - Sigstore transparency entry: 1136960013
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 607.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0a59b8213c161f9448a64673f4f4792a9b1cb2d06cdc59375ec7e85dc9d0f3d
|
|
| MD5 |
25db93a39ca9e39b14b1010980699b52
|
|
| BLAKE2b-256 |
f9434dfb7a0748725b01249b7eb3cd6c3ded192ec1ce19838f17ff373f9741e5
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
d0a59b8213c161f9448a64673f4f4792a9b1cb2d06cdc59375ec7e85dc9d0f3d - Sigstore transparency entry: 1136960448
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 665.0 kB
- Tags: CPython 3.12, 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 |
83e4d482296615bbecf46dbe12d20fa91c96334b0d05501094a8f68a5021a5a5
|
|
| MD5 |
80461e023bf6813ca2645fd77f459988
|
|
| BLAKE2b-256 |
3d3b362f6c1334d88ec39ac0b02a31df205ac1857b81d90e6c47eee75f9bdfcf
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
83e4d482296615bbecf46dbe12d20fa91c96334b0d05501094a8f68a5021a5a5 - Sigstore transparency entry: 1136961178
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 567.9 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 |
475841b7f66e62cae6da6bbcc67f7250b3d8a2c57331c57cdb460dc2b0e5e56d
|
|
| MD5 |
8111e8e01cac78485fee93ec6034ff5d
|
|
| BLAKE2b-256 |
9a8e8e699db535adb11a2c50e6dd5ba2c286d30058b8f5824159f47285ad5c4d
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
475841b7f66e62cae6da6bbcc67f7250b3d8a2c57331c57cdb460dc2b0e5e56d - Sigstore transparency entry: 1136962710
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 581.0 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a085ffa59174ba244debec3f523c5dbc6192074617dd32a47ed5ebda90bd40e
|
|
| MD5 |
5f2b3dbc46aa5b0925c392a62f9d8323
|
|
| BLAKE2b-256 |
a6d34edd284775e64a156835dc09dc64ca9f686e839b2a9a50891be651b9b8fe
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
4a085ffa59174ba244debec3f523c5dbc6192074617dd32a47ed5ebda90bd40e - Sigstore transparency entry: 1136963011
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 427.2 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 |
b06bb74c0947b6f7fe75645fe1c040256cb679d57f1f0dda54c292b2d71cc8de
|
|
| MD5 |
e69cc7f0ed10d14b56bbded667ca78e0
|
|
| BLAKE2b-256 |
249cd2ac8961d040df7214aa2a123a3285bd511d510d5d2273ca634b29186ce4
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-win_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-win_arm64.whl -
Subject digest:
b06bb74c0947b6f7fe75645fe1c040256cb679d57f1f0dda54c292b2d71cc8de - Sigstore transparency entry: 1136962064
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 438.3 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 |
62cde2a7a996c059918ba8054269bdc38b2b033604482755f0d6ebe71550e03f
|
|
| MD5 |
cda73ca14d0c932a11ac0b994161e77e
|
|
| BLAKE2b-256 |
edefceaf3ada6775011c939a963f15184d417c1c54020ddb3d2b3f4a9f1ae72d
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-win_amd64.whl -
Subject digest:
62cde2a7a996c059918ba8054269bdc38b2b033604482755f0d6ebe71550e03f - Sigstore transparency entry: 1136961448
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-win32.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-win32.whl
- Upload date:
- Size: 410.3 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a0525a7b1ab2ed622399cf55bcb93f06b8c9f8a70faab19d5d9f5b15455ce1e
|
|
| MD5 |
94c99f32832c0b74761aa14f026b4c74
|
|
| BLAKE2b-256 |
011930075a6651d9dafc163db950f8a8087f2eedd34fe08839d5a55c82beaccd
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-win32.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-win32.whl -
Subject digest:
8a0525a7b1ab2ed622399cf55bcb93f06b8c9f8a70faab19d5d9f5b15455ce1e - Sigstore transparency entry: 1136962160
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 822.4 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f480ccf8c41292e8274a9e911176663f82a7eef4031b7d1ef61a36134461a274
|
|
| MD5 |
630eb234a34937ce7894ea277eda2b3f
|
|
| BLAKE2b-256 |
a8772be2ccb1fbc5000e5f10bb4c631601026b0a341540aa40e0d16f92500a2b
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl -
Subject digest:
f480ccf8c41292e8274a9e911176663f82a7eef4031b7d1ef61a36134461a274 - Sigstore transparency entry: 1136963115
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 784.7 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ed79e00bbbb641357e76068c2acc4e983ff75282242f9f4f66d069080f5989f
|
|
| MD5 |
fd377d72a783797c610448a8e6ad4675
|
|
| BLAKE2b-256 |
94671bf26e6abe016e3b710f8b454b07120056144ee1ed3e387171d0f56818f5
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl -
Subject digest:
6ed79e00bbbb641357e76068c2acc4e983ff75282242f9f4f66d069080f5989f - Sigstore transparency entry: 1136960260
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 614.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1fd8faaecf5f20c9b46544557792c142c954f4ce9c2c21b0e22152bb8c73493a
|
|
| MD5 |
d2dc143690cadb99068826f8679b5ccf
|
|
| BLAKE2b-256 |
8ecb3771eeb00551674d35093bf8341c62c03c06965ccc824a3a5a57d14c2771
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
1fd8faaecf5f20c9b46544557792c142c954f4ce9c2c21b0e22152bb8c73493a - Sigstore transparency entry: 1136961364
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 643.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
568988cd3b6bf2137695bc308b91e086dbe371546e1b04e8b46469dca97211f2
|
|
| MD5 |
dfe1b69f375a263ea490b4224eb8cb60
|
|
| BLAKE2b-256 |
5c53dc04f608358e2933884b027c5c73fd92289fd5df91865b3e3b2326767098
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
568988cd3b6bf2137695bc308b91e086dbe371546e1b04e8b46469dca97211f2 - Sigstore transparency entry: 1136960977
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 760.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb86e5bb0f3348876393cee653b32ada825bf8ab1364cca8ecdd864407180b1c
|
|
| MD5 |
4855b0359cb6008dd227d04ac6e87c24
|
|
| BLAKE2b-256 |
0eb5bcc829ebcd8698e19447c8128970f9dac2028d688bbcc80f0808977d43fd
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
bb86e5bb0f3348876393cee653b32ada825bf8ab1364cca8ecdd864407180b1c - Sigstore transparency entry: 1136961882
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 614.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6a6799d6084817ddb37d6e8730af29716a02243b7dd976e306db6d3f36c5e4f
|
|
| MD5 |
3904607c1784f954842d7dbb1ce2c863
|
|
| BLAKE2b-256 |
5397ea4791dfaa9f73b33b12b8cf44d52cc01f2b648e09fd86432fd5d9e87ff9
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
c6a6799d6084817ddb37d6e8730af29716a02243b7dd976e306db6d3f36c5e4f - Sigstore transparency entry: 1136961752
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 609.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad5d3d01dba0c4403011167b359c5cc1d971e73fbae43d77264fc94d732072bc
|
|
| MD5 |
a832c11a41641a2e8379a2c3fc563f31
|
|
| BLAKE2b-256 |
172026c82be5ef2e5207a8bcee5e81e5fb09666177a3a2961288c04a9ec1ed11
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ad5d3d01dba0c4403011167b359c5cc1d971e73fbae43d77264fc94d732072bc - Sigstore transparency entry: 1136960319
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 668.5 kB
- Tags: CPython 3.11, 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 |
92cab56f995e57a78eca0ed67b4a0e9b7c6ece57a94455de480688587a768e8c
|
|
| MD5 |
a01b8e4fe92c25811e0c50ac9f26ad81
|
|
| BLAKE2b-256 |
7183fa66b976ef8648cab14777911e973599b86a2fbff3c76c8c0904b2a3c4c1
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
92cab56f995e57a78eca0ed67b4a0e9b7c6ece57a94455de480688587a768e8c - Sigstore transparency entry: 1136960627
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 570.0 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 |
4eaf623964a2c932fdda58f983aca3e6d332b8828c377d53ba946673cfc45a42
|
|
| MD5 |
a0b74b96aac93339a3d37437a9c00e18
|
|
| BLAKE2b-256 |
1c70d349b55eafbfa6d178d694d64271e7a632b8239a53e4fafb291a025f062f
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
4eaf623964a2c932fdda58f983aca3e6d332b8828c377d53ba946673cfc45a42 - Sigstore transparency entry: 1136961255
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 583.8 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdd8d42af424700bfcf2047402eb643adcd3446902ccebf4084e2fbdb178775e
|
|
| MD5 |
8d0fddca26da088973c13269ac6ba7de
|
|
| BLAKE2b-256 |
d341d3e26ad48970aa3bb29fb49da9ae8f91257683cfd8c0e8c4f854d2fbef7e
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
bdd8d42af424700bfcf2047402eb643adcd3446902ccebf4084e2fbdb178775e - Sigstore transparency entry: 1136961028
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 427.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 |
b1c3c5f7c6ca36676fdada9f6b783458a0d9bbddde56f8b2117797146863c40e
|
|
| MD5 |
f12b4302e1b68bf35fcd058611a271ee
|
|
| BLAKE2b-256 |
3c81068ca44a0f147a2b40ee4b13a3653072b02bf7beb92296ca6ed6af6175ad
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-win_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-win_arm64.whl -
Subject digest:
b1c3c5f7c6ca36676fdada9f6b783458a0d9bbddde56f8b2117797146863c40e - Sigstore transparency entry: 1136961830
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 438.1 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 |
4b097c29252992798c145614b243955b16e82cb68f9eb3220f40547215b26a84
|
|
| MD5 |
2c6f03c9bddf161b06611331bd14d3a7
|
|
| BLAKE2b-256 |
edbc6e919bd912c01fec492cc46f0a3bc9bdf882f50ecebf99b00f1b258a7561
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-win_amd64.whl -
Subject digest:
4b097c29252992798c145614b243955b16e82cb68f9eb3220f40547215b26a84 - Sigstore transparency entry: 1136962958
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-win32.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-win32.whl
- Upload date:
- Size: 410.3 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
713d56b642794be36e23999c3897e8906de7c129a5c8573bd8ffe20da196c40f
|
|
| MD5 |
5c9d22411c4b35db68b4ef3a09e397b1
|
|
| BLAKE2b-256 |
9b24b1bd047d838528c5d906e2910e19c19b8f3fb297e7479d65fae602daee40
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-win32.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-win32.whl -
Subject digest:
713d56b642794be36e23999c3897e8906de7c129a5c8573bd8ffe20da196c40f - Sigstore transparency entry: 1136962581
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 822.7 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c94f2c3a199740d02f6f22b42cfe2a9bc3cf3d1edf4490d0960f8e756d54c979
|
|
| MD5 |
1196105b302c9dd7f9d4a8b9ea7de71e
|
|
| BLAKE2b-256 |
02452337ca10a33a82ec8583a3e4b884f4bb17bdcf4d3e3e48a82724eb6ed17d
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl -
Subject digest:
c94f2c3a199740d02f6f22b42cfe2a9bc3cf3d1edf4490d0960f8e756d54c979 - Sigstore transparency entry: 1136961557
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 784.9 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfa28e58169d854558fdfcf0f09d33d21e516bb4176807efff2f46edc74b6a8c
|
|
| MD5 |
3f01a4b6bf1802b862a58b92d6d628a9
|
|
| BLAKE2b-256 |
f2a7fb1d191d931753b0fe77e042d5dda30d8bcbf3582d15c68a3eaa60a02002
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl -
Subject digest:
bfa28e58169d854558fdfcf0f09d33d21e516bb4176807efff2f46edc74b6a8c - Sigstore transparency entry: 1136961089
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 614.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9d1aa87a3c8cd07c23c48119643702c421e40c8c515c3c4970d35e27bf95222
|
|
| MD5 |
64b47eeef86c82f7bb29425e63ec110a
|
|
| BLAKE2b-256 |
6dac2aa3920ffb3171ecc78ac9caf81e991c25a0963245b2bdaf1efb6f85c210
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e9d1aa87a3c8cd07c23c48119643702c421e40c8c515c3c4970d35e27bf95222 - Sigstore transparency entry: 1136961505
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 643.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c222759386e44fc46394dee5dc2294417e2a8cb59769438f6236cebd6746fc4
|
|
| MD5 |
70dac5b7a70aa5a8d30284ff37bb653c
|
|
| BLAKE2b-256 |
48e41dd7a0997cc6a1afeeb3e49a284276cfe56a9d500401d29fd8196752a37f
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
3c222759386e44fc46394dee5dc2294417e2a8cb59769438f6236cebd6746fc4 - Sigstore transparency entry: 1136962220
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 760.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e0401e0ed74dfc60f71a6c52e23f1cc1f65ceb3309c0f1fdd9526442f10cc32
|
|
| MD5 |
8ec28e579bade397b826bcf78ff812d1
|
|
| BLAKE2b-256 |
f365e29833c9c8e2999e7073d7950ee355e95042160f4fa4165e01ae08f395cf
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
2e0401e0ed74dfc60f71a6c52e23f1cc1f65ceb3309c0f1fdd9526442f10cc32 - Sigstore transparency entry: 1136960180
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 614.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
335de9e2b5d6274d381f981443c2f36bd06a657fa505266d44852fa98f25abdc
|
|
| MD5 |
6a918c59d7f5928c2125a029810e8fb6
|
|
| BLAKE2b-256 |
50e8fa39f8b0d9dddeaf02953e1597952e9e79895cdd8bb950daafc128f530b2
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
335de9e2b5d6274d381f981443c2f36bd06a657fa505266d44852fa98f25abdc - Sigstore transparency entry: 1136962658
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 610.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37446e690200abc220dcbcd7bc84e50d1689ad9d72e0656d14dea92c429ba727
|
|
| MD5 |
16dbe359f2f3c13a7fc115a1024f9350
|
|
| BLAKE2b-256 |
f7e1d4090888360f8b8518c0b019d419a4c551815c11154a0391431ecca9ca8c
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
37446e690200abc220dcbcd7bc84e50d1689ad9d72e0656d14dea92c429ba727 - Sigstore transparency entry: 1136962300
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 668.8 kB
- Tags: CPython 3.10, 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 |
75d9be59f705b22703e16b6c4457e6a2d48a7a45f8c9b99d206007ad7d8ec914
|
|
| MD5 |
6322a1afe435b4c463cf97e974b043ca
|
|
| BLAKE2b-256 |
9690045a6e461b394c732b356e25b0e191762167d372a1a37489f6f57c8525e3
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl -
Subject digest:
75d9be59f705b22703e16b6c4457e6a2d48a7a45f8c9b99d206007ad7d8ec914 - Sigstore transparency entry: 1136959902
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 569.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 |
b8359b31320e41a5636fe7c71f3b6ee30c142d52435c06a971f4db1e1f8ed037
|
|
| MD5 |
444bbea105ab29b28e11a882f7b65e02
|
|
| BLAKE2b-256 |
2a4d78418b73a79dd35745e44e4b425743b1bd819ee5b744e53e97ff141fd427
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
b8359b31320e41a5636fe7c71f3b6ee30c142d52435c06a971f4db1e1f8ed037 - Sigstore transparency entry: 1136960563
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type:
File details
Details for the file tomledit-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: tomledit-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 583.9 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ac990c275738da36066881ef37ebdee77728b8dd0fe2f86e152ee5af1136da6
|
|
| MD5 |
d047f3b15d4d8a4bc6feb036c8e31c82
|
|
| BLAKE2b-256 |
7988eef4bb67f87e909a06441ae1fff5fa59d801584a14ee922a30458fe28224
|
Provenance
The following attestation bundles were made for tomledit-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl:
Publisher:
publish.yml on dimbleby/tomledit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tomledit-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl -
Subject digest:
1ac990c275738da36066881ef37ebdee77728b8dd0fe2f86e152ee5af1136da6 - Sigstore transparency entry: 1136960499
- Sigstore integration time:
-
Permalink:
dimbleby/tomledit@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/dimbleby
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f9cea20edd449c0a647906e48f78bf77709a9ef5 -
Trigger Event:
push
-
Statement type: