Skip to main content

Format-preserving TOML parser

Project description

tomledit

PyPI

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

Parse a TOML document, modify it, and write it back - comments, whitespace, and ordering are preserved.

Quick start

Given a TOML file like this:

[project]
name = "my-app"
version = "1.0.0"
# Search terms for the package index
keywords = ["python", "toml"]

[project.optional-dependencies]
dev = ["pytest"]

You can parse, modify, and write it back - comments, whitespace, and ordering are all preserved:

from pathlib import Path

from tomledit import Document

text = Path("pyproject.toml").read_text(encoding="utf-8")
doc = Document.parse(text)

doc["project"]["version"].comment = "# Bumped for release"
doc["project"]["version"] = "2.0.0"
doc["project"]["keywords"].append("important-keyword")
doc["project"]["keywords"].inline_comment = "# updated"

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

The result:

[project]
name = "my-app"
# Bumped for release
version = "2.0.0"
# Search terms for the package index
keywords = ["python", "toml", "important-keyword"] # updated

[project.optional-dependencies]
dev = ["pytest"]

Truth in advertising

It is intended that using a Document feels just like using a native Python dictionary, and that the Items you get from it can also be treated as ordinary dictionaries and lists and suchlike.

Under the hood, though, every Item is really a path back into the shared document.

This is mostly invisible, but sometimes the implementation leaks out. In particular: because items are paths, they can go stale when the document changes underneath them.

doc = Document.parse('arr = ["a", "b"]')
first = doc["arr"][0]       # a path to arr[0]
doc["arr"][0] = "changed"   # mutates the document
print(first)                # RuntimeError: this Item is stale

The item that performs the mutation stays valid:

arr = doc["arr"]
arr[0] = "changed"
print(arr)                  # still works - arr itself did the mutating

If you just need the plain Python value, grab it with .value before the document changes:

first = doc["arr"][0].value   # "a" - a plain str, not a path
doc["arr"][0] = "changed"
print(first)                  # still "a"

Project details


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.11.0.tar.gz (81.2 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.11.0-cp314-cp314-win_arm64.whl (420.0 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.11.0-cp314-cp314-win_amd64.whl (431.0 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.11.0-cp314-cp314-win32.whl (401.5 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl (811.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl (776.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (604.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (635.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (604.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (600.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (657.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.11.0-cp314-cp314-macosx_11_0_arm64.whl (563.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl (573.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.11.0-cp313-cp313-win_arm64.whl (424.5 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.11.0-cp313-cp313-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.11.0-cp313-cp313-win32.whl (406.2 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl (818.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl (781.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (611.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (641.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (755.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (610.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (606.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (664.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.11.0-cp313-cp313-macosx_11_0_arm64.whl (567.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl (580.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.11.0-cp312-cp312-win_arm64.whl (425.1 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.11.0-cp312-cp312-win_amd64.whl (437.4 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.11.0-cp312-cp312-win32.whl (407.1 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl (819.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl (782.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (611.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (641.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (756.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (611.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (607.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (665.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.11.0-cp312-cp312-macosx_11_0_arm64.whl (567.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl (581.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.11.0-cp311-cp311-win_arm64.whl (427.2 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.11.0-cp311-cp311-win_amd64.whl (438.3 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.11.0-cp311-cp311-win32.whl (410.3 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl (822.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl (784.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (643.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (760.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (614.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (609.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (668.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.11.0-cp311-cp311-macosx_11_0_arm64.whl (570.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl (583.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.11.0-cp310-cp310-win_arm64.whl (427.3 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.11.0-cp310-cp310-win_amd64.whl (438.1 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.11.0-cp310-cp310-win32.whl (410.3 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl (822.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl (784.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (643.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (760.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (614.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (610.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (668.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.11.0-cp310-cp310-macosx_11_0_arm64.whl (569.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl (583.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0.tar.gz
Algorithm Hash digest
SHA256 4aedbd0fa386fbd4f7d772b346f65d4c6d8080253e482b708f87aefc29071e7a
MD5 b7978d3072f80744b0720a6f39ddb0fe
BLAKE2b-256 819e4fa7818359fef99f3c597d7ac471dbb3f5fa584c052b0d50a11a41319bf0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4ad2f2c34a6b3fdb0ff203bab5b3845bdca09ece0a8d1413566e3b398175a122
MD5 522f83ba7941a4116d46cbe723def62d
BLAKE2b-256 d8103a9af15468405108e6a7662d30181b0fcfa913763077bdc59867acfe523d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7192c5316552bef332b2273a4f35a252f06288f2ecdcb4d5c1a4b4050aaf0947
MD5 4049ea874bfbf6b71764e5c17aee1a76
BLAKE2b-256 dcc64b49a9155389936862228c71a73a0ad177fb8d443b3fb132b3bfdf928e67

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 268f410369fab66207bea4a420ad5282f0d37d9b66eeff3116e4871f067ce78d
MD5 9c1abb6f8299d235c51190785228c8ac
BLAKE2b-256 65fdd2e185ad6ea9bf199bfb1b367ddd178c11d759e826b9bcf2a058cf8e7911

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 97a5f8f0791f29ff9b497bee7d9b6ec2443f4ff943c62df8488ded3b0419e536
MD5 349d0a1eca53e0e4b29a841e852bcc61
BLAKE2b-256 152b4e6c0170e31ceed6c0960874999f5d0d077758ef2c49398cb9f71dee1d0e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8918d5d9a6ad89debae0910a979cc8f62ff34be52279bae48c0eb0154514420
MD5 b99d6b52682b98eea759227479b727a3
BLAKE2b-256 97e867e7409486ca702cef15b4a6d38f8afec6aeadd2ccf62c344a8bbe8d2561

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c35e5b2affd4ef9309a0363eb9afa491ad6903486492beb8a754ad67f47c6a3
MD5 65699503674edc32e837e2278fb0616a
BLAKE2b-256 f28bba38b26ae8c9c6386a9c44e7e5ad7167bc8470d9133e28bc8fd00780bc06

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d3f1dfa6d994c412d17865c7bcc9cb564701a186ba30bec1b299fd9394b9e4b
MD5 3500a2192af69b407f281aed44b39b0e
BLAKE2b-256 123120e6cf28f590b02788e1b6b2a85356a5aa3156e71107533987524aafd643

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 513dd60a1b249b8a92e8406dcd5c47784ce47ce7bf34e07e8d4a749e32a9b536
MD5 d6cb7770c52ee5064c68cb99dfae60fe
BLAKE2b-256 6d1a185577e58e0229a24d00c8e4c700c16ef7543ced397eadc3687e4ad9cece

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 698a3feae1dc70986edaf4951a00f9c3cbc90c906078828db484af74584e652e
MD5 a1023362a61a08e38009aff1a944a351
BLAKE2b-256 1f46229f3d8a7b146fdce3e1b4a0b2a42b843bfa504846437e33e7da704afa18

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 801b2d248ae165de133c92de943d2d7c56a1252aa56b8a0efb95cefbe92ed33a
MD5 666213a41fbd79cf69b0a3007b7564ed
BLAKE2b-256 dfba2a904228d35bbdf6b979c71ff6183fc3c0fcff2f9b78f58d2c89b5a61ae8

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51511b19c210ec037d64858dbaab4bb7244d11893ca6177e9d8af8bb2a8202b6
MD5 d1fcb76cb5d90e421b1b835f81a22224
BLAKE2b-256 66cfec08b73d9be63e6d7b884e42e1f14641504f830b97ee3f6ce9caf47f5153

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bea5bf9e0d260e1f1c068c11ca2fe22cb36f48b15ebb5e8f4fe0a0f7ed8e6d49
MD5 a1184520f8ec5ac8b4e63c15f7e62582
BLAKE2b-256 a1ef79fe4af179d9ffe4e629ae51bc0cda115d6e7a16d1d823bc49c01a7e129f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f517dac4e67beff559f590f0ec6d44866cdea3a60a53af6046e1e190c1750ac
MD5 9b8c1d33732849ff1c8e0180532ca965
BLAKE2b-256 93e2085a0db24deea118649bb4f2c1df0bd156ae2b764c6bab8b56d97c00a495

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6f97055d90ca5aa00870c2172f5d7d737d06031a8022d5147e23a09a25c4d14f
MD5 2fd2725a0be6f0924b39602b725ad30b
BLAKE2b-256 f0d3d88bdcb11be091589fb0a55407c576815d9179b4c394ac2264dc09fcdd07

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0d4b4592eedd3ca0d570f674735042718371b6fc07b5d04103624215a7844742
MD5 ad0cf85ec7d4fe1c18f32ab8bf4a635e
BLAKE2b-256 da5df46b695bd26235e358e6e765a79596531151742b9c7809347e5780aaf035

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e52d921dce003cb3111835a9ce7e471b0e4002d6c5ea935c78e1843c3b4b4225
MD5 8c39ab22ce9d1790f9f5a9f41e247076
BLAKE2b-256 ecc48bd353313557fd75f6c19be13c6dc3f044826c06682d6541a1a08fc07715

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 48fb02aa8dcb73c87b8429c922dd2cb0182fa4cbc9edd7d62d6f15181da37771
MD5 82e2164bd8bddd4ba6fed885f89a7c6f
BLAKE2b-256 1441f03e2308453e7dc122fccc86189965408ad533ef60e5d22e48589241bf49

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 438315f61f87bb3802b6c204bd6a5ae1e30669001f3983ae4c40517c0d7b8b28
MD5 bbab0623abc34fb7f953bdac00ecfc89
BLAKE2b-256 cd1d88d52f9cb143557e2f60e96d34d864817d44f6991b415dc435b9307bc88a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd911fe9e39181ec92dbc65640ecef3d5fd6c1c4080a5f9a37152fe0a271396f
MD5 578f46f625f2cee0442011bd801223fe
BLAKE2b-256 27ae5c28743bcd1d2bab997dc5b85982479f93ab4f13a6123d89c6c2d233e48f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 288aab4c264857cf05a292fc0b66490c50e0754f55611fe6c50388a7cec0115a
MD5 ca5d74288a51f61904600d363f1c24d4
BLAKE2b-256 43b17760b69fabf23b959b96d187597026c04b6c8267e32ce203a94de7225bc9

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 141c6aa0268196db68250a28313d18a4d44a74d26e49177bf1b8354ed20f3b69
MD5 24b5418e1e49763af20b6fe2a42bd813
BLAKE2b-256 6d9cec9d1a022afa9a7e25932972e2c9317524d063e2e5c3ac2a04255d9d84f0

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1375b59dbdfbef784f4fb4a241fecdd2545aea8166273c85fb7c7fc62c0337a
MD5 305c8e43b6489ec85c83a2fbaa0310cd
BLAKE2b-256 b011996e7ef4b9739c47a491c564651006427ab79fd371ae6d599e8384a7c7d5

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3880ee46530e7cdbc0d2cb9ef9d922d20f2e49433379fa37e905c647114a3bb
MD5 6bc6dc421ef8bf6bab517e89e6b4e0e1
BLAKE2b-256 48f0815373d3addfb79701073045228a6fff61685bf69f2a8ff94f29c4b4b100

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4dc14677927b11d4b9f4538ee927aa32de6476c4bea91506cb87ec8744b12372
MD5 8f01b0bb8ee4fc9b2e382a0868187093
BLAKE2b-256 b52b852e1124dfde6f262edbaf6058be120bddda44e7a99a4513e52887168d90

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f09f8f586fa4272c16361350355ed9f5f0272082a62ffdb0298aeab038ce223
MD5 37ac695e1cdb2e23d9757163b84c8292
BLAKE2b-256 d3c0ab5fa3b7e621e0f27c1f243f27d160cec18155b3d59b8d2ba17f4cbf5d21

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86275576c59a89df7d34712f83032269826f39362d11abc6f54411d96299cf77
MD5 65293ff92f92c25b77719ea915bb1e3a
BLAKE2b-256 008d8f92ef14d825e7850b7880cb77e8b14aed9b85adddfc4ee3e9c3b9e43add

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7f73f69e5cfb1bc0f1e4769292d68436d0c97ef77ebc2b263fa0ba9003c766c4
MD5 60d6dd975cc10bbf92a51cd119aa1275
BLAKE2b-256 65beb2233cebcc23bc53bdaa7af537015dc0390e6b0b8b62e4953e28c705bb0e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5b0781d1c1b21da569b2b0c853121f2a15fb3fe700f88659dff838dfd8e7a4d7
MD5 f78a037acdf771eb9a890886d0de7d62
BLAKE2b-256 6d5891c952be0155e140931fca5b6e8b4471a9ef9220c7f29621f1ab9c884652

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 af132ef8b33b5d9653960f87a1d76d4c27c15ca2f0f391df3c006efbf9d5bb55
MD5 ce27e38beee5384213b09ec2b60c29f4
BLAKE2b-256 117a4a573d93a0afa17c446f756720928a89ecd40aeed9564a276c2ce1901be4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 498425fbf658cd5fe011d956f77326ec92fae207933c74535d0be1518cbb0586
MD5 7ba562b09d8527dca5927b1d0cba9f49
BLAKE2b-256 ac5e6f2e42519f88f9e60ac0048fadea6e3176ac00dd1c0a5e2e9db6c5d3e2ae

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 50cc8e7a8bace493e0d3d48674582d609e83fcd1f5abc798efbbaaf0e33f128d
MD5 15cc4d1ac3a959597b7966cf9aee707d
BLAKE2b-256 083955004c215cfcb418c5d60b27052c80ff086ac178e5e86199109bb1aeead6

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 835bf403eee9836acb74ef23c2a399424260d9760178d91273ce66a05de561a4
MD5 589e9b679c32cb55f28b4cfcbb9efbb2
BLAKE2b-256 1508590eea06d3497eaaf4a501427ae46401e66a23de10487ffe215ed7679e30

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5fb93da10bab275fd46911511eb828c9eec6b7a066e23f194cc8614d60b433f
MD5 cd7db27ca83e6b2f475caab5275ec94a
BLAKE2b-256 e65412bbc11165b6a10377df8f4d323fe62440f6b18968276589df157676b1d0

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b397d9cdc26d6621010798665f10487cbe3762b27a0b915c1aef84463be1a980
MD5 383a4426d2aa03e938cbb15c90597e42
BLAKE2b-256 5d73e32f4579e4173df0265d8af81bdb6093907eeb605fb287a07b71ce64291c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9010ec8f6ce89947c47007b1fbe89622952d7dcbaf03b1dda25b64be93a40387
MD5 bf557ec09c455c0f375d98f7b40eeb40
BLAKE2b-256 d268c79e16a6976df0ebd490c1a66391363f82bcd1677b5c403e168d68c0771c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0a59b8213c161f9448a64673f4f4792a9b1cb2d06cdc59375ec7e85dc9d0f3d
MD5 25db93a39ca9e39b14b1010980699b52
BLAKE2b-256 f9434dfb7a0748725b01249b7eb3cd6c3ded192ec1ce19838f17ff373f9741e5

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 83e4d482296615bbecf46dbe12d20fa91c96334b0d05501094a8f68a5021a5a5
MD5 80461e023bf6813ca2645fd77f459988
BLAKE2b-256 3d3b362f6c1334d88ec39ac0b02a31df205ac1857b81d90e6c47eee75f9bdfcf

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 475841b7f66e62cae6da6bbcc67f7250b3d8a2c57331c57cdb460dc2b0e5e56d
MD5 8111e8e01cac78485fee93ec6034ff5d
BLAKE2b-256 9a8e8e699db535adb11a2c50e6dd5ba2c286d30058b8f5824159f47285ad5c4d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a085ffa59174ba244debec3f523c5dbc6192074617dd32a47ed5ebda90bd40e
MD5 5f2b3dbc46aa5b0925c392a62f9d8323
BLAKE2b-256 a6d34edd284775e64a156835dc09dc64ca9f686e839b2a9a50891be651b9b8fe

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b06bb74c0947b6f7fe75645fe1c040256cb679d57f1f0dda54c292b2d71cc8de
MD5 e69cc7f0ed10d14b56bbded667ca78e0
BLAKE2b-256 249cd2ac8961d040df7214aa2a123a3285bd511d510d5d2273ca634b29186ce4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 62cde2a7a996c059918ba8054269bdc38b2b033604482755f0d6ebe71550e03f
MD5 cda73ca14d0c932a11ac0b994161e77e
BLAKE2b-256 edefceaf3ada6775011c939a963f15184d417c1c54020ddb3d2b3f4a9f1ae72d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8a0525a7b1ab2ed622399cf55bcb93f06b8c9f8a70faab19d5d9f5b15455ce1e
MD5 94c99f32832c0b74761aa14f026b4c74
BLAKE2b-256 011930075a6651d9dafc163db950f8a8087f2eedd34fe08839d5a55c82beaccd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f480ccf8c41292e8274a9e911176663f82a7eef4031b7d1ef61a36134461a274
MD5 630eb234a34937ce7894ea277eda2b3f
BLAKE2b-256 a8772be2ccb1fbc5000e5f10bb4c631601026b0a341540aa40e0d16f92500a2b

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6ed79e00bbbb641357e76068c2acc4e983ff75282242f9f4f66d069080f5989f
MD5 fd377d72a783797c610448a8e6ad4675
BLAKE2b-256 94671bf26e6abe016e3b710f8b454b07120056144ee1ed3e387171d0f56818f5

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fd8faaecf5f20c9b46544557792c142c954f4ce9c2c21b0e22152bb8c73493a
MD5 d2dc143690cadb99068826f8679b5ccf
BLAKE2b-256 8ecb3771eeb00551674d35093bf8341c62c03c06965ccc824a3a5a57d14c2771

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 568988cd3b6bf2137695bc308b91e086dbe371546e1b04e8b46469dca97211f2
MD5 dfe1b69f375a263ea490b4224eb8cb60
BLAKE2b-256 5c53dc04f608358e2933884b027c5c73fd92289fd5df91865b3e3b2326767098

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb86e5bb0f3348876393cee653b32ada825bf8ab1364cca8ecdd864407180b1c
MD5 4855b0359cb6008dd227d04ac6e87c24
BLAKE2b-256 0eb5bcc829ebcd8698e19447c8128970f9dac2028d688bbcc80f0808977d43fd

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6a6799d6084817ddb37d6e8730af29716a02243b7dd976e306db6d3f36c5e4f
MD5 3904607c1784f954842d7dbb1ce2c863
BLAKE2b-256 5397ea4791dfaa9f73b33b12b8cf44d52cc01f2b648e09fd86432fd5d9e87ff9

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad5d3d01dba0c4403011167b359c5cc1d971e73fbae43d77264fc94d732072bc
MD5 a832c11a41641a2e8379a2c3fc563f31
BLAKE2b-256 172026c82be5ef2e5207a8bcee5e81e5fb09666177a3a2961288c04a9ec1ed11

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92cab56f995e57a78eca0ed67b4a0e9b7c6ece57a94455de480688587a768e8c
MD5 a01b8e4fe92c25811e0c50ac9f26ad81
BLAKE2b-256 7183fa66b976ef8648cab14777911e973599b86a2fbff3c76c8c0904b2a3c4c1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4eaf623964a2c932fdda58f983aca3e6d332b8828c377d53ba946673cfc45a42
MD5 a0b74b96aac93339a3d37437a9c00e18
BLAKE2b-256 1c70d349b55eafbfa6d178d694d64271e7a632b8239a53e4fafb291a025f062f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bdd8d42af424700bfcf2047402eb643adcd3446902ccebf4084e2fbdb178775e
MD5 8d0fddca26da088973c13269ac6ba7de
BLAKE2b-256 d341d3e26ad48970aa3bb29fb49da9ae8f91257683cfd8c0e8c4f854d2fbef7e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b1c3c5f7c6ca36676fdada9f6b783458a0d9bbddde56f8b2117797146863c40e
MD5 f12b4302e1b68bf35fcd058611a271ee
BLAKE2b-256 3c81068ca44a0f147a2b40ee4b13a3653072b02bf7beb92296ca6ed6af6175ad

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4b097c29252992798c145614b243955b16e82cb68f9eb3220f40547215b26a84
MD5 2c6f03c9bddf161b06611331bd14d3a7
BLAKE2b-256 edbc6e919bd912c01fec492cc46f0a3bc9bdf882f50ecebf99b00f1b258a7561

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 713d56b642794be36e23999c3897e8906de7c129a5c8573bd8ffe20da196c40f
MD5 5c9d22411c4b35db68b4ef3a09e397b1
BLAKE2b-256 9b24b1bd047d838528c5d906e2910e19c19b8f3fb297e7479d65fae602daee40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c94f2c3a199740d02f6f22b42cfe2a9bc3cf3d1edf4490d0960f8e756d54c979
MD5 1196105b302c9dd7f9d4a8b9ea7de71e
BLAKE2b-256 02452337ca10a33a82ec8583a3e4b884f4bb17bdcf4d3e3e48a82724eb6ed17d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bfa28e58169d854558fdfcf0f09d33d21e516bb4176807efff2f46edc74b6a8c
MD5 3f01a4b6bf1802b862a58b92d6d628a9
BLAKE2b-256 f2a7fb1d191d931753b0fe77e042d5dda30d8bcbf3582d15c68a3eaa60a02002

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9d1aa87a3c8cd07c23c48119643702c421e40c8c515c3c4970d35e27bf95222
MD5 64b47eeef86c82f7bb29425e63ec110a
BLAKE2b-256 6dac2aa3920ffb3171ecc78ac9caf81e991c25a0963245b2bdaf1efb6f85c210

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c222759386e44fc46394dee5dc2294417e2a8cb59769438f6236cebd6746fc4
MD5 70dac5b7a70aa5a8d30284ff37bb653c
BLAKE2b-256 48e41dd7a0997cc6a1afeeb3e49a284276cfe56a9d500401d29fd8196752a37f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e0401e0ed74dfc60f71a6c52e23f1cc1f65ceb3309c0f1fdd9526442f10cc32
MD5 8ec28e579bade397b826bcf78ff812d1
BLAKE2b-256 f365e29833c9c8e2999e7073d7950ee355e95042160f4fa4165e01ae08f395cf

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 335de9e2b5d6274d381f981443c2f36bd06a657fa505266d44852fa98f25abdc
MD5 6a918c59d7f5928c2125a029810e8fb6
BLAKE2b-256 50e8fa39f8b0d9dddeaf02953e1597952e9e79895cdd8bb950daafc128f530b2

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37446e690200abc220dcbcd7bc84e50d1689ad9d72e0656d14dea92c429ba727
MD5 16dbe359f2f3c13a7fc115a1024f9350
BLAKE2b-256 f7e1d4090888360f8b8518c0b019d419a4c551815c11154a0391431ecca9ca8c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 75d9be59f705b22703e16b6c4457e6a2d48a7a45f8c9b99d206007ad7d8ec914
MD5 6322a1afe435b4c463cf97e974b043ca
BLAKE2b-256 9690045a6e461b394c732b356e25b0e191762167d372a1a37489f6f57c8525e3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8359b31320e41a5636fe7c71f3b6ee30c142d52435c06a971f4db1e1f8ed037
MD5 444bbea105ab29b28e11a882f7b65e02
BLAKE2b-256 2a4d78418b73a79dd35745e44e4b425743b1bd819ee5b744e53e97ff141fd427

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.11.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ac990c275738da36066881ef37ebdee77728b8dd0fe2f86e152ee5af1136da6
MD5 d047f3b15d4d8a4bc6feb036c8e31c82
BLAKE2b-256 7988eef4bb67f87e909a06441ae1fff5fa59d801584a14ee922a30458fe28224

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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