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, so chaining works fine:

arr = doc["arr"]
arr.append("c")
arr.append("d")   # 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.4.0.tar.gz (45.8 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.4.0-cp314-cp314-win_arm64.whl (351.1 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.4.0-cp314-cp314-win_amd64.whl (359.8 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.4.0-cp314-cp314-win32.whl (337.2 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.4.0-cp314-cp314-musllinux_1_1_x86_64.whl (735.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.4.0-cp314-cp314-musllinux_1_1_aarch64.whl (701.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (531.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (562.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (674.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (528.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (571.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (489.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.4.0-cp313-cp313-win_arm64.whl (351.4 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.4.0-cp313-cp313-win_amd64.whl (360.4 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.4.0-cp313-cp313-win32.whl (338.0 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl (737.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl (701.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (563.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (674.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (529.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (525.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (571.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (482.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (489.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.4.0-cp312-cp312-win_arm64.whl (352.3 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.4.0-cp312-cp312-win_amd64.whl (360.7 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.4.0-cp312-cp312-win32.whl (338.5 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl (737.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl (701.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (533.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (563.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (526.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (572.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (482.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (490.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.4.0-cp311-cp311-win_arm64.whl (354.2 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.4.0-cp311-cp311-win_amd64.whl (362.7 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.4.0-cp311-cp311-win32.whl (343.5 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl (741.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl (704.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (536.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (565.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (679.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (533.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (580.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (489.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (496.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.4.0-cp310-cp310-win_arm64.whl (354.0 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.4.0-cp310-cp310-win_amd64.whl (362.4 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.4.0-cp310-cp310-win32.whl (343.3 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl (741.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl (704.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (536.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (565.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (679.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (580.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (489.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (496.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.4.0.tar.gz
Algorithm Hash digest
SHA256 82141afcf15302ad2578727a809f48d92ba89a61c9273f8a6fbb61f6ed117d1e
MD5 0b0ef47384f5bb7c004067bdcf777d11
BLAKE2b-256 0134e854b782b261bd34b51345bebf25a5875ebba07a40957317fa9931ad2abd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 351.1 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.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 662e51038d81c522ca16514f6f1e01378961b72c4a3e9fa3e7a32162a3e3afa9
MD5 bf5564783a1692ff21cd4dce145d1bf6
BLAKE2b-256 1bfe123b9e83b5ad6d4c63e7fba202905a04b40a3b1a0d0adfa3f52f953aa171

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 359.8 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.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3ad133aebb5a726b395078bee591c12d1e87b86800e7c86fbac5a9c079e7938b
MD5 3f582dabe1235b40b9ec70376f528463
BLAKE2b-256 27c820e7bccdbcc432270b04edc52bfd999ea745eca80cdf47d2133720c79315

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 337.2 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.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 58639710e9776499f698d78c43f9170994c86ba5dd4295ca467a4731e181a4c2
MD5 143b9dcdbf461599927a0e7b21211020
BLAKE2b-256 c1767427c05cc500b005cb3d60f66d12d0bcc3a60858e749f3105d0cf30aa225

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b98962568e37beb84b87bbee8c2d1d8fbc14ffd2739ecd7c18fc4ecca78f6d7
MD5 7158c4436d583d431e57d78bbdc183ce
BLAKE2b-256 0b73a13fc324188bcbfe4c92cd7b036b24db9adaf143f022d99967c23fedd27e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7522028e420298c2702db3ecbc860a92fdcf9922e649942c2c683904697d3f6a
MD5 392219981b98ff8251e2d8ef9ad1ab77
BLAKE2b-256 6d5d295262e3aff298f77f45217a8431ad8cd2e528f85359bb9f6c2215766ac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64085020bbc8d4b4462b3b8540ea4db30aac15838040efb9d6cca9a13b8b4f28
MD5 d954cb085a4739efad6cc1e8d1d15222
BLAKE2b-256 886ce9d3daebe37b2f32de1ff589f2c124f1663bb81056fd83728e3dc868b840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8f22331df3f8dbafba67cf85365089ab5c4f36a7dd95c108e5f0adca9bd2802
MD5 c0c40dac44afe925b246745a33568c6f
BLAKE2b-256 510d87e6eedc2637311680bb6c829bd33e2d9ea2b2eb6db3666885aceef7f90e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1f45a36ff1ef8c7cc0be3db47e4fe367bc52b8167d0d70fbf7da95d11cfa438
MD5 96c792740a16d45a2f208502a53fa958
BLAKE2b-256 bf50aab0d7b93a41208476cebbd74fc87ff458ed1cfda172b80a0d8651bc85b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad8d3655c82f6b47323ee18f5f8a92977363c5d5742983e4bde6244f2f10a150
MD5 e04d54ebfaa65fef955ad66d3009a7be
BLAKE2b-256 f0b7019c1d1666b5008fe50f5b079185f5e152b9716ba4f81d2f863ccc9a4f05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b825b4d8133f5fbab3acf3cdb751a77c209989ddbaa9d82aa71afc360e17010
MD5 4688dd9d89e25c21dd3d30ed786ec45b
BLAKE2b-256 0cad9885a4a19b91d682d064af5398cb12451d4a7bc8d3544253a09417910041

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c1bf61a054bb7c8e9a6e381258f34c98ecf2422f24848cc685f4b67b0377846
MD5 01406a1cd00d7caaa4d4d64f0cb2803f
BLAKE2b-256 16c293a932668676dbd62c76f5636390be758ed3490ae62f85cc603bf224ec37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 958218711a6f527f2b8d7145eaaebb494ba4f63ce13b8d24f87975f2431a47f7
MD5 9a12fe807833d480c07b88b842956093
BLAKE2b-256 6220e476c91e01fe81dc614a866e2412543c889c62aaaab7ba264595e4b4333d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 491b6ff85865f6803a316c5afb4e9ba0aca085509d76d32e15f532d63799e45c
MD5 358f399c02a75a6971802a86b8d42482
BLAKE2b-256 e39ad5670c97c0adaa85137ae065d46557c4cfb8d5afd585269be8d3eed4f725

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 45eb26e0cadc4e056a6c3e9a5f59730260f75820e7fc062ba9cf675f1185175e
MD5 77319e78c70e84350bbcbe82eed2685a
BLAKE2b-256 a2e37d2ba589961493e17149cad9f47d2bb5fce3073481007df62245e0430840

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 360.4 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.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cda0da31d425ed9845986c2bd31e246fc685a42cebd7dae7629b0c34abcd9218
MD5 dde53a9c6b533fa3391a9fe7907fa483
BLAKE2b-256 ec31bbf1e904218777b1d6bf22c90a3ed958b2ca435256a0671b397175d4880b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 338.0 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.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fd8cbbf28ddf9f2757a03213c79e06979d074a429848df496f10e002857cac5e
MD5 1e5c6ff3f01ad7e79e88d9954f6b5541
BLAKE2b-256 74b1090fe9db264c473c3d632dd87e4da7083cbba6693b3892f9b5a6bd5027d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a8fcd5176c4be8b8d75323b2113e82566e8dbe208ab191f3bdec66c4a17abf61
MD5 01f9bd23e27490e1b1346604c9736b57
BLAKE2b-256 112a9b909609025aa0f49d34fa5b5a77a292dcb7b58d0a4ee0dc22695768cb90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 877f12329c245f2c1cbe88f547147b34661d7c40bfb195f26b45a012d47c1337
MD5 f3743f8f2153f0e78a5ac02bbd427f99
BLAKE2b-256 837cb3c5fba12a9195f139951b66063abc61124795427e1aa3a964220fe146d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf6d0bfac6925d9fe0f6fc6a9ca863329f5ba27c3c841c25e2de85b4f90a6845
MD5 1b3a759229499190084174fc1c5ab025
BLAKE2b-256 ce185ef5dbb596a2eec0a902a9a5a5fa60320edfef0d88cc7b0d30b043e90dd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d03890ff1a01d68e613512a98ce63e9c3bf8f3aaf60e619df0427e721962ca02
MD5 4393bd2fccbee7c4bc914ed8085d53b2
BLAKE2b-256 ef46e1d700e84527c8e39c307d7e2256815e10444272b36f37dd3f65c7397f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ee412eebe50b3a80a6c5290929d49426efb65a28d9c273b94b208ed21d9c6c0
MD5 74a0ede2aedaeeb4da74982250a56c57
BLAKE2b-256 51285cd99f19c4ad76943f7fac232696be596ccd4e672762075f3665b6898b3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9e826f3d79323d153fc5410bdb164610b02c9035c4370df118525d336dcda06
MD5 a8683ed18c5b7cf47172e18df173ba5a
BLAKE2b-256 683fe0816d9e741adbd4894fd6ac7d47fe4ed0d7bf753d2da5bc66c570b4f87f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55fefb1f3f41df998eaf9d5d3486b92675ca5a02f27613bafc0de10e089a4a73
MD5 791dcac22090f6d1766506a417f35672
BLAKE2b-256 b1de73a05e001a1382620e1ae4492e6a4df81ec63be66df1e501fa171e893e10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5df091c29cd14225f635d8d3ade0084455fde6cb664db9a76ac811b78d3b3ff2
MD5 e38e807783f2731e7faf5fedeca9e5be
BLAKE2b-256 8b813917448c88e2905f7ab53d6c9829c179729c30c5f883455594b028c90cb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e815e39c535cdfefcfe2b5a275ace24903f8cf2925aec7b2dcc61d634e4d9b3
MD5 41573d94999d69d485aff68d056b8f3b
BLAKE2b-256 2660aff06a7150163358986e54c53327b5afd43a155c0679d927c07a0e5b39b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 51a3d7b4f1d8af36f7c295550062cc248040309ed7ebdc163ff1b29f6f6fbd24
MD5 47b7dcb4061041881879227ac599dccc
BLAKE2b-256 f45a29101c22bcfc06fedf16ab4f9caa1ab2fa630883ae95d0d4bb8c3c293748

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 352.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.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9dd0986ec91b3bcc657ca209ea4ff1c8bc7023efe3b102ccf043c82825ea50be
MD5 7659f9a1c29b1b278b538c7b16c67f53
BLAKE2b-256 785128dc89daca63729fceaedf0f4d40b64b78929c064c0f8d1c4ccbe8d4df17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 360.7 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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b23c9a3f5df2e167d0af014c52c0ad0b6f016a9ce5e9ab64995bf0977b30a5d0
MD5 8629a3dfd28ccbf2938f41664973e888
BLAKE2b-256 201537bf6edd4d00d8b9853fa3e1687300110bea54c128effe1271f138e7bf7f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 338.5 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.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2d86bacff0a21f42f42a716ca2e58eaafa051e64a5e86780c3278bf54ab8e730
MD5 b75cf297c67856051e495e9f69263308
BLAKE2b-256 4bf799475e83dde310d38018c6ff834e5757ada263d1d206eecba954fff25a4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cbc5d37b9839ccebf8193149e7a1a26d6914aa275946b60a9eb44cd80b6113aa
MD5 e0bd9db842c6ddaff30e4fd4725168f6
BLAKE2b-256 1f850dc732e65a0a5523e8585d1a554a7168862b40b1b3cc46a86b4c57c5ea3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4d68a96756fe9d57ef61e4c899bee4bd1fbe798d2e0f7eef7026f8a65816f657
MD5 c802bf13962459c25bdfbc0064cf5317
BLAKE2b-256 ffe04686bd841913757dfe6fa247680ba36d923aed11b3fbaf9ba995c6b62bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9fccec3162d5ff1cc9fea7f170d89cf8b49c9fca83363bc2583c2d75c3de4b2
MD5 2b803dbfab633269ac84c95d3dde79be
BLAKE2b-256 132a96204f8e6a5434e5ec09118f6a3c973bec8afdb66f9a917aa0a97b52fec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91d0ff04053b5cca48963bed3f64b505a2b3401786cc13b8480ce8939d31e5de
MD5 3e7c1879fe739723d25799eaf70dfb69
BLAKE2b-256 3bf6afb2c8b3c29827cf4aafc8c6d097d7b4bbc7fa8733ee93ea7e3d47a1e0cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8998b888673066c2530392d1f0c8fc600b4b2a3f3fef337e7ca8184873d1f761
MD5 d54a34397df8fac27496a300a963e065
BLAKE2b-256 6d3ad781bd6454d402df6e16ed764a3ef2e69a11160c230a8b687506f7c97d11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 254ab8dcb7b229b3f6fa5ecf7af9c37e9ce6dae019216e4e74b6e6032c1ef239
MD5 a479a760baf1aca54cf0f6fdd378d7c4
BLAKE2b-256 1061059487283564c07f0081009c0ccefe605563f5cb6654fcb6c7a241871db0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c2dc659b093776dd423f8b2a945519880d61f0a5a33021f75c220e464be8206
MD5 19d331dc2a77234930be8388e0b8a3c6
BLAKE2b-256 e2cc0ed60bfcd928edda0cb51242fa231daab89a55cce6a79c096315fe60e6f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c6b2fa17035a09157ec764ddbef7f5a7eb26e95d953197a0e0a1ea18b5c467f9
MD5 f9fb01cc3fdb36cb28d825c221993be1
BLAKE2b-256 91b9c69105121b7262fd596fd3398b2cf454ea3350534574f1918f288e6c32d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d5fd76853a2e54aa19351d3bdf851b65a16fcb08ebd0bc1bb99a366965a0042
MD5 0b328ba3ef09b56de5d926dc91da68f7
BLAKE2b-256 da2c43d6365eeaf4c680bc7ca40793085f99f16da97373b48ab632f618dbc924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4af8bae813c5f7327e46e17d5ee9f19d12588649675dcd7009d7d602b1b5da1e
MD5 cd946ac4a5aa83a369e53c80ca04fc82
BLAKE2b-256 fc59d218cdc770fa6243b46900feca624b5abb296d197e23fa824767b1f0f9ac

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 17cb7aa119e58e0ada24f51593d60d3c56345741a72398f97f323ad687904281
MD5 e2e6ad012cb6544eed9649a0949788cf
BLAKE2b-256 13d869ab68a6d4046e951af65f9c8b734e113d412a929ce2fa5b750513fa45e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 362.7 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f49f9a28497f1f55df27500a510c199385b5f4c9684a2a633ea19d09a0e2971c
MD5 fc8353f5981a736ef8368f7860df4d52
BLAKE2b-256 91432018af2c21c7c871216131bfb73f012534d5f233cf502c90314e80cd5632

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 343.5 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.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 41f7aaccca53432fd9c480cd7b49d605f8f2d311a7c51d188cd68abece19e907
MD5 5811bbe45c0cc14c9e9a0c2ad4580929
BLAKE2b-256 4a263d5ba464bccd393cd98aab58c092e92be8242ba5a539dfb496b2a89de26b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82b6bcec35de53d451abf2d39797beba40a19c7758bb1a0ed9c895d3b7cee88f
MD5 2381b7016f18f455567af1593759e837
BLAKE2b-256 f7e607894e59989dab3fca6674994846187e5b9e06b85e366a1051941656e7be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3f7baefcd7541625add689648be8dd544ab409c8e7cb82a6ce925435e4e9322c
MD5 47d6b2a70d30cf35be682ca4291d2c66
BLAKE2b-256 ea734518fa1e0a928952d5cfd34ebd2a9aea5b28e6255e0679f52497a7b366bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d22340689c5d04eb71e1a73ceb83684f672b5995daddb9b9f11ee9f3df81ac8d
MD5 916f0029ba17a11328fc7dc28a4a65f4
BLAKE2b-256 98946296b3ffa09dc4abd00c35522ec075629d12e95985a82737b0c4d9b4a0a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54084fafeedeee821467bfe369d93cd2bc62c211b8b3196bcbaed5431d6a92ee
MD5 31abd86587ca2d17fa26b8662270b84f
BLAKE2b-256 d803561a477ac29388e625408668b26a5149be7da7487bd398230583563672fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5264ac0eb678662ee9bc9bac3a8ca24fc00c7f1ddde6119abccf865c0a7059c
MD5 56eada5ff0f82901bcdf0c487738dc2e
BLAKE2b-256 e75477d6ad7af2b6a3820a8a20fa00ef2c8bcead969649eec6010cd58e20f589

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69b1f2199cf367824b2a4b1723422ca82597114004506f72968b5b43b6ef1293
MD5 38949334889e47187244ff3ab50ba192
BLAKE2b-256 285c3f19881ff0e353f79bb00b0de26d952105aca109b4501c8cf8d5cf11cbc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 406ff29ce69f242e2a8d099caf9af5ff7b2b51becad9ee2507f66ba02fb16c6d
MD5 37497df8609176e58889b6f38aca769b
BLAKE2b-256 1f7b4f069aa42e1622de04a057207eeb747ad9fddd585c68774d43b67bf12500

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3d3d2d71e8eb999a3917a6fd725d710cac5152f7add235ddf94fa4e7657290c
MD5 aaf9494aad89d67db6f4ccda702bf54e
BLAKE2b-256 9c3b2ff02e384701c3e1361ee6c7962bf34f5983fc58e591544eddfa60163768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6bfe3e2f1c1498d5b56584698decd8bfe911b88d6d9f45820d3ccedec08c4d4
MD5 41575b6d8b534d10c45bf11841addb44
BLAKE2b-256 9eccec34bd22369df94913f8b1f3311ddf8077c1a85a4d0af2c7d5973f8c568c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6c4026ec7e23a216b50dd751624e3158fde6c78e64d3778faa69ba4821751f6
MD5 91593d46f0ea6263431e396ff710cd99
BLAKE2b-256 7748f638f2b1bf0300707d875744d18ad01c47e304259567f85e60b8f86b64c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 354.0 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.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 50cc2a69102d235bdcb98cd3ba7999ef09e7ebb519a82376c2cbb881f2a4ea88
MD5 36e221a6c040788c8acddff425dd7c5c
BLAKE2b-256 60de3bb31523ae85674036b31d26da7d83b385836d1906e69a4158b36b40f351

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 362.4 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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b30577a0c3bfdf23d961a5302f7a683f642fc4a3c9c18fcd8f2a543179039aaa
MD5 d7d523c3e7042467a568cd3394c6fb97
BLAKE2b-256 80a27503a616f8be7c0b5218fa77dce510aa4f7accefddc7cd1ea891d100cbbb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3cbbeb2f48420e6883b53f084bdec0f873265728360debc4c1ad8e304d708d01
MD5 706995d8a36c92f79673af71d716bbb9
BLAKE2b-256 1812004b677378ed30122a9cbfe7036bfbb16322c1ada710fa83d00545d5945b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33971fbdf66e4bd0a8f279a713dec52980bf36ca244d6c4b22bd682563169fed
MD5 b46859e78e9a60228f7b6f09b654bc7a
BLAKE2b-256 03b34f5361668f10bc6d12c6d20998307f999e42ffa6980dbbc5a1dd38165467

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b41bfb1c61bbe632803f5127e73091561fbde8bbca037ee7a15150bf7b401e27
MD5 a82c9e0c82868b46e96b4bbd117ec0fe
BLAKE2b-256 9d6aa6a1e5376743b6b8c6f213777145accea074cc052d31c646c6e90eb46dea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 311f76d6913e81593a08455a759b03e1ed747fdd463bb8674f1e10155dd545a7
MD5 a8c83e4e185ff892e1490fbc01529551
BLAKE2b-256 f0abb513481ab6b5a5bfbf0ae27fdfb27e9abc0eb1a8f53574ceb16a8019effc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4befae7cf9a99d39a0a2fee90be8ff74c5719a14219914231c4bebbb4d57234
MD5 9b8dd52fa142dc774b6b7ed8abd8bdf3
BLAKE2b-256 bb142ea1360d1430f037f5d4752c915b9f905087c1df24f7acd29b8c118d519d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40dc3ec284f1b3864a68c07317287b5a64d9c7e7390139e1728842be0be9ee6f
MD5 0249b340ce7fe4cb144f7d5eb3fef704
BLAKE2b-256 3c01c29cace5e9d274316b2583525d31508aeda6a9ba8cab38278d02489065b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54dd0fc50d3d5dd00f6079ca2a598657814de85f01651d4f1b3ff85a7a779a90
MD5 699a20edd38d7538ae56fbc777b40309
BLAKE2b-256 9aa97f36cf4b1e060778ce04f5a1a29b89e6dca8afb89993e027570113828596

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87b41bc67271b7fff28790ad4224c83cda43faeb51ebf82969a20ab4be4f28ee
MD5 67e62c8e24b2bc4bf086e2ac47a7c1c2
BLAKE2b-256 f7f5acbdd327302b135f60ea54dc3d3bdd658c4c4966dcb6cf7f2b6f904c0b5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1585e53c3a3cf4f20b31c42c16e9d87496c71811e43bbb89edf057723b12366f
MD5 5151469ecc96396892d3016010ff766f
BLAKE2b-256 83556f49ac2ac96e77daa2dc9816bf0d4103f0d2108b333f0d99106dfb901daa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49b5dd678e5c4470d03f67c0a84bfe4e2f0056ae4f36731281f995d7c85e4da7
MD5 16b7aa58f279290d19add72e93d11d0a
BLAKE2b-256 ecf254a667b1b06dd79faad9d2a0e7cb5cd5a96b40db45bd2e5d6bbfa8d05781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb6630d1b425e8ff8157bab8df8e0d2bcd03919bcce0cef9f3eb3bee1caeb199
MD5 3499b5303b66db7be5ee1e2d1cd5d8cc
BLAKE2b-256 a2cd974207bfeea251c208b7784c7ea7dce4bc87ad5b77560375d35247b32328

See more details on using hashes here.

Provenance

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