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.6.0.tar.gz (48.0 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.6.0-cp314-cp314-win_arm64.whl (353.1 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.6.0-cp314-cp314-win_amd64.whl (362.2 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.6.0-cp314-cp314-win32.whl (339.0 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.6.0-cp314-cp314-musllinux_1_1_x86_64.whl (738.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.6.0-cp314-cp314-musllinux_1_1_aarch64.whl (703.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.6.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (563.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.6.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (677.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.6.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (529.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.6.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (573.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (482.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl (490.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.6.0-cp313-cp313-win_arm64.whl (352.8 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.6.0-cp313-cp313-win_amd64.whl (362.5 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.6.0-cp313-cp313-win32.whl (340.1 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.6.0-cp313-cp313-musllinux_1_1_x86_64.whl (739.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.6.0-cp313-cp313-musllinux_1_1_aarch64.whl (704.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (564.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (529.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (574.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (484.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl (491.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.6.0-cp312-cp312-win_arm64.whl (353.5 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.6.0-cp312-cp312-win_amd64.whl (362.8 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.6.0-cp312-cp312-win32.whl (340.5 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.6.0-cp312-cp312-musllinux_1_1_x86_64.whl (740.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.6.0-cp312-cp312-musllinux_1_1_aarch64.whl (704.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (564.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (677.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (575.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (485.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (492.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.6.0-cp311-cp311-win_arm64.whl (356.5 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.6.0-cp311-cp311-win_amd64.whl (364.7 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.6.0-cp311-cp311-win32.whl (345.9 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.6.0-cp311-cp311-musllinux_1_1_x86_64.whl (744.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.6.0-cp311-cp311-musllinux_1_1_aarch64.whl (707.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (538.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (567.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (681.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (536.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (583.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (492.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (498.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.6.0-cp310-cp310-win_arm64.whl (356.0 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.6.0-cp310-cp310-win_amd64.whl (364.4 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.6.0-cp310-cp310-win32.whl (345.7 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl (744.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl (708.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (538.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (567.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (681.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (536.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (583.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (492.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (498.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.6.0.tar.gz
Algorithm Hash digest
SHA256 bd3f096cbc35659be7cd370f02bbd8617ddbaed7fd772618ad772b92a030d6a6
MD5 bd553f760feb709f01793e074dc8681e
BLAKE2b-256 5af0d061f0767b48d90870c9dc15000f4db3a75fedadedcabf4d19e6f0a6e0ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 353.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.6.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fbe3b67afc18467327d1c2c0651884a0d580fde86fbd8c4a746865198a45fa6c
MD5 5ac3d6211ad2e3d141ed439f5d12a9d1
BLAKE2b-256 7a93003754a976de8b34ee80ece1b30e37403bd3cdf1dec13326e4146b936174

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 362.2 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.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c0e6c5ad04ea95cc40719de17e439694b39d11f7e439709ec3bb748c87e0e457
MD5 97271087f60b70df144bedde35561999
BLAKE2b-256 eb7b8f60f096e6cdde871f64381f98fb887e5a5ef2e24d96bb16a031a03b1ca8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 339.0 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.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d4cc56316031082a052b54c6dc09244f2e167781a4f23ff631edd275ad620d23
MD5 6cb34a2e98cc3d55c4f6d591ca24ebcf
BLAKE2b-256 7b0791f768f575c64e5c0b6580ca9af84c9f347b69d73db4e31995190d60d749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e72e6088d563aa1a07a08837c3b5df8e298b3e52d803bd0beb76eacd9c6a3d10
MD5 a66f41d6ab42cb154d04f5c302e59cb0
BLAKE2b-256 6354b87419df4fecc033c1312dc3adc6d8a7fa86de1748a163edfdbeab8a6950

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e9c4042e246557ce8574253cfdb951ef582e53564d43b9d6e2ec2f5942336b45
MD5 5723d4b4d038e98cd306715570b2dbdc
BLAKE2b-256 9866d9bf0e1f43a29e4508619f9c84578eeb88200a40335f178359c63a82c0f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21328bb95d57df1d36daef25d2fa75b64c6c24548a32299aff0ab3247d824cc5
MD5 9bb5145bb6de76d8bed5ffa372dd99d8
BLAKE2b-256 bc9f69623e0c9894a246b3ca463d0c7d8cd9d0f810f71d820418201a8e8412e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb73c1d994f940b229089f1b4ae288fbbf72260bb124b44e5e5bbb67f5c454d9
MD5 71578040cdcab63af50895a0edf75a28
BLAKE2b-256 51e76be8733cfe7913494281530d779a733c2fd360410270ca316e5a15ef4791

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b98218d7fdd7ff76add222670ff19f6df5b93c02772e70239d6eb69c4fffda19
MD5 e25d12e3921c20451d4d1364ae4b4c91
BLAKE2b-256 a99c5c8dd1b9cc9bfd699d551253f5f9e45e9d9e989c4e49ed58c2a290ec2a1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92d19bf0a8acfb4aa4dba2181ffaa01065d556ff3e335f9e1479313580acc95b
MD5 69dce12502c89168b3ddabe79a24d697
BLAKE2b-256 1c5e5513e1062d2f56e55090b11bfb4bebe8b9860f1e87ea30c933be326b0b82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8c41028140395ac34bd9730fae1e0cbfb6a418055f0745ae94259cff47f099f
MD5 dfb6d36943dcf9159a10c0519f73a7a4
BLAKE2b-256 4c227c38de847a15d749cd0a75e4163850a5a62aa089118feaf837bd30ef1d90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a262a2e1f76b3e7215ed1adf5b940037abceb940309565dbf46b92146582ddb
MD5 33ba9ed3315b4a4687fb12234110ec59
BLAKE2b-256 2554e53525a12028e24e4239dfd703634b8d3778904d3d945f0e56122b82ef01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f18687c32aed7f07856ee8389a60d23025c08a18fffdfebc18d322bdf650358
MD5 cd06fd2b6d419a65b9c3154090806de3
BLAKE2b-256 f4ecbab81ed752d9c6b44b723bd9c5b21d37fb56d497469cc16a0feae05a7ffd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e3f3e108e691e0448ba5a9b8b61b149f19987143d38fbf3363b2ec515e0d829
MD5 c07b252d07ea025013a954cd20e103ba
BLAKE2b-256 5a70228db9278f5b19d3dbed21463c465354725e5cdf80d94e5c9934a0195a0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 352.8 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.6.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 55ffa9917d6559bedae9694ae6e2d55eab168d28a6eacb8c3d5e00a6bcf1d0ea
MD5 b94a5652f27c4733d72c0913a9a6a38a
BLAKE2b-256 205742f3980ecce3a85c35745e963b8a7cf7ba952c792c82738bdb1c9d469799

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 362.5 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.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 464c253d570fe3f50a06151acf5e3e30cdaf0d6f9e2fc45ff05887d1045190e7
MD5 085879b01013a5b5428dc90ecadf38bf
BLAKE2b-256 0330a9e1673b3a2d00aa5d66f0327a2089b1aa226e15c2619413205bd1b4d345

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 340.1 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.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8bccf5633e4a035b13b6b277d4b19a1ff88be08a9e91bb1e7a982c461a2c35b5
MD5 e1ec99306dbb34522bd5958760238628
BLAKE2b-256 516477c57a9708517e5b8e740583998e275d65d39b0085660a981751cced585f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 efe94d30bebb64479927b8412966aa6b69e65ee57f3da20806708d92c1eb7ab7
MD5 90bafbf13b779cec5f35f7e628b12652
BLAKE2b-256 acf0f7c056a72d8fc6773fefbf9c24bdff91b098acf1a70c704de01ec487631a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 834031492a762d23c8d39637ce9e99f3891ad8bf369175ced8af9ab77caf2fc4
MD5 8a14b728cf8983864866cf1f0f1ad68b
BLAKE2b-256 0860edf1b601f946c7ebf1320128eadf24579269401a4b5160508a88a781aef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 514328b0d6fca336bc6b1eedcbef75673124de336addbb8b86349a8282bac0f2
MD5 8628f48701f4901e941e7f3a9c91cc49
BLAKE2b-256 46704f85d9fa74265a5e6e225530b807b9a6b5ac767c00afdcc61a40aa1470d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1578235f2b07136642814dd6c049c348a8fb14345a08a455afecbfab05cfa33
MD5 c35c772312ac318f05ebbde37a4f0c02
BLAKE2b-256 005a7f1fa953e2ebfb3183c469f8977add3669b9366635beb698cc2073b77a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79407f2967c50deffe153975748daac2f58ae0f2560992661d3b20568dfd25f2
MD5 f7483f5ebc1d87852b1939d7e59fed8b
BLAKE2b-256 a3b0928d4fefbd59f5a4295cdb77e1a0b77fcfec17fccc59032c12f92e34d73c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6ba7da7d1be82b93a4fe8b53baedf10362fe7cb084ad28b923e625393adb87d
MD5 5f4d234944fcfa195c2addfb29d9eb58
BLAKE2b-256 8b7a2e4be209e7d567fc6fe9106bf8d35d99decab9ce96494747734f824446f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0aaf9a95e4d7d15fa06c32a7fc030abe81d96579b97e066c2e269544856a6728
MD5 bb2465bed75dfa078042da7f5d1e1fc5
BLAKE2b-256 fd4cb68540819b8c9736480db575124f241c7fac5af708c9def96fe37e35bc97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd8b921fe20cc56d9a1adc7e7c25d85b248c83aed978b6202e2e476894b297de
MD5 fc6a401f0363d772c2a677621cd2aa35
BLAKE2b-256 c0f2e74a86d1dfd3a88ae6f71aea9a2482c15bd287b921aff8052736d5d865b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abd3ac114c0b5efe2221623471c985eecfff8783243563fe5cf4785aa89de2fa
MD5 aaf8f50b6022c395ea9e4208764d8d63
BLAKE2b-256 b828e16e759b9f70860736e622885c0732a9b416d686e171dac87e8618b0eae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65aaa49426313e14be186ea08dff37590f1b28404ba5e4be012d5ebbf3ce192f
MD5 d5a1bb8c8f19b0342f8ba0da7c0d8b30
BLAKE2b-256 cd8fc465562b205bb4264b182338e5fc6eb9e2730c999667bb23935342e41565

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 353.5 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.6.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 46af780c4cdf6ed084307f9d7d6e4d79ee02a44023540173100ed8753108e38d
MD5 41da6f942b8472afe744d4996b958a7d
BLAKE2b-256 41f202bcdf64839a4467fd8c29226f889c6eb3d144a3f1d12aed5a613e396c86

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c71977ed582136c955273472e92083e0b061064dd02f2c84d1490f69e8d03cb5
MD5 e819996bb7ffa3d9c39c4b97b8120751
BLAKE2b-256 c24e4ab35bbbf34278e740a982253d221580957da458fb59bb0098a8a3a58faa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 340.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.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2800603a040d02c27e01168432acb3d2b5d835b0415f52d84de3963d3ac2271c
MD5 0bdfca1e29ebf5bcba6d9e1a867e2916
BLAKE2b-256 a6a6b823222709eb69490069402aa6e2a7900ddfe12eb630f2b520fc089fc444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc13183fc2895a91a470e6f2e0519c5049b799bdb2cf9038291100770aa0cc81
MD5 82629da079d894fe168dc6fc9c43614f
BLAKE2b-256 1a514b5879437d48a7ee12caf4b031533d2a929279f6659da54826b8bbc5ed24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b41c7cfecfea81fbaf6b14a133433816616cf3c1ed2f8e3005ee54bbc4eaf802
MD5 ee23a9a81fb4891140d5ceda56adc06b
BLAKE2b-256 e2c0db46fe51e1f0b39b06e5d9dcbbba0c4eb64be5d1334cd81ff5b23cca84f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 145d8aefde7de4fbb02acf7d5a3a671473265444abf23a9b5952158057a016d7
MD5 7faa7f5363e027eac5c819132f01be7c
BLAKE2b-256 387e584e1e01a280c1d4640befbd3bc89daa70bcb19eddfdc4f149a67841b37b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 915f658f510ed24524e10058122756b5779ec5a5a47870cb30129d1eb6d38336
MD5 8f9dfa5f1a624b75fff9a1c7b927b758
BLAKE2b-256 f5fc98420110301210a6e3503ed90ceedf3660cddf54353e6f2b1bb4c02cdc83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a1a80d670aec1a8ad7eb3a45aab68cd28f91947486238d645a135932a195006
MD5 3496ab9e65f3c6bfd8ab798cbc2da18d
BLAKE2b-256 1db515696c92faf6182a5254bc4bcac08b2d48744acffb686cc6a9fb8706f622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0be3f3428cec20e331b2f47f8c14e87b10cf30931b5aa2332508207603776f1
MD5 8773864eb5a63c1445e9ce0963898ce2
BLAKE2b-256 79bc55ccf00c2ef2e616b5a81d1ae94bbaa6133d05d977e9b685c310d96863e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cef3a3dd0f089563ab4b1d0c149b3e4c79ebc664ba49492db3ec18e925821a8
MD5 c39318ad5bb3c7239e8fa52624d50c36
BLAKE2b-256 70b20092095531bb971290842be56a2798713af1ce5ec168d8bbde5dc82343a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 11e2ceefebb29bf177dbc9f472009b564e919684d8a967bc815cf796e41effb3
MD5 9f887f7a8a9e5180396509d9b919c9fa
BLAKE2b-256 5a98113e7101db252eed5c12b02c44d851bb4d32c587c145c35452186618a4a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 572a3bf392d8a22c598d96d791c4bd70c342b79075416ad748bf28957022e620
MD5 31874ca49d38405c4eb41a5c954bc03b
BLAKE2b-256 255615503d62c5f5397c4c0ecbe61933d94f3f4ad24fb0161972c0ed0670032e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8869afe5f1242ae0bdccdb35adf024e5efece2289740c3417345ffafe838f98c
MD5 409f5e602b3acf12819376766159fdd6
BLAKE2b-256 c438aa12654a228863d53488300d726e1761487c0bd1bf433bd05cc16bbdd039

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 356.5 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.6.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 46c503334a02c39dd87d1ea9792d9bb83a18a391bd19eda1e11128ffd1b45510
MD5 28f471e57ae8c41d96ad42658bd41cfa
BLAKE2b-256 0b537b991d9f198a6726c738bb3a1530487ca2cd7d3692aafc17b6a79d563571

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 364.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.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d55767012f2943ec2e7fead19fad95093d5c0691b5c1d0f368cf306c40429ed3
MD5 0d4903ea60063eaa01f02cd36c29b831
BLAKE2b-256 b9c2dd3e293fe5b0c9b5568e8b663afb11420af839cf9b4de2fe781048679c8f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 345.9 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.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6afb229c74eca559b5bad9ffd30c3bbada460d899ab60d4d3bbddb9585c4dcd8
MD5 9a328ac5c302d4f4efd9669f1c0628bd
BLAKE2b-256 3c5a08e647dca17055d74210cc99ddbbf40b25cb0e34d399e14ba97a135924e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ea557898fd21bd7e852c82081a733126edd59ff789f72db3afc5f8d043d82a7f
MD5 79b84697859fe1b1c9a9f8e713aee398
BLAKE2b-256 739234fd51363df254e57ae582ddfc6a54025df6dba2f6d453dd7e1be02ae744

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e3f66920a2641d920cfa258a6aea8a7af7435434fc6910d1e190c0a468981c30
MD5 b29b9f5b67f9f526167e7bfb80f3d7c4
BLAKE2b-256 12d7b99f5877197790e063680a5f51588934beaf05a2aaf6805a3c7657abf9d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40494be312eceabd6bdf1e7b9dfed55f2531f12e08dcde2727b94a285ff53cbb
MD5 ee1458462e72df1c3ebc9ae5a0634077
BLAKE2b-256 2829139a8b237e49916d82da6e3d5efd1d07d8e9fb87052b2ee0a3e8b0ff90f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02e7b99046a7b98acbdf195c4c5a5c472443c7f4d8c6936ce7a9d44349ce3e82
MD5 77a109a4cecb413e92114de1a6b16cdd
BLAKE2b-256 c44afa5ddffafc0380fed69bd130efbd92bcf36d6d4f85f7f39e36889697ab74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5901631775300b3e62ab987eb2826c492496b99f6e9cd09b431486ca60e96ff5
MD5 e6b55229d52b06f51bb07eace0163cb3
BLAKE2b-256 c3e3baa9e8533e889662bc1186d3127d8a7e29d05d1881fbb146e0db659d1161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3a27073357585a2acf4eae9c7a875a1b9ce718b37a2fd9dc3137c1bee6d7313
MD5 69930ea5779e661cdf161b2609685c0a
BLAKE2b-256 34f02c33c4d950db74cb9d3fcae531b1c2856e3e02b158254ab8fa412e84ad06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1c2b2f6837d6f77d6fa338285e7a1b8f3e5b428bda26cf8dd05df379fee012d
MD5 349b1ce6b1deee5c5aaaf710f2eb8cc3
BLAKE2b-256 c4d67c70f53c496d56349b5ff74dd3122a2ae42839f727eb5c1ec778dd9e3377

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a0503b867d3ef7af8157e911397b42b2c270e5f7fda14bd5be4f2d5721b3a87
MD5 e746a3c448165de33b072f333f38ed4b
BLAKE2b-256 7aa6702bee7afaa49f71d74303e0f84458b4c309fa067c5c490b269a00b7dfdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 705b3473f5b79c4009f45df904b43c550f21a4054d4d99ed80789218005eb344
MD5 8c6e0cfd4892a3ca9c30e1f7ecccc66f
BLAKE2b-256 bb95d34938f81430f6d3c38704e4cdfee1a50f423ac823f47535a3eb84adf85d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 678a02769999ea2a0773a7b08c0b2ecdb5d38cbb9f0d12a84b266e46a81ced38
MD5 dedc817af97c981beed5a6b80dc05ee0
BLAKE2b-256 c0ccb32727c6986d064121c4f2c1779e29db65462a7fe4980ec24607507a024a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 356.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.6.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7056ae2290ca2d9d87a3e267150dae6692b6d719c05527d9db9e9dda6eb331c0
MD5 e8daa9360c9998d00bc718bccc625b36
BLAKE2b-256 f97cef057b8c003cca3c901985148f958be8b8de9ed01960c0bf01408652fe9a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 364.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.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 11905a5d5c7ec86cc7b4e9e1f2a589d09757df48fbcbe11bc62c14a1b77a12dc
MD5 656b4cc0d897476a696ebef1a7108654
BLAKE2b-256 685ce022b0290b5f86d134baf53e2baa94e9a487c72d0f62fdb249301f1d912b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 345.7 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.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 23ae0406202bdff2ad61aa892e4fa4b941e5ecbb5428d1a61044a5dce365665d
MD5 6163842fa06f5691bf0311d78efd399a
BLAKE2b-256 402327d073fe6d7e5471105b3483be5cb9281ba4422b0219906cf839fbb2ef80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 086b1fdfd8d2f1e295cc4d08327e088ac2b98825e9ef7e6c2c7dfcf028396968
MD5 fe71fd554b349d9beaf6901fe80fb155
BLAKE2b-256 1d5dee6234b4e090845ba0e0ced3ebce2fefa66e7644ffcd1e7e3f8fe0d3d74b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db0bdbb7da9e310754a6f710ea0aa22bbe7f20af5e8586731c6f329c73a8d240
MD5 68f240625319283efae375c4fbaa03c1
BLAKE2b-256 4cdb728f01e1f34df56d423018e6f3015720e4b865aefa93dfd423ef9f200089

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a679ecb3411430695f2871b441074254e2bb17a4b8eb71de9914c4595f6f1813
MD5 5c73cd096b0eebe578a613a77b61000f
BLAKE2b-256 66016667fb5cad2d1c2543c57321129fe2672294968928df006e0de6d1cdfded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0eb3f32eaeabb7b9fd34875439710b863a4a87a0ef283387f2b12ba2005b965
MD5 95df481ae90c3b488acc56f70c1f0017
BLAKE2b-256 580cf9931cd2da83c981257bd683918001dcbcfc4fddaa6bb391a9af074d5293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 179007a3bc843a6eb104bacccd95d1c58deb0a039bd6f71a2ece78060744a752
MD5 1b0f7b83ea17dcfd831cb20389b2dc5d
BLAKE2b-256 63cc774782661d6f0005cc0dda36f7c37f58f2edc9a926e26a801406ded667d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c79fc096030bfaa27ce2426359e981f09584921543c988b36bf268ea43d98cac
MD5 e6b7e0e7fd3cbf18e689f1bdfe9925b0
BLAKE2b-256 66216908af1dc48949c054ed6c2ad3b5c8720af16c6c46247f72deb0b83208e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 281c57a980df875b3ab0d45e273556a556e35b2b8f81563db15767a60a0ed974
MD5 5ccd6a724bbd93e209843afa9baf193e
BLAKE2b-256 70c14b7684f167d2a4e44937a227751c586ab0ae6735310a8794b5b5ab48cebb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e19313f41328f7815a8f9bc5f65dc6fb86f39a721effc5d81c35da8a83c3e59
MD5 4819b19b416d0d907b0d5e2dee041179
BLAKE2b-256 dd04e58d1aad0d6c3a98f47be71e0a76e1f152fd7ef7900260061c4453fb47bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f494d0d19fa80d914d60ed1e8785d8bd8c2760465949cfc31b077130bea1f927
MD5 133f5c61523224e0c4b1f1fa5ae0d97c
BLAKE2b-256 81eab65c561becbe3a542828f1a6a04b58a02655e6861ea4fb48dbeba083479b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9853196295cc6c3a4b6542b81e9cce598cb6a6e202e82d4440e2ee74b3a374cf
MD5 8f22db0a447d745dec4fef24cc863f53
BLAKE2b-256 55d966ed28f2cbb3ff16fbfce4c136bdcd45435128bb8ed60228a5a653ea0ea1

See more details on using hashes here.

Provenance

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