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.1.tar.gz (86.6 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.1-cp314-cp314-win_arm64.whl (430.2 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.12.1-cp314-cp314-win_amd64.whl (442.0 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.12.1-cp314-cp314-win32.whl (412.3 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.12.1-cp314-cp314-musllinux_1_1_x86_64.whl (824.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.12.1-cp314-cp314-musllinux_1_1_aarch64.whl (788.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.12.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.12.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (647.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.12.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (764.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.12.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (615.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (612.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.12.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (672.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.12.1-cp314-cp314-macosx_11_0_arm64.whl (573.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.12.1-cp314-cp314-macosx_10_12_x86_64.whl (585.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.12.1-cp313-cp313-win_arm64.whl (435.2 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.12.1-cp313-cp313-win_amd64.whl (449.1 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.12.1-cp313-cp313-win32.whl (417.5 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.12.1-cp313-cp313-musllinux_1_1_x86_64.whl (829.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.12.1-cp313-cp313-musllinux_1_1_aarch64.whl (793.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (621.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.12.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (651.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.12.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (765.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.12.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (621.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (616.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.12.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (677.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.12.1-cp313-cp313-macosx_11_0_arm64.whl (578.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.12.1-cp313-cp313-macosx_10_12_x86_64.whl (591.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.12.1-cp312-cp312-win_arm64.whl (435.9 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.12.1-cp312-cp312-win_amd64.whl (449.3 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.12.1-cp312-cp312-win32.whl (418.6 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.12.1-cp312-cp312-musllinux_1_1_x86_64.whl (829.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.12.1-cp312-cp312-musllinux_1_1_aarch64.whl (793.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (621.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.12.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (651.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.12.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (767.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.12.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (622.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (616.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.12.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (677.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.12.1-cp312-cp312-macosx_11_0_arm64.whl (578.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.12.1-cp312-cp312-macosx_10_12_x86_64.whl (591.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.12.1-cp311-cp311-win_arm64.whl (438.8 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.12.1-cp311-cp311-win_amd64.whl (450.7 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.12.1-cp311-cp311-win32.whl (422.3 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.12.1-cp311-cp311-musllinux_1_1_x86_64.whl (832.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.12.1-cp311-cp311-musllinux_1_1_aarch64.whl (795.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (624.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.12.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (653.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.12.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (773.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.12.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (626.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (618.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.12.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (681.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.12.1-cp311-cp311-macosx_11_0_arm64.whl (580.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.12.1-cp311-cp311-macosx_10_12_x86_64.whl (594.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.12.1-cp310-cp310-win_arm64.whl (438.7 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.12.1-cp310-cp310-win_amd64.whl (450.5 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.12.1-cp310-cp310-win32.whl (422.4 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.12.1-cp310-cp310-musllinux_1_1_x86_64.whl (832.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.12.1-cp310-cp310-musllinux_1_1_aarch64.whl (795.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (624.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (653.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (772.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.12.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (626.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (618.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (681.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.12.1-cp310-cp310-macosx_11_0_arm64.whl (580.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.12.1-cp310-cp310-macosx_10_12_x86_64.whl (594.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tomledit-0.12.1.tar.gz
  • Upload date:
  • Size: 86.6 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.1.tar.gz
Algorithm Hash digest
SHA256 97d1074314542221e8efc4c4e9fcf823c1bdda1e3286f6de8fdc1db96e1448d4
MD5 a26b783ee3feb85a5c3694b55f1bffbe
BLAKE2b-256 6d75b25fae2cf30dc9e458d199705c6af52cb39903f317a3d0a62c24be2927f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 430.2 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f4b93238f94c5c8d1f87a010e38b0e5ef2a6945ca473963630084351b3067f35
MD5 c5b89a3fdbda58247f22b1e98d5b3f27
BLAKE2b-256 7923035e86aaed7d29ae10a13d4c1ce7ed4c8e2cc8590345dacdf6d44b8b2a43

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 442.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.12.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cb403e58258010ae73c1545108ccc935152ddd0717c53f2bf20030bae21f58b8
MD5 e6a576ff801473d700e1a37dd20a6321
BLAKE2b-256 a970519bad555cbff4d5378a97f1accb5ab2d734838733eeceb81ad50ce61a17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 412.3 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 eb6fb85689ecb73cb30eb8186c4b5983e93977d79277739ccaea217e805be019
MD5 b7925adceca73e7f7206c4d00eae9324
BLAKE2b-256 f7832d7f6b3baf1dfd34e9604421e4d99b24ee0b7290c9441900136e3af0dac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 888c6595f63f66058a5631be951d8b9cc7cc3ddca4dbf9c633572c65f88f300b
MD5 1dc3ba5c64be82870924c4b8a46953ed
BLAKE2b-256 0fcc6b0bbde7d6d20bab7456925b7e33bfdd0d8829ec01d5f5999678ac9925e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 19cdb96b8f6d22dab3761382b22753689a94c62675643f66fb035d5785e64e26
MD5 267e4e4e41ce543149e8fcd0e59960f2
BLAKE2b-256 6741e2fabc239d675931e1a281bb51e207e43c28ecca3ca6024548fab737ac8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c20fd4a8b7d7ea47a5181232059b6d8d8aab8698b65a264e9c4caa48e9516560
MD5 c63089bd1f19eec4b5f41815d82cc42c
BLAKE2b-256 12792ea257b7350f7066024f8b80ea46ad435a69d5b073ba397df9293d74a127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96722fa88ea26fd424d9b05abc9180e9d4fc1ccabd737ab08cacbe600bf98140
MD5 c4738517caeaacf2a66c1b30c3479dbd
BLAKE2b-256 0278376822401811af0032dc67ca60456c89af01ed46279bb664a191d5af89e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91994f9a1361ce76e2057229522f0eb3dd9f7b0e82c8a9755f2396e4e9bc87bf
MD5 6e0aca317848c7da949f4e7d6a48b429
BLAKE2b-256 5ff1008fcecae366fd7a901c8a76b4a99c374eb281621da90896fd1a3df1f6dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 847999547892acc7d089be4bdfc9bacefbea27423d2141f6e17d594a430d58ba
MD5 24a43af68045ae2b1e24626bf5353dea
BLAKE2b-256 851e1b4cb3a3547584943446fe9d0c41d8499d4564558a454df085299030e708

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e40951e2bdc8971412e3ed842446e31efbf479bd632b568140171834886c0f30
MD5 ae16e21a86b072d1aa669f459eaf3c57
BLAKE2b-256 a056c6c1f6ed736e2922f2a0d7101fbcfb9d2a3688abbbd56846f926e3c746e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b451663f70946002cd43ba5554c79052c2d6591f2f4008a9272597c0283ad00
MD5 9f9d5763a0754c77b3af95622e4903e3
BLAKE2b-256 3a74ef075fd1299b6e874f62c66f6f4a30a6ba3ca154ee4feded378bb45aeeb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5efe40521832971173fa45147e7de785f8038b3d89371e4646d927a3f19b6a3
MD5 7107e4e890ef191fc66e878b55a3ecab
BLAKE2b-256 378db0f8be7f9aaa269c8a2f987ab95aef365572523ce28a6d3b2e9dd58a3d4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96fc1369642b4cb4a660244a32e4cb1e909aaedec2a5dae7d6edc0b47fb92b78
MD5 195b03313b8f34905a540bf1f93c2793
BLAKE2b-256 755cdccb65cc2f11c0381f63f7d088bb29549e04c339f841e14878120da13bc3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 435.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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 49cde7ac71bb1997aee9a78fac1ad63699973f242cd7abfe50b6cfb28cc85487
MD5 df8cc785a9d591ff07995dff0c9eed72
BLAKE2b-256 9b9b643cad3cd55eb6d725fd55ff7590a5d65e2115ce0fb380cd3e8e1e8a71df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 449.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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f8a353ee62868d1e09e5e41ea5157298e1717c2106459959ade38cda5851538f
MD5 e15f34c917d7e6527f0a624e2caa87aa
BLAKE2b-256 4a3809d4f3dc9a9177c74d346b7fa0946772a1107e43fd2ee1023122ebfb2328

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 417.5 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 60c25e42430813a31fd8af6ecfa108c723ce7f5f8ac3079e86592ccfb6b7801d
MD5 8364e59eeb0629318448953b557fc03b
BLAKE2b-256 3bc7a1c11262b8b57821d44dc2e61099f272fa9bbd762b81c999f597cb313cd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 61804bac46724ef9e50b3ca2203371e5732a91b406b6a4813253e3945dbb61bd
MD5 f4d4e35c63b8bcf69442071b9e8b2b84
BLAKE2b-256 9488a9d811f2b65fa78f7b563687145723fc3b9cdd70b19d824054798b6b52a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 60fc29cb7cd757c9c4cf8f21a7f6e26222aeca8189cdb154d8e1560b79e38bc8
MD5 9bf749de5398896fae71c8f0152d5c8e
BLAKE2b-256 6db063ccdda2e9848a1ebb87e9131a6116dff3761e959e723a9b241e2367781e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 501b70fdb0461d00275210150ee79097bf4dbccaac2345667081ac259e1cd5cf
MD5 4da47e80f029dfffb307b2ac27ab060a
BLAKE2b-256 67710e67eee8134b4995a005e97a97078abf887d0f3d2693e443213851038b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ee73ad712d211f556cc47e7bfdfdf9924babd14456be9dcc4abacd75a95fa06
MD5 2e997226ce98df48148959ed4c2378a7
BLAKE2b-256 c6bc119a1833f3506f52ccac26d4100fa0b8cd8b85d4b8c325ce76a8637e705b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fa4ca807088cda650afadccd20c3977c31082d4dbf018bc0815ac2082106e1a
MD5 34671fd12cd7abdf8105129b75b8a579
BLAKE2b-256 1d007e75b32c2103f936423cbb3e7a4d71d7adddf05c701f22e9f19c6869f558

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 870fe090ea6e6fc600def0a68b463b2cf433bb63be082ebbb5c448fc1d7847bd
MD5 7e75709dfa82d4bcbe6d31810c3ee261
BLAKE2b-256 1dea870bbf0a060bfd5f55642019803efe48776c6fa60958a19b7a8a0430f3b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee504d5ab6986f600a1e592f926cd5920a390e9d7ab23d21e8236cfa2fb8b8b9
MD5 0ba3a968c29411ad3e47655586272f9a
BLAKE2b-256 4feb5ed4803d959c1301deed82c33e48e5b119e8b7f727cabdb865bec20a7e79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bdd84210f35eb842814dd0f69985efc90b4091382e9e9e512d29c4180a747185
MD5 2f93244c4fba79c7d19aa9adbfaa62ba
BLAKE2b-256 b0057d9d3199fd9f2d8c79362e0ccddd9801aed6b574d933e775bfa4f203a178

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8388caddbe34568f713105a811f10123f2b7045a005c96fab283597877527ae0
MD5 9a0e1cd7464d5af7b01801ea86816d7d
BLAKE2b-256 83979be9e0a93844238d09efa14f3b4ad3a3f54996b35fca5e52d1a34e4fd205

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2693403c69673574262513c04daaa637cf9310de6b21564a0a9e7c8883c148d5
MD5 d5f4f922601ea7872e8ff0e0ced22a69
BLAKE2b-256 c3aefee504c95693c0744031f0c1eed91b7e8c277f5cb8fc1a2793592d98ac8c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 435.9 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4e0f08900ef587384a875d599f8a52ae99cb8a58fc76d9d6eff7b85c647d7dcf
MD5 380a0773fb7bf4af7be9d78f345264df
BLAKE2b-256 4278d4e5d4f63d6da42d137a4c53bbbaff330483808a88f668c5fe1f2376d2d4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 449.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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a1778e1b593ffcf00de716655fddfd99f7f9aa9620f51eb9c0be64971e2f74d
MD5 3bff360e7a874e8c4e8f6d8eb36a12d6
BLAKE2b-256 b0d80c7d83dce074370af3c87dd5ccfe6cefca549fa85387af9e67f8af29b51c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 418.6 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 411a71d2c2bdeaea6d84d81c92ecc6d07878e7102b09abb6f6cc2b27538bcee5
MD5 37e9e857c964ce3b29583145d3d89980
BLAKE2b-256 b007fb69507f5ae5e10b3b7516dd0937c994d6502df2b562b1e2ee7a374973ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70dbc743e93295bbe722d91b617f3e983c34eb07e97ce8432131e02e6b253de2
MD5 30afd5c6d60b9c72a83b93e26f3b110a
BLAKE2b-256 2fbefa5d774483960b49b56caf07255c3bd73c77cf609102913428955c175f63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 988289153943174a2daeb321e92d8cbf025ff94b9df9e9ce7a0672995a2e201d
MD5 94eb636c4a6237488a7290991dc0a2b0
BLAKE2b-256 7dbe7ec64bbcd7be48c10d13bf69cd3e6d7b0cff3fc02d3a7d8b2d077fce4b25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae205b0f81483840efb8b080464ad7ac9274fb66e10e3f5062e277a3d61605d5
MD5 01919d367b41c30386bba594a117b71d
BLAKE2b-256 956983b0cfb11ca5d9f81411f4bd14bcd422b38840e351fa2567e0f4b8da1cf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21df1592f2242d4844f2acf482c3141bca84155898e26183c3bcc827da94004c
MD5 697323cec365fdc35ea63c58d5937ce9
BLAKE2b-256 3dd391d9c8b2a3604d54e792581e67a5f85accd7b5f5be8c80da475a7edeea23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e138f1c475ac5eab1a908d9c1387a3b244a85a5b8cb3e13fce447f2ddc741d9f
MD5 f76159b5a5e033e163df91267c1c8be7
BLAKE2b-256 4ec0cb9a5ff2d1024000c23aab4d4d36fd77a75f3ce8ffac320587cc53021e53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb6d597d873cc26bfde99b6ad8b76a1895c5b8d6d62bbe2300c5278d5ad6490a
MD5 f6d3d9cfb018107338d5ae5975c43447
BLAKE2b-256 8d94ab31bdd81ecc53a79ed87a3b387f370b2215a7e3e643799c3c7bac1f39ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61d7b7f16e26d5a69069851aee0609d59788464782ad44022699dece77c22dac
MD5 c6408996fafd13080c3bbde7703459ac
BLAKE2b-256 648157074c36c875820970cfeaae4429e52e07440e10d2817169f9cfe9f873dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0cc515403a12d0659cc7d181b5b9d92ff6f4cef367d984ce56577771fdb76a1
MD5 c01f2c69b4a16bcdaac2eb6f5299f166
BLAKE2b-256 875fb368bab8786beb3f3e584e7749bb8f17b51e20ef5f6a96bfe140edb1866d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5c09d2e710cbf28fbf600fa880b347cbc33dbccec83faa1d5182e3b8f9991bf
MD5 24ee16efbb7a635290446f3f3ddde803
BLAKE2b-256 09db75236a358a007b625a4881acb9cb671ec3c1cbd1b77b90493564b5bacb8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b87145f272d3ac1eb844cf1384bff38736b62d713a74d92f263b5e0e0f17cde
MD5 e2296f72bebd62256c981dbdc7a72cca
BLAKE2b-256 1175a20b8069bda8462180af71e348008bea126f080340b7f3b3dbbdbf24bd8a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 438.8 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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 51cf0fd0cbd914d81768d7fc741063cf570cd2ce29c3a507f70b787614b3d5c6
MD5 5c4937be002d391a1c4c75f93da3e60e
BLAKE2b-256 39d7a25089a77a955f85d87ca77c4354691c5ad76ce9516a779c7b35d300ccdc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dca32bec6944c0c92f883736bb48ce75e86bdc7e92a01ba22a509e8a42a2f248
MD5 2765dc044312c6d21d4d2b8cc16a9b7b
BLAKE2b-256 caabe89a97573ff3823b0a30c4bb261cf6efec840acb6678b5a98958b719e4de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 422.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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d0243e7c85c60e4d5d4a2d330385bd354afa6499cacc518105c4a1cc103fe099
MD5 b65bd6e39540357de408fed7f592c2ce
BLAKE2b-256 e146668c0e9ea83dfd7e9467fac949a80f553b8af0966ee125c0847c8dc40d2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 92b035844e30c750c7b898ba20a5f2283f51494e5b5e26c12fe45a9f80ec3d8b
MD5 dfb93600faa0af20eb352ab7ff4e1ff5
BLAKE2b-256 bd0c1c2b65259d72eb865b29fd3c8b243770ea2d66fda2ea51a69b47cab5402d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5c76d7c328e55e03b939eeb87f71eb6e2e49a5d692901de2497c19f3ad010434
MD5 33a07f89b5cee64a582c292cc4521c51
BLAKE2b-256 877411ca8d161c4d82623ddc4d1537463c42156272b3c7f97f89559ee82e8676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d22a624b695c49ef0c6f6eff143a67740d19a464e850c8f483fefd78d306387
MD5 f7a48a8b91e538df0980039746188ff9
BLAKE2b-256 a27b9235f17dfd07fce88d77ac4d97198e6dfc6194bdd4b2e81962d9ae544f20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e94263cc5d29fad59e90c0f25d0a7bbeee63a58cd9e280ddf0e3cba38a248d1
MD5 64a140c5f5951e66bf9cdb86f04c5743
BLAKE2b-256 f9e506ed2087510e2d842fc369f0b862a34bf10b6fb76732db455cbb298f332b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6aa5c3b4b6b010edf38081e7e564c7ac29879dd4c305d722277fe70b2dac63ee
MD5 3b1fae159b901fad5a7d526f0adfd44c
BLAKE2b-256 1d2c7e9ae1c7f5c3baa01e5303cda7325ab9b46ebeb9c4c078644c68372ae698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6918ee1e3dc483d36240b34c63c54aaf877a2eaa99780077f23aa7626aca0e3c
MD5 98092e51e44354e0561ba0b21cd0b8d3
BLAKE2b-256 87269eda93ed32b077180e1f994036a5d03eb4c85b0e208e1fe0021111a129af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29357190b7d392af189b37d02a243d7f3f85b8627d4131601906c902a6dab44e
MD5 e291b2f15f4869db719a3a401dbb2fd4
BLAKE2b-256 a1c3be990c25658f0192d11cdc31f737cbd82bd67ff2ebf5db312f2f18ac555e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37e64d5766c3ea2ecbf45922c876492e2e728a88a2c8b811d35f28086393b206
MD5 0eb5aa4faf1d6c4edb04a6ef3c1441e5
BLAKE2b-256 5469cf9a6cfcf6c1868e3cebde81257e6a82a48d6c264362f7b09d03955fd562

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 268d3e2a09b0c3df52ef8eaf40726cf7b5a2d54280c090dcd062b1060ea207b9
MD5 e4668fbb8575ad8e0808fb490429279b
BLAKE2b-256 b78b1a890324ef0065c18e46d699d05d528a599f4a184e48eb01f3aeb640a66f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7522ceb295e810f81a7643d71353105bf3702bbf75ee20bdd6917395eda1908b
MD5 de9c3b470269027572ebbad637fb8a40
BLAKE2b-256 af5eed6b35afbf27d75ecc33cd150ca574ab5e0eced8aa892f3aa74849097366

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 438.7 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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c106963058e72190331208284897a6b25fc463d4a7715aa008c8ebcc73355911
MD5 3722e7541a339e9b4d0e836497986610
BLAKE2b-256 3b6941ac9516baa9e5fc024c9091d9ca24412706eda63a6f4ddd4a95ff2b2d47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 450.5 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8724646f07e5570a00ecedde7d1639e62e051865b8111b3fc6085e024360c820
MD5 5bfd7da78e26e3b7e07161d04ee8b8d0
BLAKE2b-256 00f7297970035902e8497c492b69e10f45ea0451df4582f3f77b131efbf0ca1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.12.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 422.4 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 533172af6e392a274bcf7c5a25f685f306cb0cbfd895e06be03c735f2a3d3b7b
MD5 6012cd3b774694c32cdd14a67e3d0430
BLAKE2b-256 b0bd7375bf5142565ca963b0aeef5086a4267929795b1baa03c98c9ff0db7ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d0b5ac12f2c7ad3f1c5acc8564bc507765bd85a52d814043e6a550343aa4808
MD5 14f6ad8e46a440298cac1aa9597a903f
BLAKE2b-256 b48ac6f06c7f80b68187375ee7543a8b565c715970898a23e53f870ff78c1f88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5079631e799d2df1a2a694f168d0288c121e723d1b9f095e3f7cc1c6dff304f2
MD5 ec926e596936ca9967a2b655f8d7fbbe
BLAKE2b-256 8d556cf22ce280798e54ba2354e52b1fbee22077eb893c6d66cb2ea9e030a7ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bff2f0384ecc57cde74e8f5eb2232073f3587f6a5388aa6427370743ad138f8
MD5 5b19e0ed2b9d5ae7b043d6543851a711
BLAKE2b-256 4596c628e9ca409927b140f513b5658c5f97addceded8dda57406d60d3255abe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ac243bde30a7863ab146ebe79d166743dd07c784febabd89c38b67035cd5e6c
MD5 f7d3a428ae88ae6856aa097bf2d3e9b9
BLAKE2b-256 d864f961b9ada8449f7cc1b80bc2ac22adb12b18f50baed3dffd10b6fe72ab81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 875a3a6d0b77df5cb036032f4d009ecfb36f0ba25fb76cec306112ca380968bf
MD5 c22b4a140553b895c42fafb589e5cc19
BLAKE2b-256 658994ec1d449781f249deb57545c2967f4a53c61fc4572e8bf9c6f28cdaca6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 005532cfdf3fb79332f13a2052d592d34f36287c77c658becf534d7a5202100e
MD5 6425b5fb23b82af01f7e0859231e118d
BLAKE2b-256 7332c4313eea9ef4f8bd6c21ee4fa67a1a42e1c480a8d92bc960c02fe326b51f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9545e0e6795e6d18ed121fb8527c69c9ad00e898017f49cf2dd3df92e79d91d
MD5 0da87be4c5bcb8ea635d8b79b34f89c7
BLAKE2b-256 e07680a780191289951a04c4de72b323672ca2653c1381a6cfbe6a111ff1e523

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 014756f53755c213b873666c66bc7aa0e55fb2c63e1c980dcb48083e97a049fe
MD5 138a47327122c96d2abf0bfa8141c9ff
BLAKE2b-256 8c83e1061126a33482d703f0e1353af69c300acc089ee3b02f99ee4ce2a70cc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78b38caf12dfadd2bbad846f76d40696a57f79798b8dc594b97dbca14810e164
MD5 b40db35c7d114bcdfe9c5cb604457f0c
BLAKE2b-256 450ffff56756aa0c49a74f9df6c8add26f6d7a6aa49ce00ca2b4e4138e2610bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.12.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f5891ee292d1c987996828a9963140a36d0089171209d9e69cbc8f33b35525b
MD5 ab0692e93c63bac6085200d734863da6
BLAKE2b-256 5f2a5b6292cfd0d42fdf15f29a24a1e328eecf025f268fa25934af754aca97a8

See more details on using hashes here.

Provenance

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