Skip to main content

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(str(doc), 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


Download files

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

Source Distribution

tomledit-0.9.0.tar.gz (64.1 kB view details)

Uploaded Source

Built Distributions

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

tomledit-0.9.0-cp314-cp314-win_arm64.whl (365.0 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.9.0-cp314-cp314-win_amd64.whl (376.1 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.9.0-cp314-cp314-win32.whl (351.5 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.9.0-cp314-cp314-musllinux_1_1_x86_64.whl (754.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.9.0-cp314-cp314-musllinux_1_1_aarch64.whl (716.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (547.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.9.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (576.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.9.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.9.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (544.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (540.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.9.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (588.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.9.0-cp314-cp314-macosx_11_0_arm64.whl (499.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl (506.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.9.0-cp313-cp313-win_arm64.whl (366.6 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.9.0-cp313-cp313-win_amd64.whl (377.6 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.9.0-cp313-cp313-win32.whl (352.8 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl (755.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl (718.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (548.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (578.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (690.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (544.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (541.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (588.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.9.0-cp313-cp313-macosx_11_0_arm64.whl (499.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl (507.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.9.0-cp312-cp312-win_arm64.whl (367.4 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.9.0-cp312-cp312-win_amd64.whl (377.8 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.9.0-cp312-cp312-win32.whl (353.3 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl (755.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl (718.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (548.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (577.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (545.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (541.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (589.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.9.0-cp312-cp312-macosx_11_0_arm64.whl (500.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl (507.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.9.0-cp311-cp311-win_arm64.whl (369.8 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.9.0-cp311-cp311-win_amd64.whl (379.4 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.9.0-cp311-cp311-win32.whl (358.0 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl (757.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl (720.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (551.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (696.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (549.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (544.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (597.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (505.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.9.0-cp310-cp310-win_arm64.whl (369.5 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.9.0-cp310-cp310-win_amd64.whl (379.1 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.9.0-cp310-cp310-win32.whl (357.9 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl (757.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl (720.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (551.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (696.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (549.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (544.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (597.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.9.0-cp310-cp310-macosx_11_0_arm64.whl (505.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file tomledit-0.9.0.tar.gz.

File metadata

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

File hashes

Hashes for tomledit-0.9.0.tar.gz
Algorithm Hash digest
SHA256 3cfb46f144362aba4f907327e1428cae67fb0b3c2101046b2d35af9796bb2b2a
MD5 ac895f27533da80e56cdfe00bc3cf7fe
BLAKE2b-256 c9869ad9f3fbe5345cb71254cd9eb82a44ea5d14f0fe9db796d4fba9b15370b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0.tar.gz:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 645320ee05db58a49ce9534a8db4b540f3cc08523aec26cf9159a6bf9fa0f9d2
MD5 9b58fe29aa8ec960ccc7b26e0eb2948f
BLAKE2b-256 ffd9b9329d0aee2cf59625557e41c98df0f32427e3b7d8a748eba4d83c113241

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 537eee19c1e3d661ae120890f8c0e7fdcbd4e93e4ed9757f823330b1a90fe603
MD5 4220a5beab53a335f9ae3cd3638f1aa5
BLAKE2b-256 42c9b178a6420620903891a9c9b910f07fd971d3d0c1097ae74e1b8a204a8d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: tomledit-0.9.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 351.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

Hashes for tomledit-0.9.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cb25c1889352eacc7b7d404c2bb1cb591beebb575821d0ab21eeecf2bc889a7d
MD5 af4dc640fcea807749651378c73d2481
BLAKE2b-256 6769020ed2ae7404e74b2777edeb46d99ef72cd027c1dc86bc2298b172f22083

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 334cca86feae7024cc827bb11080af7c07f5bdbbf8d6c75b35fe55c2ae182e20
MD5 97d919ff013aa01b2d0875a03d4f472a
BLAKE2b-256 3a20a3b8fca4c3f8af37b62ccbf5107a2d49d217bb835baf0c41612401760682

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a4dd1eb9aad421e769ce5dec4d4b69aa8a56474fc63c2f9fab78c32afa81d9da
MD5 887d07500b460d4d56c929b5cfec5b59
BLAKE2b-256 f472460b37e8ec95b82acd00ba6f70ba7e986601d24c34ea53c4eeffe8335a96

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b132b53a48b046739bd01f52ce4dcde57546bfd9b1abf05d92b019c26cca5c27
MD5 42fd475675596b5b37b6a01b47fed3a0
BLAKE2b-256 937af43a3f3ab1fbdc8c9d23f753e8b2a2278cdbd53813d0b2af660c923f314e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f7b7b10b5c2896a9f9a200dddd96182c08d695752c4691a74113be72020ac8d
MD5 77645773ebc25257c7972ccbd22cbcf7
BLAKE2b-256 0823c8057e1356507e874160d0b55977ad013288fa6bf8e27b0da22b1dc83a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08dd50bdec457d8c7a55b7616f97c2fea2ea336f6fb05c83973c1e02feec1829
MD5 f527fa8815f098d322b7f7850a717721
BLAKE2b-256 bc5d3fc6e57fa6803945044269cf40dbf9bce8925a2453e57455c690e143cfa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e75791f16c86b3b3267dce8b5d4f7e4bcf2d5673d627325149fa2c7a1e1d51d6
MD5 d7ace4f79e64e8e6b5425ef23127957d
BLAKE2b-256 01eb4f9db616e5a9a12d1f125c39010f01c10b38f5cfb384873a2010d93f9a01

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30eb917b9eaa16410a23d24284072b6d1ea1f3f378629ca9c50f6f54a27e0220
MD5 583e56b7ada6d6309ecc330e62f2b15a
BLAKE2b-256 e2fad398c481b7988e209fbea4b1653643ef613fad9ee1e6723568b14701b8bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8c37b7789aaca34a83acc58ebbf920d930be88397ab7ec1e49eee9d5f673235f
MD5 027a6533e3572dc83300b6fd6c887571
BLAKE2b-256 59b612539a62d8a5e6503e655195b590ab69b3d8ab2733c9085d15761a80f7f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b789bf4505f8316676d593719f8ae432c16f5c8ce5942f3e901dc8325c152e7b
MD5 30645d58d41d9ff75d4bc75288d3f6bb
BLAKE2b-256 e6c824d20efc0f95aa7d8abb9d4209bcd96b3da49604a077c2e9be5d46998574

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8539dd87d1a611e492c4256bfd78abc3620ae539fa3cd0477b9bcf20d3b9998f
MD5 04309dbcbf35eda923c29f28f85f000e
BLAKE2b-256 69fe1374c6e36c64b575c99d2e72cb64ed53d8e0aebe240e39eb1e4a561e0ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6037723a85744d08987136c2e1406680c1c7a8524ba6c8521f3747f9f5bfd86a
MD5 7534c9c989a11c317f4a74feac7855f2
BLAKE2b-256 418c6470b83c2948228c9e6e83fde42a4c58170a212e94f31ae18656b4a9c459

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ab796c6f39cfdf293533d8095fa27bdbe594344e4591b818caec75f8810d1d19
MD5 4f19a82f3cc277a6709cf7893ef18db3
BLAKE2b-256 d39ff6764b822257cf6b2769bd4545414bac26c4db90af4771a836396e8a8ae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: tomledit-0.9.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 352.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ad183231e38368e2521e1b38fe4f1867c5bd39c9bc95f50253a6830601cd49f0
MD5 dba5a9eea0f3a4de03de8e62edb44b20
BLAKE2b-256 1a3faf18554dfdfd705caf4bab3316b75072b52b9027729d10f82da8cf1d058f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 30e3131d73830e6835f7eb83f2df00b4efc31f69b792c51f88c2c78e26a692f4
MD5 7f097067fe349421b32c6442644f81fc
BLAKE2b-256 9f437fdde48669197a17df3edb711ebf133651fcb68dfc75a9b70f1951e5d872

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 658be5df537c2e900e7b7809876f57f37099000bcafbe52d8a4893e8fec7b997
MD5 c45316d5e195ccaa45eae1f1e4b8fd10
BLAKE2b-256 2c2802979614d7dc5d49eea0bfea9a45b6d544f7070bd1a51be05c8ee969630f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c6659be9d20694c19a339666538913e96285cdc1e1b13b69e7de24d95bdf718
MD5 aaf205d6204d13a7946eaa9e40f56130
BLAKE2b-256 5db357ff8c0f98c9771ccb7ae5385e21947ce8ad48aad8469c0e5764ad0ffc13

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5764b868c90bd1fc5c5935cb26ac28a8c31a9466db7c3527ac528d462bf511c
MD5 e4463bbba1409e72019d1dc1dc941d21
BLAKE2b-256 125d89e8fb19be5d9f3663010b506e0f32ce9caf779e35c24cbcec39ddc7c57e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bd98acb410e6737519f72249cc96a9fb75ce187c45ef80efa63dd6a0d919505
MD5 9954c5b98bc3517bf38ecc5b4f52ba4d
BLAKE2b-256 27af89ab1378ade9fb884178c1fefdb6ed0cf2e6748b38acd7ded3a5f3a0823d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18ee962eb992b521ad255d0bb9fd4b3e04081b94a14b52f2e75f60f9e9cdf4e3
MD5 9a61a1de3525fded4b17f4dade8500f2
BLAKE2b-256 a6c5b2e0f72274fb450500cfd1b273e5c6efc26bc9f6ea1f291a9fa7e5336251

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dcb305dccaa6a3353e44934743dd126f880ceb0782df1507560e9502b843351
MD5 78d28286975848acbae6307ba4751e7b
BLAKE2b-256 00bd67d49516e9b4ce01354796d17248b3dd95762af53db43ff8b8f78bc93ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a2264526ee601ff755363d08405e562fe9731b46b0500562a903670380b67f2
MD5 1e5592df3366655175f3420afa2a6c57
BLAKE2b-256 6d2ad639a841d95009e0b7874c76b5bccaf123400eac302a0eb796c25a1d994f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d61fea38e76080281c3d5727b99f598f650cd5ffeb1e0d69c750e5f0be4de8c
MD5 11363f0ae38f92c2f33771311745b898
BLAKE2b-256 045662f875d26138c9a9d01d92d5a20ba2b447e03a03167c1d2777deb4175999

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cc6d6a70a31a37973c33e102fac6ea97209a9a70927003b672e9162d6a42067
MD5 0d08b4c16023404a37821b1f08314e6f
BLAKE2b-256 0b6c54f79eccf3d7edffe67582386c82184bf94369007869b1a549b5c1cd9c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 58112dfe8be12c9c5d845af7b6266a3e982284eb13a5fbbaf47cd3f7adbd3388
MD5 e158905b3314bb578efaef10e75e9486
BLAKE2b-256 691141ee7de44cbc54a71cc37db61b0f9b7a90d3fd28f5d9e799525781987ca8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7fa17f5a9454ebf98804f1f45ad8a1db4f99e96506d5c150f85a7030b7b84693
MD5 daf5d509597dccad846a55fc7e4d81f8
BLAKE2b-256 63865d24c7d3ce08110e2f7eeb9f0339385167bd794bbcf606cd501441241833

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: tomledit-0.9.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 353.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c0f37c674dcc924961b81b1c438d668eb11cc34640571bd7e328d3e900448000
MD5 c27803cbd6a6e89e0b25082509cf8fbe
BLAKE2b-256 70ff1f42c2ae62bd0590894a251eed7d9ef2b3e468188c4554da4d7d23404ac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 038d0d8de9e794d355e27bf69cd7939631ac060c24269efa9c98da5663edf20e
MD5 e1c890ab2b9f85413bc23b32a4351669
BLAKE2b-256 d9b3cb401ddf7b0a2370239715c06fc4a55d2960a2552454195eca42dd496af3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 17b3d546a8d49b566afc35dd26db8b17fa257b7e2dd9923fff87f10bc5855d4a
MD5 f3822b3eb3f4c395f4889860dcbfedb0
BLAKE2b-256 a370cdb12ec141ed2a8377d063e6e6ad847890a26136fa66fe4c273ad3c3080f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3abc36096ad58030f4666a6b082ef81f4cfa2ed8cc0458ef7f07b448dc1d522
MD5 80e46aba13196b377c8bd70f3fc64272
BLAKE2b-256 f3469059afe7aab4c951db8e0e8d20caf716f95a605585ae1476113a4064d98d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cbf71fac1d7daf37c4e9f95332fb45ee72249e2871c4ba8e3f3ab3f5e4a92a5
MD5 adbc9438476a13aa7ce6414ad9c5e8be
BLAKE2b-256 0d4f4cffb9d092544e6aee0f02bba4766607987a2fcb4035d4a0eb51567be6fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f9e001de5a1106f0c66c7e768482ac8f0bfe4621b2f1d1ca6ee8aec8a8b9e5f
MD5 8b3c877976238e4a9fe8363ceb753c40
BLAKE2b-256 4a463fb61d50455a8ddb0f1f816708d43e6926f482741f0ccc7500e94cfc2ad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd021147ce6fc696fdbaf4341ba44144a55eca8b319cb7d81a43ab3455e590e4
MD5 1a4b16e1d7be30ca032f34adad01a849
BLAKE2b-256 5ef97cd784ad15f7d3dc77d3e694f9a0eb99972b080dbfe90783d67dfb7c7d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b84a964093a6ef7f6618c4bea56f1cf1e680262c9466ccf080e7bc3c59fce8d2
MD5 1af3b7c61fd2191d7ff8df56a67e1403
BLAKE2b-256 6d7192fbdc39d501bc61951ca3c0eaca90c71c428cf980cc83446143dd743be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f60f7d3d7870b2b221f4ce046d61e20eb0c4e6bb8738ff66ffc489d946456a6
MD5 5adb22107bc658ff19c296d6a0bcfdb1
BLAKE2b-256 38f0ada89525bdfb8f0db16502d71cdbf721a748ddc540e1fd23e09988b22ff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb35c926e88fac648ab506364388a9080ad56fe7ab3342cf14b4c9cd4edd90aa
MD5 ed4674d4b867fa774e73ca238328c154
BLAKE2b-256 4b55ae3ae614b35a93876d0d32aca955aa13509754c4a7b5fddb445774334f8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aabaeed59a4ee56eae245b0d50519868bf877c5aeb12fc263cf7dea45787963e
MD5 ab8cd39e92f240eb78b23627c46be607
BLAKE2b-256 7fbeab25018a1cfb0118f07577417eba66e13645f0c119aeef42d7eb9cb830c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c685176cd49bc9a19a2d7dd2a7854adac6ab9e20f12179df93c8b1ea2abe724d
MD5 1d7154caf9661aaa33bf6fb00019169b
BLAKE2b-256 ff65048559bba99c2ac3b2ff83ffc98191d2ebeadf6176b751a0199d29aa26d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5d7048298b574b9ae9c46d2f9fa386590797eb4b226e25fa70580ba357c594e2
MD5 8d64bc2e507d4e90b50affda499f6597
BLAKE2b-256 c405fedd0b39f127993aff1100a789c0480775385fa48181e3d1139a846fb272

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: tomledit-0.9.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 358.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c84eee703ad5a93f77cee06cf3c22da5c9804c1bcf6edf3a9841cc78107d2de0
MD5 fa91506c83738a24b46da5f5efe6024a
BLAKE2b-256 198c78f9e5f9b5203059bf788fe2948cdf2b1613de960bc904fe34ad63e53a1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ae1ca4658b5598269c80400910413f4fc1496c8f93b0613c56b58b226dd049a7
MD5 1ca79f69f273ed6504a99c621b8f637e
BLAKE2b-256 faec228c7667544e0880ed7b92423a21e8ce6395b6d661e3c7b8249f8a89900a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 beefb1eff2ef58c96608800450e961e35f1a1adf6cf797388467f9d4db5bfa2a
MD5 c9920180f4f596003d04e03e2a787001
BLAKE2b-256 b4841c46cb374b546074292979e3f60c8a6506e8c52dc00892e6cfaa4269da7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18bacd79a34cdbbeb3ab032c7e072004d692bae9feb6d69529a54a907575610e
MD5 b98ba96dd316a9cbb1b5131264d6c4e5
BLAKE2b-256 ca42d9347157309443fd48f50716520de10d5529fddb7d116aa6a1bdd965eb88

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65c6705ff67d6be4fe9dee3154f966e79db3b27aa14e037975c24c725077f98d
MD5 2a64fa0ac45119f9b06c30e9dcd204cd
BLAKE2b-256 6cdd42951a3a3f5f80fe927ed680e3f1720fd18f1971ccdd5502f399ea205e17

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f831c52b6cc1cd727740b172afa7df35bef896c9abc3043d264e20fc8b768cd
MD5 4c5cb6ce280cefa361705b17155cd2b9
BLAKE2b-256 dd2b86a76843e10a0f5c3ec29a5e1947bec54977fe00e2ae9b1876a840d4a93f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b22f011a7d2c0de083f18d832261ed9e360cea16b148c2a2d4a1fbbfae7050f1
MD5 fdecb1ec0b95b4b25af9d0c6e38dac39
BLAKE2b-256 153c75cdfdf54421f687d44cb5946a3bc590b04bc88b67e071889f06c2cb82a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b56931a2e96e555023f5a4f3f85c7b8384b5fd1a11a569d7e36606730df98c98
MD5 930bc755d1825bb450e19c8b1a51e53a
BLAKE2b-256 ed7dac457338f39e6c1188cf5552ee62cfd85dec5c45c105cdeae9ae13289f80

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80794990cba6f2c5afb90b852f97047ff446270bd5fbdee02a20913b2cc8d8df
MD5 0f0d15427d3b19bb286f1b737ee24b3d
BLAKE2b-256 080282cfeacb1eff439e09c3061164963e3dc047ee61057bcfd659e9b9e4fa5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72c288f59ede7541013803f001c9684f6e28ffe22dd4e1ee56836cb2ca20743d
MD5 abbe39eaf4e7f53bdff6d24ddd3d600d
BLAKE2b-256 160721f5dae2ccdf7001da85a0ef20cabfd9a560f35e2309f668c745314668f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e244a68f491970ecf27ac40e3af1ff6e6707a79a2433c17e15ed54060884ffb
MD5 e7e8d38315e5f90b57413420f099779c
BLAKE2b-256 24673e82fedbee12c90905edcd29bb27874d555b451c22986f3543fb2a0913e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9c8dcea2beb136b9a3ad7f60dd5fee0f3516a33e709f1044c4a39c4eb58489fc
MD5 61e784926875fbd1171f0ece0221384d
BLAKE2b-256 64165bf234f8cfb15e1e62365fdbcb14adc7941f7ae365b3edc131562d261c28

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 379.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

Hashes for tomledit-0.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cca7320013f7b5c1fc8a780003c5af1f789af731b3b5541cce7489e8bafaef68
MD5 7f293d1d8291f0e5185fe7661156c95b
BLAKE2b-256 d74b21d3afd52e67fae4fd7f4ca69c630a39b8e90cbb4a334e0fa7146098e7af

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: tomledit-0.9.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 357.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d2c9f5f9bce33cf3ab431f69e3bd8e9ed9236d24cc6c6ded227b261c009e63d2
MD5 9e818c80e8ec7caf24b44e32eba76ea8
BLAKE2b-256 e863a06b0215890a588659886b34b817ee7380fdeadff993e1e56a7ebab765a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 707f4358d4ae3a6464be12607b663f0e82a7a67579f7778f5749ef3c29175b10
MD5 b49fee8f3085f6380e20d0c3a9da2385
BLAKE2b-256 2afd1af4a1c0fa13d941bbb3c3b509db660abf25c2732f0745d8fdd023f945d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4c295a6141c90fdb4a48d65930c4dc948fa86ee54dfe0fe519a260e3e0cad046
MD5 08e7a308f50c25787a042ea1d6c23a9d
BLAKE2b-256 2a2628a1d3dc3544db789fde68569e7eb063bd12bc26f6dddf35f2845ab3c09c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec0c505c75309230fa57be50c82905bc82eef5f7543b9b752594b45a5c904898
MD5 c8cc01455a49d3ff857fb91c8e755006
BLAKE2b-256 eb56f84043f1863393ed9af87e249143e67ceada972c3565eec32ae775483214

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5d9d597bb2808c19d37e3931a344032c8b2a7d36a2732405ab2fb38ee3f3c91
MD5 f53198aca6b9f66533deb8aa472fb55a
BLAKE2b-256 b10d09c82f45766f5c2a4dc3163e79517d346c3267b113d4d30c29b17a3f8b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e5119b99f31393e6fbcd7272eb134971095bf7420a2527e5a41ec19fb7d5855
MD5 75e55239a0d54712138b160717eb3ba3
BLAKE2b-256 6e25d7b61f208406dc1dd5a96e9c8e3e3e84399f8fb1327ac0ea1e0f6c15433d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 588968eb190d4e8e2540a20f90ad2e7fa45370105fef23e6a051505ac3c827d2
MD5 281014bdb81928bc049de651872dc4f2
BLAKE2b-256 f51e7d9ae72061d7fd081ab831ff68c166f60a0a559ce555c06c94ef08facf79

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69c5b0f10c0703a484e94576706c201ea31d93a3e0246665219b7977f477caa0
MD5 7900a6ccadf2d3c1a6b4261c5e8d470e
BLAKE2b-256 5a89cdbc3d43f45f28e223d713b26cba957249ff3748a754f15a5705a60366e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 984393e08da887831a68b9731617666a74af3cb1623ad3317199ea318eee6148
MD5 a6b0e4a1ecf6fffc09fde4eb0add0aa7
BLAKE2b-256 440d1d2a82157bbd6625265241138af2ca565507e3983a14666cb5d638484e0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a582216dac15354f2d01c6ec96cd590a2743772075ecf2d96edbc9d18e439331
MD5 df9040161788173bada7713fe92770f2
BLAKE2b-256 eb5e6635a954eaf8ae880101ea16555ebf7a2dfeca19ab8ddfaf13b336c3334b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

File details

Details for the file tomledit-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd3bcf6c069d29869cfb01ad0f4a0d96290480ddc52c36f5d7eda37ca12a2830
MD5 d9fc061b080dcda245a396c156b185f8
BLAKE2b-256 da24f46e20f16662163385265fb3453d96cc2805ac42de42ef23514fb72f63d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

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

Supported by

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