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.12.0.tar.gz (85.8 kB view details)

Uploaded Source

Built Distributions

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

tomledit-0.12.0-cp314-cp314-win_arm64.whl (429.3 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.12.0-cp314-cp314-win_amd64.whl (441.4 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.12.0-cp314-cp314-win32.whl (411.4 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.12.0-cp314-cp314-musllinux_1_1_x86_64.whl (822.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.12.0-cp314-cp314-musllinux_1_1_aarch64.whl (787.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (614.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.12.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (646.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.12.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (764.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.12.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (615.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (611.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.12.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (671.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.12.0-cp314-cp314-macosx_11_0_arm64.whl (572.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.12.0-cp314-cp314-macosx_10_12_x86_64.whl (584.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.12.0-cp313-cp313-win_arm64.whl (434.2 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.12.0-cp313-cp313-win_amd64.whl (448.1 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.12.0-cp313-cp313-win32.whl (416.4 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.12.0-cp313-cp313-musllinux_1_1_x86_64.whl (828.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.12.0-cp313-cp313-musllinux_1_1_aarch64.whl (792.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (620.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (650.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (764.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (620.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (615.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (675.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.12.0-cp313-cp313-macosx_11_0_arm64.whl (577.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl (590.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.12.0-cp312-cp312-win_arm64.whl (434.8 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.12.0-cp312-cp312-win_amd64.whl (448.3 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.12.0-cp312-cp312-win32.whl (417.5 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.12.0-cp312-cp312-musllinux_1_1_x86_64.whl (828.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.12.0-cp312-cp312-musllinux_1_1_aarch64.whl (792.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (620.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (650.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (766.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (621.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (615.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (676.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.12.0-cp312-cp312-macosx_11_0_arm64.whl (577.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl (590.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.12.0-cp311-cp311-win_arm64.whl (438.1 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.12.0-cp311-cp311-win_amd64.whl (449.8 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.12.0-cp311-cp311-win32.whl (421.3 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.12.0-cp311-cp311-musllinux_1_1_x86_64.whl (831.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl (795.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (623.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (652.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (772.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (624.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (617.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (680.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.12.0-cp311-cp311-macosx_11_0_arm64.whl (580.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl (593.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.12.0-cp310-cp310-win_arm64.whl (438.0 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.12.0-cp310-cp310-win_amd64.whl (449.7 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.12.0-cp310-cp310-win32.whl (421.5 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.12.0-cp310-cp310-musllinux_1_1_x86_64.whl (831.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl (795.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (623.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (652.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (771.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (625.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (618.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (680.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.12.0-cp310-cp310-macosx_11_0_arm64.whl (579.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl (593.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.12.0.tar.gz
Algorithm Hash digest
SHA256 eabfabfdd901de4fae46a7238b9610403e60e8b0f757a60e01c9958e2cd76c77
MD5 91256b65925b4de195262fddbbc83142
BLAKE2b-256 b662c8e324255257ec76b56cf59b59c032863e45519c71b720580311b819f62d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 429.3 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.12.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0457c7bece18c2e61ff3fce6cc5de96354ba2f525504ed445c0243ea974b5d73
MD5 d8c4e2d80e1ddda93550f877d4c76177
BLAKE2b-256 d8002860386c69ccca5bc6d0b91765c186053eaad96869c2a2f55123ad0200a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 441.4 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.12.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b8683dfca06d3f97435d564907fbc552744a2ae788a926f1f18251e2a6c53887
MD5 057a3c405ccc862eb20ab87ff0d8b610
BLAKE2b-256 118f8b202e3c729324ef08e8bf92d3d4f624e05a46251b7d34f6f38dc36386e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 411.4 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.12.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cb02e53d90bfbbbb0af6e16643d1538d19b3b3dd8c4ebe09c2782ebcad7c46fb
MD5 64c4ec532a0198484b77fc81147fbb7b
BLAKE2b-256 3aef26196b779eb0cba73365299fffd7bc79906c299917c89cafa316cb72fa86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c09a33ae5bb5948d9bfebd1f4658714abb4d92397e4a5d68006f8fde6045357
MD5 2cee0532809d13b230c323071d657e23
BLAKE2b-256 966176efaa51f3cdaab8499e6165332d3a3a2dc92b6e7faf8d0ac60007e9f7be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8c2dfe6e505e4438df8291ec6bb36bec339d05323578ed6831b8df2f26fb403
MD5 90f080bf2e2c1a54ff51919b7fa2b9c5
BLAKE2b-256 dbda50a6fed0fd3ed546367072988253a53cb7c481c6038ead0a18f870e4c807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1325046cc441884df534b699a9281fdc16f0f8a9d60104d55ef2447e51737782
MD5 0d85a5b7c18c4cc3d715884c4c2c116a
BLAKE2b-256 2b2881f535146f837378eb63d57dfd2a7615a155e52b8ff532729e5447e6f76d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26d03fb854312acc3aee7911d305b4a19f21076d2a13c8f09c15ba6624a64ad5
MD5 279f1edc89d298457155646013cf2014
BLAKE2b-256 26fb957bd45ab546310c3927e72af416b219366e4be3ff724e1223c15e9f4f17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fce289b76edce45ba446fe99acf432a8855f9eba6a0365d6096bdea1e55a2b6c
MD5 ea78207fd59b8ed21c6bf5013a65297a
BLAKE2b-256 ff8f40504822eefd4f0f422c5b059f6686c5930e4e4b200c4ee28da2719343db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e300206982a7324d3b942bc3cebf5c8017491222b2af9e2a6a92ef41834e998c
MD5 bf2ceaa8a9bbe15bc77fb1894166681c
BLAKE2b-256 072ff4a3543237e1fd0f6246f93b2f988751ab29148e22042601c7d47a6a514a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f51bdbd0c50c69c7564ed54298ae1ef9f8bd4bec2767887a44ac2d8e3420a103
MD5 8e260e5cfd243a29bfc7173a846e91c8
BLAKE2b-256 e928539407f5efd803379514e659ce04528f4943eba2fa60858a03e0bef7dea2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 133164bc0344c424da8579c81d3bdf4fe77baf24f76ab7cf7b1c3c62812b2b97
MD5 70dc0671df65a0a744c3f38732ffdd14
BLAKE2b-256 6a7ebe8f12e47faf82e47a903c54d537d8bbf9010cf0c785434691d3eec8ef86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 770ca47a31458fab3113dbfb493fab05bd4fd121eb2922198325a88352985665
MD5 012dd53e7debdb538f4564af190a6ac3
BLAKE2b-256 7af0ef3712238a5e802670554ee9d294027ce5da1747e699ee651972208ab2b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d7a745b6c47498f3209be6503efb8415ef7b9405eced58d28fa19ecdbac88066
MD5 9acce70c089ef39532dda11aed36ccc7
BLAKE2b-256 0a3c1c93a7c29ae5f77d7b06bf181b34846d52683dbc10ecc008c7f4a6680e60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 434.2 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.12.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d8126ac2bd3b059b1f0e942bc7700d384fe45251e348ce967cd9c373ae6e8a96
MD5 1517f7f69aece2729f6d3fe6dfa811bb
BLAKE2b-256 819de9e4950160853f830f9aa9e36b1c822d8ccaac60ed344c67e27940bec67c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 448.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.12.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7395f2a7b2b9675c4c70d5649f363c59ed34d00cceb5f0aa1dd10c839ec1e615
MD5 805f4278173f4d7ed0a5c1ba1be8eedb
BLAKE2b-256 01b1f74ed80a5f59e74d470e1f1f2b6d149dac7223375a986b9eab7392d0e9b6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 416.4 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.12.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 968f0fff26b8f074e39d244f0347fa66f898e22153a0b4f5fe704ed2049a8519
MD5 e36e3767dbe431cfc38a441dd2c7cadd
BLAKE2b-256 2a1f082a44399c891c7d29c5c5fc6ebdc1826725e2ef45fc212d26901f2d9a24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6f0a3d50caf9af9f96cd6639a397f79a1889f0e7724c994709d6148a517558be
MD5 7cf80bcb51d850c872fd0e84f1a8eaf5
BLAKE2b-256 540f46b67e1025f23d2ebd04ba7cf2672ddabf9e81e907985a912a4a6b73aacf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7de919aea4e94ea582ebda146afe869756582d4a2da9de9026dc5d0329bf832d
MD5 71f5c8d1e44bdfa7f176ba9216cf9eb3
BLAKE2b-256 8a467f9e4d225f0ec0a20a53b8bc7719f1066eed6b269c3f509d281655e175c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae292c10784298fde6046ab94d919ae08a3e061c08442f50f6892b8e7342cdce
MD5 9ec1b375d21d9910c5499d36dd7ee230
BLAKE2b-256 01b7b23b5e55591606d71eaefde207891f424bfec45e2b6cdb9cb90e37b95668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7fbdcf264df973b3449be46c03aaf63b1268d181e7c2025a66154fc33f457c99
MD5 30da368b2b8e55fa3b7be5bbec205de2
BLAKE2b-256 59d450d56a643ebcd64875e7182e4873b2a958b57766a7a0eb16dc2cb39a46c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 695022595f587751f7a552a6eba8388ac1a348b57dd138d84ad471be908fc1c9
MD5 c0672a08fe00a9103991b69075452f28
BLAKE2b-256 0f9b3facad82a6aec34f63f1402df6ca43d030afdfddbb04f1cd857e4c7769e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e567bb7acf1abe761d966685caa0cb0d5629a1fe44ab08bfe8cc6812a18dd474
MD5 5ddd1793cecd60e46d70a55bf086f644
BLAKE2b-256 2cdf084fc7d41caaea65dc6b22d4b720e7b76edad8be7b8aa9f144f950108be4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5f282b8e6e40b2ca7e066d122ff8d3ed27f3bca59aa06d682fdbef4c96b92f8
MD5 029f26fc085795540fab5cfe0c48a3d9
BLAKE2b-256 3f57021a0dda73079c7cdc68fd4754a5398009742915c5789048ce3be49a4f4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0cbad9fe32962933ecce302485238eaf9c4124e4aad34ee61016560c1f4b917b
MD5 1f7e50c0c1f0b14f08aa5ff71f798552
BLAKE2b-256 2ff39c080f9331e329c2cb7d920416a25444aabf2d502f2eae3f5f410131f485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af5f08d4c348df44e840622dc234c3bf5ddd0fb60b394250b60a335712e6dfb1
MD5 60fb6b86f69c06af2b2aaffe7995d479
BLAKE2b-256 50e495ad4e0f27b6dba97855b1e904189749a35218e5b2a61d09207fa0c3348e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ff90f7bf4c8ebf8ab9550aa264fabf671f0976120456a082bfb7de82a0484bd
MD5 4f3467d978a80f5e5bfb863b75896579
BLAKE2b-256 7cda615e1a2a597350e3e4f07a6ce55e39ed056120918fd8d9a0ee7f57cdccea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 434.8 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.12.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ec9e4269fbf9f9a8a3588229aa707ed81168e2744abbc6930ef995abfd4f9770
MD5 1baa41b29e29c0489dc5cfdd50bcbbb5
BLAKE2b-256 b7840869dbaf4732c166978bfbeb71dfbb59aa38d8e51377129ba78011132f1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 448.3 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.12.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 786d322f7d0b061788d8a205e3692a1a1101a4d84edd72f43163f077cc705c1c
MD5 b8c3b4761ced763252f543ccbff8dddd
BLAKE2b-256 c3641cd7bbc7022fb5043b00da1f153345f5969bb9ed60f8dcb602ade37c8ad3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 417.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.12.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5c062210e7f2e187e1e96db6727b91c6f186edfa32fef12d38aa834db3d686e7
MD5 de30e39a033ceb717ce3e2b17f883edc
BLAKE2b-256 e240ecdc1fbdeb939f6a60bbdefecbf55b0d4bc95783ce334242b3d8b7a0e48f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5c65302e16f94f2213494eb0f4f82fb19d5f4c7675e1a7fd34b5230e9f363c94
MD5 6a0a7838e91772eea100ef1bb0de9b1a
BLAKE2b-256 70f1da76b03de69a8cca46defe899459d51000f843cc9e36f3a5da6592e3bbc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc4659c079e16a537bcf87a541ae8184a751c5aa052f61605a9b8534354cea40
MD5 0c2b585e900259bf1529e607f7a73cc2
BLAKE2b-256 7cd96b556d5beae36bc6f56f4f63508f640509b449fc0df883e730c89eb2dc83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a845f684da8b2e7262e4bb2118334ab0fc12524c45f5781ccc29d4677b1e6c1
MD5 e4eb4057a10b8daacde2d9f923225019
BLAKE2b-256 df7c2c561550ddc26664b02df12a01b1edd25f1a6e492e4baf639ffdea225c64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de42aef79d315f5fe2f88a2a9fdd399573d86c02f320a5c8be2600b07e0c1df3
MD5 66ae2d0e3c75d125a713bee8bdf13ffe
BLAKE2b-256 692da4eaaa7055c7c393763a40e7c9bfa7a4b44a09f63ed1490fe8c86ef63f88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cf9b6025c3b4bd8137f4b297813977e75d1c98b79d8ca1b4f21c9217f2f39fe
MD5 f1f09aced61032d1bc3a6b545e35044a
BLAKE2b-256 056ce7efa0764f764c32a79e8f4e469c14f5d83dfbd8b9772425a425bb59744d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6293c1e5d4207120322a1dc2c5059fcb498fcd27041e2c6d02eae91436ab5a64
MD5 9e8e90544e985ed13b84aa3d487148fc
BLAKE2b-256 bbbce777cee4348b0d1936e605a2b3765e542953502030fda599fd47a06f0eba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 835d98eadbcc1daee1732c7dc109d2f3fe4f40cab655f9b946adadb3b62bb564
MD5 d049567725174354c8601bc41cab4370
BLAKE2b-256 e6a77df0c84538198d3262ba26f0cda2ef62a6fcdf4e469a3360d43f660b76b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d96e14c6334a99a6eab5a7a5b6a411ead3f7b17f3a94c6bcbda604407722294
MD5 aa216c114e5490107a27e7c44cd2a20a
BLAKE2b-256 1b2627dec49b8d9a6110e2b32c32fc3e01b40e693376924c43935af10dbd1085

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c1507883736955f38f1f941dfc073d83e2ce8e7be1199c19b85895f2f052979
MD5 44ce3533c9ffe3f209cf7995f1413813
BLAKE2b-256 7b678ae91e7f364daf05427fb51cc4352eaf50001ecd2b4e1c7da3e7b130d666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56ce97f3f8f2a9bc860735a643b12fdfdc7778f710b316d1048fb5f3e96b5bd7
MD5 f6ce02bbd26aa94cf87a9bff3297df73
BLAKE2b-256 175f8132c6924d6d43384f3a18a204ac6a4dd0b128c3bd8e3f04bd3b2e520a6c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 438.1 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.12.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 613ed01197524197662d58775612e03e9396b78bec25654bf5188f45cf44695e
MD5 3bf237f2a5fab9a1dca8714d3d266f3f
BLAKE2b-256 53ff37293396e2b6b09e085ee3c1959369d4c58d1905faf36ee816164cf0b632

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 449.8 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.12.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9580fcc4177f7820125fa474382831df3f9f8ea66277c58da1a40d83bfaeac7f
MD5 84f8a4f4ee4fce719be800b6ebd99b94
BLAKE2b-256 71704a4a49ab973a894f53702960a59f750c47df13c983d339c463caaa952654

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 421.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.12.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 12436fb3b9ca7be30d293c0b74d4d343724d7ea406b05ea87f82f24c191f9edf
MD5 28e69df886cc6085a138aeb0b622fab8
BLAKE2b-256 7215a1774cca0c68399385f46328504c076e77dc296f3c9be5a5286b7c74822f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6e6dea85109cc46d3e5c34a27fa8d16f79e430b3aee83f076889f3fe55a82590
MD5 71453574b1bd591a282bdf59c9189f53
BLAKE2b-256 d585121d2315c715e75bd6f6c76b6bfba1bccbf00bf9db29bfc60f88979dbe45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aab67cf9d7ab2e2ad15c0d96a7b5fcd855de2c0daa3e90a0471a0cb70aafd1c5
MD5 3a8716243db77ee22941cf0f46eac8ef
BLAKE2b-256 d72c77d4560779d53a4dd861ef6ce91952fc96b954af4bcbe4de807afe32c4d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bbb346a7e9c0596e494072a0860187cff1836a94139a494f80fd90ee0dde86c
MD5 f776cbd00aad7d5d548b068395408965
BLAKE2b-256 c32d5c15002c13ba45987510ff27a184b8fb42b5e05eb082e13064ed8733586d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 860ef0b06f5e2be930b123e9ccc174e1d59a93afc37901feac639d7edf7d97f6
MD5 f7a41735f6add1354fcb7141b1343b48
BLAKE2b-256 23e1c9aac1ebf09862afacee066a9bd88a11bc674c3a99a21851dcf51fb6b1d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b2bc42868a1a1e07881056a6c450ab9381aaa391b2d16bda8e5ffdf78a5ec39
MD5 7b4ca9c189f060ede6a68596af71dded
BLAKE2b-256 2823e6bb93cfaff3e4f6ddcf783f2ffdc43237faec4ab491c0634fdbc1678ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd4c0e3eab00d22a9a852ee678711c761c9fcb63180ffb62d3a0490414295572
MD5 41954a8f711f7c4f4abf1273a5ca3fcb
BLAKE2b-256 629a9a4bf4ca14bb788b9a7f15272113312bc96a6f0bbe2348e5bff553b80efc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 366b56916414d9726ceb873dee9f8ad9d2b25bd965c558192c56be0bf9bc3828
MD5 0b206a4e5fa40a53e48c5f7d4050b260
BLAKE2b-256 7e00480c304b8afe123a4a6625c1983526a72199bbf91b2441e713509ce42905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c4c2a9ac4e429850020871cc6e1995f03d28b3c2662643b3115cd4a730618dd
MD5 9da11a3bbb3e0454d8d1d34184b0a5c7
BLAKE2b-256 a29abaa88d3a9a115ec81eaa602d8bed070cdada740934585862e532ca582f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bafd57cfcd2b99bc2dc8b5a820e56eb486677f34dd51d3f2b53d4dabc21f688
MD5 5c21a4a2272cb8689d50de6f52ff0861
BLAKE2b-256 edf2dba113fa739ecabd1cf59dc251e864c91cfe6db1f0110711d80ff0928a53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a008d2cb777543c8a21a33af8bf6050f1f184b7fb5e3e24799c2e1b9ad1b982
MD5 27cfd949185c9f5df0d2c877028ba68c
BLAKE2b-256 f981399ffd933c31717b6cd17980442977c2f11ad8f294a64a2ef947e075dde4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 438.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.12.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 810573023ff7047e152a94d9b4ad6605bd0be31af7463d2e03503260c4c4b287
MD5 e17241088994382b2c3ce0d31e5f111c
BLAKE2b-256 e2677285e5d51f993de4f362433134ae0bf14a1b7ffeaf2d5e40c6abf4937e85

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 449.7 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.12.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 560898d89bac050e8e9d8b277d074d09885628b603cf381bd7dfe1d8b18693d1
MD5 00b2e984006e172d8672ea8311e3d3ca
BLAKE2b-256 5573f3e52491535b4f5c68b7af6a78cfbad7246002b170cf976bb79cb905132f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 421.5 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.12.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4dafe65cf12c37142d45167b0a35e149f5b1ebd3a14b99117f1e14a2cb82c46a
MD5 6f0e2b02e5b372fb2b6be87310a84b99
BLAKE2b-256 a558a07d935afe1d481aa61172e9d3b786ca1a0c36871c7b34130d6da55fde3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dd46a39a64f85361acc9595fdbd64fa0bb831bb58bf46d58757a5cdf61d8cfc3
MD5 e1e5f5a51ad736817971be3ffbc9a73a
BLAKE2b-256 ea47c37c5a2e89440a1e86a6d785c531345b0042c473c3c0ee943a1cb8050f7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 80d80ed4a4f2b9c608238af9c1438c3f7e8e59764744d6456aee5ea9ab8f5def
MD5 04d1e10c9a48461bff61b9f405e9ef10
BLAKE2b-256 4dc5c4f619a3b64762bd0cb8b11950389f939e5d32f0ce09cf372c2d08347bcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3913e7cb92fe10240c87611eb66a810ff026d7d7b2d2e25f898f1ab63f7437a5
MD5 667110673b8959847cdb4814669172be
BLAKE2b-256 cbeaeeb9268f39b3a693469d2be1e984069ed350ac78b6256148de080e844ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 949f402e0b208ada0c035026712e2d94e84166d5fe2800e1862cd89795fcc233
MD5 8519e1928c90c779a30a67395456af56
BLAKE2b-256 bfe08b7a20e9c052894e8c48ea5c6d6aa392378dc3ae63929ab8e91786f25919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2526f4e394b661b4af33caee609d2886f8d953d6540e6ffc9e3cad928dd84a3a
MD5 bca24821a54665a44e05bbd625625b92
BLAKE2b-256 d04a75f75c491b7b0e2ce449ce4a7a6fdb6eefdfbdea0da54515a7d14c8869db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f533b41e826e62e361893e8c3669f9a7bda5597b0f05f0afd7b4b0e72b18193f
MD5 1daad838270914f73bcbf6a5f3d60861
BLAKE2b-256 42808b9c491d7c38f58983bcf859cdc5bdf05555316e9b2a3f09bbd62fa622c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99bfd829adad7bd5d72c6fd1a401e43738b1e2490b97e93fe5a9e4e5244c5bbe
MD5 458d72ae9432b171cbf9a7249f7d744b
BLAKE2b-256 8eca3118cb974f1b208f93a24f6e54def9093ddea51fe4c0f29f609b29ed527a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 02b74b3188b2616a8ee4868b1a1c2eb386ee9d9b03bb75675b1c2709f1ab1b93
MD5 9439ccae9619dfe75295e307459d9c41
BLAKE2b-256 451b474b4d2c534936e5a30e2cbb5f54859f49dce2ab6b6370b8f76474871ad6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a93fc5e38645d8639c46485d070ead25e28cb50a0a0dddd2c8540b6a5096fa61
MD5 d5dccef6a24b9d31ffc1860cd9d59ab1
BLAKE2b-256 4dff6e19cfe8c87d56e37d0bbce2f1c75c8a421b15cfd280fb0ff7d86301f575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ec258b086986cceba3f5d86760cc8aa79e2bb8113ea6300ae636b2364983e6a
MD5 1cbcf54a210994788dc2780e8f358561
BLAKE2b-256 670f3dcb0c183897e04583b9bd87c4784aad8528cfd3e6d5c52269ab383197e6

See more details on using hashes here.

Provenance

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