Skip to main content

Format-preserving TOML parser

Project description

tomledit

A format-preserving TOML editor for Python, powered by Rust's toml_edit via pyo3.

Parse a TOML document, modify it like a native Python dict, and write it back — comments, whitespace, and ordering are preserved.

Set and remove comments in the document.

Quick start

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 = "# Version 2"
doc["project"]["version"] = "2.0.0"
doc["project"]["keywords"].append("important-keyword")
doc["project"]["keywords"].inline_comment = "# keywords"
del doc["project"]["optional-dependencies"]

Path("pyproject.toml").write_text(str(doc), encoding="utf-8")

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.2.0.tar.gz (36.5 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.2.0-cp314-cp314-win_arm64.whl (344.5 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.2.0-cp314-cp314-win_amd64.whl (354.3 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.2.0-cp314-cp314-win32.whl (330.9 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.2.0-cp314-cp314-musllinux_1_1_x86_64.whl (730.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.2.0-cp314-cp314-musllinux_1_1_aarch64.whl (693.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (525.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (554.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (666.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (562.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (476.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (481.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.2.0-cp313-cp313-win_arm64.whl (344.3 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.2.0-cp313-cp313-win_amd64.whl (354.9 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.2.0-cp313-cp313-win32.whl (331.6 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.2.0-cp313-cp313-musllinux_1_1_x86_64.whl (730.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.2.0-cp313-cp313-musllinux_1_1_aarch64.whl (694.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (526.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (665.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (562.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (476.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (481.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.2.0-cp312-cp312-win_arm64.whl (345.3 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.2.0-cp312-cp312-win_amd64.whl (355.2 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.2.0-cp312-cp312-win32.whl (332.2 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl (730.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl (694.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (526.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (667.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (563.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (477.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (481.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.2.0-cp311-cp311-win_arm64.whl (346.7 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.2.0-cp311-cp311-win_amd64.whl (356.1 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.2.0-cp311-cp311-win32.whl (337.1 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (733.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (697.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (529.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (558.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (671.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (526.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (572.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (488.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.2.0-cp310-cp310-win_arm64.whl (346.6 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.2.0-cp310-cp310-win_amd64.whl (355.9 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.2.0-cp310-cp310-win32.whl (337.1 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (733.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (697.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (528.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (558.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (670.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (526.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (572.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (481.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (488.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.2.0.tar.gz
Algorithm Hash digest
SHA256 4f90a6aabfdba81ffb2b9dd7d11a34baa236c164e2fc6c15ec377a20376492a1
MD5 3284001f68d5219147507a5da38f4f25
BLAKE2b-256 d5b006911c5631f207ccaa353df3eb12be196b40e10c417620001ea0956e7821

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 344.5 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.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d5220304ccce20fa684206ab46130cf4089042a840780b161261986b625c7c54
MD5 b095f79c09fe5224418eda3703c573c5
BLAKE2b-256 fa6f62903e70f435d5f1dada66229c75b8c3dd5be73452dd5292347e136b500b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 354.3 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.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 59edec2f824efa05383d43fda4ec5d5a25f6318ff8d5b36c77ce73d9871e41cc
MD5 bf16c11d75b515094f61e442896843eb
BLAKE2b-256 27648f329746d3a635c4c3529f361c6541436e6bf4e05219581e718a4c0b3c5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 330.9 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.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a9bae574b0504f8948c5311ae946c3a1536fefc3695f3b7f98a02b33ded2436a
MD5 b151a5a53e57f185ea551d0c80c2ae00
BLAKE2b-256 319be15f8278af44a2edb23eb5856f0ac35352cf0acc6983ede628e9dddb7634

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 61ed8b962b9923231fa3d1763f803f6f7d8055b64d9f1da6b3751d89e6ebbc76
MD5 24d6ebafeee6b8f150bda4abf7c5287d
BLAKE2b-256 35251684d17ca099aab7b945f103c9917b4b4460d25b420b768bfed0ef9fcf5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 71c539eba297662b8cdd4ec84464aace4ae00915eccce96b9533e70f66c22fbe
MD5 5c46b321fd78f17606d4cdeba2303440
BLAKE2b-256 6d238bdbfb0a68e611b8748916f9c24cc8512d0f2a25711071cef30373606d1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 baa439e1c280ef2a3bcd1671fc798d5775ae4873cea884d31182c042025903c3
MD5 8e88b8efa929e580b151f04097a2d45e
BLAKE2b-256 eca0feb94eda2b050731e7ddab87c73c622f27df5ad58b5de03a980bf8e2e316

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16d1352c8118de5b8f819b69479fe7396177e53b60516e9e65fc9828273ca9df
MD5 6445b69f5a008ff6cac6af8b0b24d9fc
BLAKE2b-256 c7b39604b00a18345ffe405c164bf53cea008bffe61e796c787b4ccea69781f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ffe2fb093e3b7ecd00dec47c54c140305c3482bbd1cfc68f99eed413a700fec4
MD5 296f9bb2cd2d80a812c495d6241f9e8d
BLAKE2b-256 2a6aac2c2f65bd2fee9e085a29877294ddf611af806fb27a872deed625721fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf72cfbd7c98bc2f256f1935355fa48d421a6949805a284a131f9c0755b5cce5
MD5 3f74592de174a55127ad329860ca7176
BLAKE2b-256 dad3879c7591c40154cd21e22ed2ef9c81e5e91c0e09f2194d5b3c3793da1fd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f70282a39de0f68539853a908d5d48753301645a87c78db28d5390a7f3dbc841
MD5 db504f2f9cce0989ea74ae96596ad633
BLAKE2b-256 d19e098c217413e49e1056463ed490e0546146538ef68d10189ba6038714e332

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c766544ba6a1809b7c1788b32ff7a2cb161cfa2cd1b1b8a97bf937e58f5aedb0
MD5 1543a0079dc6a49021809f88169c40a8
BLAKE2b-256 2b1b5e4e575ce5a3c77ce64aa315e15131d8b02f0ea13683589e47846bd0bedc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 050662a48a7ef102457d59a06e7ad53c98ef163b2e3c7f56bec928354becb689
MD5 f578a3ce78c6c2d74fbf8cfc1922a992
BLAKE2b-256 0ab3e56854ef6093ca79b61500f53d0ba66834b40b75486561df29709167d94c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06ab7176c8d5535222dcad4341507c249cd880485713fb8744c1425813f6e3e3
MD5 134c69b68cb10fac4eec80b09bcb6dab
BLAKE2b-256 d49fd24d42aa4d306af80c1ab7db99f390051cd1bcdbe65a2f6a607e67f50561

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 344.3 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.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1b140104489053a8238c26ab0a0868acde8a6e5b0195af17cd18dd6e8165be51
MD5 563432f800ec3e00a3fe774232113a8e
BLAKE2b-256 e46cadd8a6e5aeca57eb7ca25bc3e633df813ff4a7520173d4dfdea4c389e20b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 354.9 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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ef670d2d63ea1ef6380827e9ba2659badcd39b4f23ea6bdaeb2e96b44bf5810f
MD5 b4c4cd285e7818d6d530891845181dee
BLAKE2b-256 0621000f430933111837a01a052e5fae7849be052a216c2eba140b7d928cf226

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 331.6 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.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 31653d58da38a291a9d4543f1df15bb814daf518e949f8c52a9bf8dcc3172d6d
MD5 20cac50dc0c57a5b19b66e2d291781f7
BLAKE2b-256 0316654d6581c7fae3fde5ee078c8978aa95cae18d41acdc897272583553e947

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60fcf1e52b17bc42a9b485e90b2a4529096bc4e90b79be0279ff9757f3e35449
MD5 d3f92117b0623d6682061f028220b485
BLAKE2b-256 a5bb0f264e8c6842aedceb7b3dd5e2a644466d6bb687ff8e0051f5b6dbee67f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 723cdcffd9d3027e7425f14e20b6d5814b7351fd062e4e60251b684e4a038689
MD5 9c3f97260bf9151445f3bab92998c40e
BLAKE2b-256 28b7496fca1c99fb095103d87073907d6f8ab4efb4503316ab1b6152f6d87a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53a42f9aed97356289fea9a2f80d114a486012b805bc00bf0f08220f67aeb824
MD5 5309174bbf93991f6243ea27c1b24bc3
BLAKE2b-256 eaf412a63643d37b2524e03b37ab61fe031da3810ad822ad5d2d4c5ec036777e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a391b234e7509d47174a6b37d3f2857a28794befacbeedbd996acff708cf36c
MD5 ecf8e46225e8d3b9c4ca9a974e0603a4
BLAKE2b-256 e37cbaac1af4beb0724efa95c5c65d142fea4483aec5208e233d78c219c50d65

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea219d977c330eaa30607e3d695e5aa222af20f2dc6d9b5a1d36b6fbca8aeb8a
MD5 37d2e8c7a9cfb5473eeddd627de382c4
BLAKE2b-256 db03de99eb555107226e20f50b3e23e56b0cb173b02309676b7029c1e2f54700

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ea08683f457e662cab51b1d997033f09fb8777b148c9e2ce4a1697b4f6c3d85
MD5 7ea574a7bfd994a845b064428977884b
BLAKE2b-256 7eba07e39fa8751e4fd3765f77ae7614fb6538181040ebc4aff26552ebb74e73

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac311b507df8e74e40773d5dc04e13600f33e4a6ce00fecb0bff3045ea7cf3d9
MD5 20b7b0c882e13f045154849bfdbb8048
BLAKE2b-256 45ec9a1a6390cc7e02761f3c2596e3c058622178136500a7be201321c48d0e9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8277bc900fcaff0a72f402f2a14626246b6655fa23fc37c95f60d6f6de27042b
MD5 6ec5a24576104e9679ec32d3c6e540bb
BLAKE2b-256 717a2c2e982734c66e65a716403addd5086d90cc45003d8f96e82e5ba4219820

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4648ff513f6b57e4d7cb9e71e41372b540dc67fff04cefba60191ffd25b57f3a
MD5 90fcf4c96b23c9fbdb018d1b80669ce8
BLAKE2b-256 0f37c287a445e59382e960a9bf63643699c3a407294761f0c82fe47bb2f06647

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9545609d72126d8a60f5eb45294fcad5f2c1d69eb02b36440ac96fff4ab8c78
MD5 9cdda6931de4496d4233ad61e8c8b4a4
BLAKE2b-256 57838115e2428e215b5cf1b1e133d9bee21ca91997b791b030825749c34bbf05

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 345.3 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.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b6d5ee6b35411acaf7093b3fa368a073ecb9fea4a8d745e3a1e5f6b10548b426
MD5 8bed07dcef3432fe1d62103c6f8140d2
BLAKE2b-256 40a97fd1f8e7da9d9f1d57e555a18f8ff0eb0293dc1b7f8e93c1d8c6318effcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 355.2 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cdb8118192939b36d177a470c24b6276e24519149557cb2009932756c263f635
MD5 356dd55d959014bf7938b1a36a378cc7
BLAKE2b-256 1604690190bc79e7d855dcd0e90c47d1711ae58d7884d1ce4dcb82c36e59dacd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 332.2 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.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f7e378aa45c28c8f5d3701b345cf9a85a085a0cc6da7a8e4c8488c6811b5112f
MD5 355546fde58a4e4611a922295758e427
BLAKE2b-256 d2c49bab4235e21e0799109caa870f8c15af8c0f8a6d6c59aea9274abe2d896e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 38d6d87c39741005f2f71d77515fed0415ac35905f6584768a886e4d5a5a834a
MD5 b5cf8a1f258aef8e0b5d2fb1a961a3ea
BLAKE2b-256 af1619634dd5a32b6e01bf6a34039b2b13ab49048485a67198bd470ffa351bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6b82deba5938ba7340f813da91092392037e5aa59131b8c3b9ee583becb074ae
MD5 88a97716f0a94ac17164aff46a0a18f3
BLAKE2b-256 9fb09c3cad1c7a798347f5b981866c13d92def9fed27fb7f183e245d4acbf5ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65d08bdbc7894bbbda413de3bd645ad15529ac839fc91bfa99ebfb6e50b804da
MD5 28c5aae0dd3b7323f8e81ff3e4a043b1
BLAKE2b-256 b340ea2a9f18e763d510cbb614653ce9a240aa77ad8e6673fe1be4586e569d3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be6b8284efb58a76d3cc7f90e84d36737a9f0b4cdc43cdb14da8cc136cf56b80
MD5 69969de20dcda922527f7544ad9bd7b5
BLAKE2b-256 127540230da3dfb759ca00f8c1bc379b944c9db744f0f836eda72e044b0f4b76

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d93439d2e4bef189f900fcb9e837138a476b3e98dd2d5bdd41bc745450810b6c
MD5 d4a1cbb6eebe061ce20ca759fe69de57
BLAKE2b-256 63086cb9315ce010b6d28272ecce5161303420aa8717c4c914b9a8ad91ac9742

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5656f7362df750077d15b2514026ec3a1ff57696e82444a0ec0f5695a750aa8
MD5 b66b8af1389b44548c2f8b2ae5a12985
BLAKE2b-256 73d3c4ea60fa4e9b710ec4d0bb24da20a356995cc04f30135e3be54623c25bc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e75c497c6a1d7c703a0714d7f499663018de5a4083257987e41c788080525e36
MD5 78ad6a6213c495fb96042d94fefd4d72
BLAKE2b-256 8173d22b796b22cef6958059ce40a9c894d9ecbb2aa1ee9aefeca44264f39c6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f410c9ae4103cdcf7183756e6dd884935e7c77e07a808d3065a5595ed68796c
MD5 f9c8f4b2f857a2a5b2c02fdb45651d76
BLAKE2b-256 a045bc544cdb31660646a664fcd60bb8d6d86e2b64227665c9f5cd6aa92f6f82

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3cb02354eec34d5f63ffaf037a7e98c327a6f8da0edb272095a2960e641247e
MD5 de0aa5744f80dba594fc2c291e6f0a32
BLAKE2b-256 d94f004fd42254eeeb3b032a55ff5e9af41a9c80b95fa12f18b168d3e2ea52a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 091f108ef61d99666c027c142b35d831eddb9cae83b873871207141666af40fa
MD5 38bde38fab25ec620e29508325219f59
BLAKE2b-256 8b191c31595d410cc1ec0e21459cddcc7e363778a3eb840805edb6add0837942

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 346.7 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.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 cb3495c3fceddafa5d622bfe4d14d9cd6f5953527e36ace2671f2e8c0541ea13
MD5 ae20782a0989804ad6b790a3f293a731
BLAKE2b-256 e81187e7bc7128f1e4bb7a60b2eb1bfbe13d8654a2964a1ef877aedf7223208d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 356.1 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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e0b74655108bf81f7ca368e6e045f5178ef69d799bd9bb2a347a233a5400878
MD5 a079a0582f5ad6a5546ebd2715e8cbf5
BLAKE2b-256 6f064e60e051fe1db80b9025a1e0a7e94712587320026f8d466bd9d203a01378

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 337.1 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.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ad731c3b24b61d82ef7488f09838ea778efcbb3b31ebe3f88295f3bd853f232f
MD5 bef374da6a5069840b5d6c2396c713f4
BLAKE2b-256 9f9c059124b69a8d9e3425dd21a3e790d6bb28554f82291ae0881955f21d8d15

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 72fe592b267ed638ed1a6b5bade74bd4bf8a8d312257c732f8995bc15724a9b2
MD5 add53c02610dde9772d42fef0eda1b5c
BLAKE2b-256 f04ce71eab4e1bd41910111fbfa965c2a62ea8fea7bcc4445535c71b07e78781

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 abbff60f0f92d03ed466fa9bb68ca9f48061fd92a8134c36c1294676a71960e6
MD5 fac6a6e2a8132616a08305fedfe6010a
BLAKE2b-256 7a779989238a0ec750351fd86419edbe0d2bac549cb0df6b444c9c5ccfaf91e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13fdabc2661cd5a080bf785f6196f5d31a7dbaf12d254169fe1bd9406deab7ef
MD5 dc393e4a7ff1bd8d6436febf7960fdc5
BLAKE2b-256 ea50c9f64baa346a232aa3edc24603c566a4ace4894f487bbe77f31c8c40d48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc546a5319a19148bda255b47d79bbd647d6053726e2dbee6aa53ee912d32fe5
MD5 616da7e2082259fb99baa3971aa88571
BLAKE2b-256 ba6e85231576e782d6f934af093d1eec291f2d0f6e8a90341e6fc15ed8ddb70e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ef84dd0b717db50767171abc4e9230cedb5db02c9763fa65113152df625a602
MD5 e19ff65299d2e64dfd270c7076b028b9
BLAKE2b-256 4d67c97dace0720bc74eb3dba24205cfcb4a2d58aafe2ed2f803ecd32dab3661

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb165ddf097561a7412495d871445d520999a4e6e2a5ff4c4970b5c01b0aafce
MD5 248c5b5ec9b910b4bd07e210557d7dc2
BLAKE2b-256 8159474eb18ed1fe895e6cd24b6f3590f17663523f3b21cb81607809407e63a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c39eb02f7fc5c3271ac6d1d61d2fca6c362897ae1a53bb9111783bc9c01e7a6
MD5 a708a949d7748d4a15906c2e16233c07
BLAKE2b-256 129c70287cfed27f7bb548fb87088a360ed58edc43297db70a927b8da575db50

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a572f8758185566dd23b1d4297fd2020844095964a1765f17334a51ed8cb0f81
MD5 5b63d6171febf9e1961f72b8c076d2c8
BLAKE2b-256 ca9f1a0dad274d1a85a447d3a61c970a12735a98972a1ef1b29036cf3538c854

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 666dccfd1e0b0a98e57a63f649c84c07c408b6681979b672141700d6dffe5eac
MD5 223e00cda38b7371383fa70e6dda0296
BLAKE2b-256 45dec005adfe2c244d4d5d4f92e7572dcf37f0788e5ef5800926387247609c0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b406a103031beda6c5b22d27ba040372a44acc480ef7016b2b7eefe44ae8a615
MD5 a6579d881965e07e53a5e8fd24bee4fe
BLAKE2b-256 c6f427466481c5dff5e48aa22374983389926e44388baaf7bb86273bb02dba79

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 346.6 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.2.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 40f32e2387d9901bb165c99be5639254ddeb44340725e64a8903cfa4d8022258
MD5 64cbccadac57eb211cd615ba6fec443c
BLAKE2b-256 539ff6946e2f6f16ad7d082a6dbefdd62ccb753f63ec1a91239991113329e00b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 355.9 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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81f4d0174f75955a058eaa1e39e3037b16518af5643d9787ecaa2761acfae4d7
MD5 fb1742285ffc0094be5e5d7ffb6f6790
BLAKE2b-256 a5905d665f4409a1cf692386f74b854721e4f3ad2b1f37169677fd79e61b3d74

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: tomledit-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 337.1 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.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7064f61ffee052c6f8d83dbb50c364958e0456de8ff3edca26d12d3c7c87dcaa
MD5 f91cf13795a49b3dff5df3116f50db85
BLAKE2b-256 e91402694d891335d12a4d51baee74028f50b3464f8b7b99a9eeebce85eb2fe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d9ddac90654da0a4f33b2ee60407ca6225deb7505c0c1243dd5a0c5108e497b7
MD5 82214c992590c27825b7049bcc255b32
BLAKE2b-256 aacd05052b32a6dd16e70b45e4ad08fb306039388d018ab50e9768117ba9221c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8a918f3068c0975ea09eab1c3bdeacf2ade02f1727cd800f59b9d8219fb2c1ea
MD5 6c57a6285eef86d91068415c480669cb
BLAKE2b-256 78f4eb4fdbc02641e6e8ca473660b6639d24f96fa601cc9247ca1e57eafef7e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1fd37eda6d5b04542c5a1b9ec59704e31c18f89bcb6f3f50a62e9482591be0d
MD5 3d4f1ae1926e4d3a49e0f0e5fa3c0e38
BLAKE2b-256 2b5c8536c8abed3ea13bab964c36881805ecba589b16156405aed0716a464175

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da18573b085166ceb7b418aa27c80dafe0be509c5630d918c6d0ec7f3c28d793
MD5 ff1ace35cc5b06b84992c98b7bdde641
BLAKE2b-256 6fa24f45631ea986c0b349c03c3f898617984bb50878ea1f96b9171d9486840a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68e89130b08b14a4fede51211eb33da95b71bf2e11f55ed7aa18f949f28cb177
MD5 ccf14b0b8a93e0216514aa26049fb5c9
BLAKE2b-256 da15fd8ff7908e22053daa4bcb303d50681d273b1e97e75ed9345b753903fc9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd7422aeea5ff726227e03082605be72c96e9f47ada438ea5be1d289c0013b34
MD5 609a0fc33dfb335daeb6983c53a8a93e
BLAKE2b-256 2430a440908bf49f393a123a7e2d2b61c4979de7c98bfeb1094b6aa57a086aed

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0facf125b06ef85ed69e2f62229bb90f0fd834e825e9cf5c5f69c903519abf0
MD5 208c0fb26313e8a748e491b6b1f67538
BLAKE2b-256 893563a6e795890efd590c50e33a2523936829a6ecc9dcf25c70d0dac00aa003

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb938da1e5ef3647f970e4cf9cce0dc3c5af7797c712ac7c82c18c5873655081
MD5 fe1c3a596831b6e8dc13abdc316c784e
BLAKE2b-256 7d43df5808b7988b1d2ec523f580235617f43cb18dbe41ddb2082357774c4a36

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9173f9ceed82bdb902b435576c95f94027d19e6965d05da83e8634acb2b009b8
MD5 5c6b422e4dddb1bf6168a477540f93ef
BLAKE2b-256 4ecf107d019f5e701bd22e288071701ac6318611f9bde7be68172de5ccfbf55e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3b5b4cef54e7b7f3acded1ffef9ec5974e1f91bba046572857dc3edbf8402b0
MD5 260e60d3204f2da34210e8729693442c
BLAKE2b-256 77f0302f7ed3e9edb899adcb38ae7633ce1852ee7358313761e452c2c90feb09

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.2.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