Skip to main content

Format-preserving TOML parser

Project description

tomledit

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

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

Quick start

Given a TOML file like this:

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

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

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

from pathlib import Path

from tomledit import Document

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

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

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

The result:

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

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

Truth in advertising

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

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

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

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

The item that performs the mutation stays valid:

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.9.3.tar.gz (65.9 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.9.3-cp314-cp314-win_arm64.whl (370.9 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.9.3-cp314-cp314-win_amd64.whl (381.2 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.9.3-cp314-cp314-win32.whl (354.9 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.9.3-cp314-cp314-musllinux_1_1_x86_64.whl (759.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.9.3-cp314-cp314-musllinux_1_1_aarch64.whl (722.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.9.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.9.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (583.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.9.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (698.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.9.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (548.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (546.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.9.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (595.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.9.3-cp314-cp314-macosx_11_0_arm64.whl (503.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.9.3-cp314-cp314-macosx_10_12_x86_64.whl (512.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.9.3-cp313-cp313-win_arm64.whl (371.9 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.9.3-cp313-cp313-win_amd64.whl (382.1 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.9.3-cp313-cp313-win32.whl (356.1 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.9.3-cp313-cp313-musllinux_1_1_x86_64.whl (759.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.9.3-cp313-cp313-musllinux_1_1_aarch64.whl (724.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.9.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.9.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.9.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.9.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (548.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (548.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.9.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (595.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.9.3-cp313-cp313-macosx_11_0_arm64.whl (504.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.9.3-cp313-cp313-macosx_10_12_x86_64.whl (512.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.9.3-cp312-cp312-win_arm64.whl (373.1 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.9.3-cp312-cp312-win_amd64.whl (382.3 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.9.3-cp312-cp312-win32.whl (356.7 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.9.3-cp312-cp312-musllinux_1_1_x86_64.whl (759.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.9.3-cp312-cp312-musllinux_1_1_aarch64.whl (724.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (584.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.9.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (549.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (548.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (596.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.9.3-cp312-cp312-macosx_11_0_arm64.whl (505.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.9.3-cp312-cp312-macosx_10_12_x86_64.whl (512.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.9.3-cp311-cp311-win_arm64.whl (374.5 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.9.3-cp311-cp311-win_amd64.whl (383.5 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.9.3-cp311-cp311-win32.whl (361.7 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.9.3-cp311-cp311-musllinux_1_1_x86_64.whl (763.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.9.3-cp311-cp311-musllinux_1_1_aarch64.whl (726.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (558.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (586.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (703.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.9.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (604.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.9.3-cp311-cp311-macosx_11_0_arm64.whl (509.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.9.3-cp311-cp311-macosx_10_12_x86_64.whl (518.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.9.3-cp310-cp310-win_arm64.whl (374.3 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.9.3-cp310-cp310-win_amd64.whl (383.3 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.9.3-cp310-cp310-win32.whl (361.6 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.9.3-cp310-cp310-musllinux_1_1_x86_64.whl (763.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.9.3-cp310-cp310-musllinux_1_1_aarch64.whl (726.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (558.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (586.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (702.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.9.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (551.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (604.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.9.3-cp310-cp310-macosx_11_0_arm64.whl (509.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.9.3-cp310-cp310-macosx_10_12_x86_64.whl (518.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.9.3.tar.gz
Algorithm Hash digest
SHA256 434c05d87c546b44c3e98ea3b8d73b008c8ae1c07d88ffb19811cf9e752f760b
MD5 75d95fbdc54d6c6fb54f9d89d574aa6f
BLAKE2b-256 e65abb759d305c002238fac7c5d80d20df37b946edea9659c30132f81962134e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 370.9 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.9.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 abbbdb20a1888f8d67c283d3dcf7c924f4211fd16b62a6d04b7efb34a56573c7
MD5 87c9dbfc233075055e3a690cbbaa1e4b
BLAKE2b-256 575751b9f3245462ded8d78dc92a62ce75962f181b932902d522fb17f059ea53

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0ddfc4b7bec3a30fbe92b2450dfa078025ae845806cdc9208fbc12cb72400268
MD5 1e72e9c2451dd825703b146b10a42520
BLAKE2b-256 9ebc81383903c5c2e07482bafb0da0a34856fed2371e48113dcf7b4cf443a1b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 354.9 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.9.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 077e545d88257d0db5f1e8864b67d20781524debd3096d73ce0be752d1aeae0d
MD5 c01012acb4db9a8f1702f1d198b45e4b
BLAKE2b-256 963b4a94a869e0927c401f3423d6e13e571a2c1cf73275261b012ccc90b3d569

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4dfc065511875ecf6e7b3712584012138d5f4f9d4f94ac6aebb97269e6be4f94
MD5 968bae37df4e25bb601e83f81bdd4a88
BLAKE2b-256 ba98eea2edbb375ccac42df83a7e22456f464097ea1c98cc83e92be40817d18d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a3fe1184b0c9ec180776ddd0eba03fda2bae666b98b9455603c8f2310a0cae56
MD5 1a0acc53bea95f6b8b8d66ec94f72d2f
BLAKE2b-256 b1a2b4ddbd244cc9087ab22b30e41c8dafe32b80f8e7969833f9c8541cf14e4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52051ac6b731ffa4ac5e9b470b6d09223999237e127b614bb177c3c82ff47f51
MD5 00c63cf4b415ea08f46a75d2a9787c64
BLAKE2b-256 dff2674d79b0008e60f4a657afeaf20f44dc391526b6ad1c3e4cb0ec2f765d77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b17df7b990bca88c244f60a1266a17002a5e5579785cb99db0cc121eb6862acb
MD5 8ab88760a0abc55f5cfbe935afb0aca7
BLAKE2b-256 08fe5867e59d65c1a3df53ae458ea95a617314238335ef9ad659d9d142ecb0e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e25a155716d2deb5438c52a7198e74e858b0b677bfb63ac3d123196140061f54
MD5 14ddf0131524879bdf4cca0edc195d36
BLAKE2b-256 9a73c63a8d5a07b6f2694a2a1c1d22519abd58f00741fbeb62a3ffb1735ec814

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 959c8d7ab8d390c803ab96790f38fa9725df501f2dfbfff29d8f140c40001fbe
MD5 e119a25709c06666e2b49f5053e74b52
BLAKE2b-256 26320def465852873f981911314ebe3718fb1fd2f398903766516be984762843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa4cd70bb980b9ffb8d6171ba95ce5e1b2e5fb18b2d6bd5625de31021f5ef4cf
MD5 36531fcad58d235e2ce9400b19016f32
BLAKE2b-256 f100e52e223680b1af800b16cd6e381d48564547cc7d13a7bac5ceb8777411db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34483a06c5ac686faa69287ce9580bf2f83669fd6db737ab29c583ca2346e388
MD5 7cb0a541c44a47e29c5814b6a0c9dacc
BLAKE2b-256 cd84331773e2c4e65912aaa4845a3fa902835658147342b15b8ceb0fce7b9334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc7e72f3624a5fc46a318108e36ac7e40ad0ac02f65cde5bcf2e8b73e5ddf3cf
MD5 6e81a8763280516cd1efec5fea1d9c1f
BLAKE2b-256 48eedcca71633ecdf804494044061d9ca8adb1a96e74593b80c5a09a899f45dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4fc1fdb9f4f97c261a02d06dd25a743ee8c1d0bfaaca329db3769c61cf8b572
MD5 c3eee45cc38a1cf977d7d04b56b9e452
BLAKE2b-256 174b579da6045177e83d754c485f314c01003f2184c819b8f34c968103c6256f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 371.9 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.9.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 aabf96ba8db7430e911cb0d0103f5ac90fadf096cd9ef4c569ff72019066e031
MD5 357c07763fd157fb6d736674198fa9d5
BLAKE2b-256 1762632d37628613b2cc78dc676ce53a688850d16be129e5d04179147261d7c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 382.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.9.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8700fd736ecffc1f10712d5958362ee14b41224a5418e4bb8f50b91fa397b73f
MD5 7a6669c0f690f32787e5cfcf7a168289
BLAKE2b-256 b84c20d3a7e15b6bfc34aa62789a6f09182c71bd7394d7c060dbe3d0b7664efa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6c8039db1e5d3e13d45927d35eedc9afd1911b73901fee3266ebc81e9a4dac8d
MD5 7942145bbaada546fc384fe176751a42
BLAKE2b-256 ed8cbf7bddcd83541740575974dca4db0dbeb2230d6f95f6405f92d91d8f31de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e7322821164094dafac3d91c1671b0f283b23fd54db36650ff666ec9c1507e10
MD5 b5c55f8a96fbcab593531b1e17cd92f4
BLAKE2b-256 eca03482aebdd0dc6a183fc253c95061673cfe08398d4a03a2953182b0568135

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 198a893b2aa0631469134c62e4950ebfbc4f90a5522e1cd531fd38e5fadb4fdf
MD5 10be59159826e115be69dbad66dc9b82
BLAKE2b-256 28e0d018f27e10733e2e920d62656ef98a8c483994286d59275199d8f502a6c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6d5f157c67da3ae012ee3c75b37b2261506b76b9856190404c7952f3c5b7cd5
MD5 b86295cad59198f49165eeec3b52aa39
BLAKE2b-256 e3abec5851a74aa40b54c5e8522d097e7213d565fa1e589dc875cf379bbe3e64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e53686cebbfb4ff8a34920ec5abf1eb28cb2c7f21a24179ceb0c8584c7f93fce
MD5 9d51b3d8bccb87167c423b75e29e2b96
BLAKE2b-256 9b4a4c791b667febbcce4d6301172c6884df1b8543c8d4281cd0dc75477aa66a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbded293c0963f0b91d879d9293a924c474b20cb9e3c2f04d444839016b94819
MD5 3e53c332f800fd1533d493449fee9de0
BLAKE2b-256 08df6977dd6914e0ea3fd4d29eb52e310331bfc313462c126f63fef82c61d1db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0583e034908b3bcc3162fc04cf37e78a24b78dee5a893964b31ddd48d27c400d
MD5 943f8349648d98881d70fc7bc5df99de
BLAKE2b-256 df493f178af708d0e7233b38bd2139c3a066771d0079c2a83b0f80108fe246d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3102f7cd1782cc8af4ed03e5da3565d21ec9ccfa02d53b077a765eee12e5e260
MD5 263d9af20799214e3e280b8c321df339
BLAKE2b-256 d44b0800ffce13d0eb29276a17a366c6f834db9ee53e23f1e1923842dc7de3fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e9174f589d53cb76575c7daaa41ff6b597a0e15937c0f18d33c54d95f95c020
MD5 aa1fdba59a26a56ca5c85f0ca5e11ee5
BLAKE2b-256 ad6d3a044e5c9f935c95025d653b2e0554e70167019263c3f7c95e0afb48e733

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33773da0e75fc7db9550de4819e348f99b1629abe6916262a65afabdec5198bb
MD5 ed47d7635702e7fefb42d8b188e51cc8
BLAKE2b-256 aa2bd5192d061ce0a8778c557d983dc8408cc0e31f7a2ae06a5cbefeae597742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bbc49b6c238dce84d2e8bdac26983a29f6db7038cae8b44c74817bdd3b6e0df
MD5 3fe9c98e8481e6a273c948c0e127e69f
BLAKE2b-256 1b805342e57323253e1e7da36af1a80cc4fbaf015cf5df916580fd4b22e703cb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8be45e2f5dfbe6730de7e18d0d94e092763378d986784138fb9ec2510e6f7999
MD5 ad69b7838e3128fb90e8c5e237e127af
BLAKE2b-256 d79ad64574303978fbf03edb36751c499fc813bc38d6279c553e2fc3c182ceeb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 382.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.9.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dae2fad339df033edbaafb0106948070e148184272ac1db7aea8d7e1bb85b939
MD5 86cca508cb6e68a1b0e19599e8f3b096
BLAKE2b-256 84403ce93494dc033668a841c1f3c324733380b88a42e926adae16e7244c6332

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 356.7 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.9.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 03761a07a724a22c397e1a7cb8d60689e05875af596f89d0325b2e824bfb0cb4
MD5 182c0903ca30ff53c015409ce81dfd9a
BLAKE2b-256 fbbbe621092ad63c1c38d248c858a8ff811d3d703bdc563c21e261ef81ccdc98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e42bd54e239807d57f5dd64a1cb78c0cf7bec0fdf751874873dcb9dd9c2f6548
MD5 35eac8b33be9218dfd9b36c64e5f71bd
BLAKE2b-256 fea970782da27377df8377c7470e8840ccd97203ccf3b386c216de90481b959a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf50970fb8868e6fcbce339d547104381da28cfe4cf3680ee98bf031e6842559
MD5 ebb4689f4d193a093592e83f030d744a
BLAKE2b-256 d7e494dd77d1bb5dbb954c0216ad7d2e8bb7c1f4a14d80f99989a9fda411ab4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4298b449a9af3c6763b9a9cbdcc4609d7c9fc833dd09ffffa9a594f74e9aed3d
MD5 6e084b224bb38d5f6dce660276443bcc
BLAKE2b-256 7b7aa9cf41f35f21bd5a1721167525898c401c237cfe82f5953095628089d1f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b4c13c07cd02e31bfd49a8dcddf806ea867699ec9cf1fb6492f95be61a1242f
MD5 7bdb899cbec64464378723836878dfb6
BLAKE2b-256 fff8becbe4a06cd2433fb77c33233c31ab4f5a82f1dc53d88cbf98b5d17dbd37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc02f091558d70421b7d7289263be1bdb6fbe8215929830e6eb806fa58d14257
MD5 5c6b837e83df769f1022dc7891616eba
BLAKE2b-256 548924f90a8473fdeb54cabbaf3505424c2bd90039e39e5451ec24e22032f7d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7dbaeebd7e26489db2a505273a1d68fbee0d5030ef60fd271eba148e9f12695
MD5 d1de3ad620d96b4c602f060f1b121174
BLAKE2b-256 c92f719c9b76bdf4874c61f075c4baa36430e73859f0062ad1213773a61d10e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95cba1999707110df9b880662d8e364d6ff313eb0f9670075f0bcdf89fc55417
MD5 9b559f3665b9001f8d5863591b6ce2b0
BLAKE2b-256 cdada067f8ff74ba551a4065dcae473293be78e701fe58728f83ea453823fa0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7262b823fbe7db91271a31d3335d2bde14e5324aa24c8a81bb319c283c635169
MD5 58cac600fd71e2e4ed64dd0237c449e1
BLAKE2b-256 d3803122ec1ce953bc4c447fabc59c2f04eb022e1c05b6fc99ce3679bdf015fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1451cf057b06a7f248698f8ec12a940c1201700229f25c78334a502d30fedbb6
MD5 1ff157c17f8c27eb42627d77eabbbff9
BLAKE2b-256 53ea760a28b0cc22b7e16d7563226b226fdec4fb392c6fe8ad78ad5b2e3e2dc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ad14b3ccaec9158353f5406ac45a1695649f56bc74523e6438f3933a4488262
MD5 7319edbe3e477ad78122c63fc86e4e43
BLAKE2b-256 2e06db403b8a4dfdcb0b3135db832bfffe4ea9cc43b65d193d9dc9a68012db0d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 abc7eaffb6af48a61de5daa6dd0ac1c06277c8fa900e9000644dba569bd90f99
MD5 6b8e97810011a73a1a2cb2adb347cb19
BLAKE2b-256 e68a70ce7ec7ace974f434397ee6a78696c6b7404d4b95abda0d3040206f8389

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 383.5 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.9.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5dcdcc606302e28f19de57f2de034804b3cd03c069eb3d2e903ce6618d01da0a
MD5 a979653247a139472c4dad4341691e2e
BLAKE2b-256 a21d61802b6c24b3219ba4e3f65179a694328072c79dcb417d946c81def9ff3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 361.7 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.9.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3d969266841d48a02c0b101a68300436fcf6114e6d55aa45bf5804f1e11e3f39
MD5 1403df9a3871b327b136b93e600ae2ce
BLAKE2b-256 1c9a1aadee94c08b86206df4c676d0c6add8b85eb7e3857b64e77ba9559aa8de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab4fdef8581eb1bef292c88297df80acdd064747495ab4a41a9bed92f322a0a0
MD5 dbe508ae564cee33cf5815b3fafa1643
BLAKE2b-256 7e754fd240bb332e306b4ea2f4593e61585dce95509602d54c933cf4c5108245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d79dc8175d4d478eb72525cb0b3dbdf8132b9da9e5a9cc4de4df160ab7d7c940
MD5 4af528b133186841e1cfa35d9ea67a2d
BLAKE2b-256 10be3bee0ae1dd56c4849af67dd57acd8a0e569c5eb8d9c7c68867c672d45f73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc68aeb13dd244ecde145b4588b666a9b94b1c1cdc79bc3682182d7685bd124e
MD5 692819c38e35b1de1e23ca4223c86c95
BLAKE2b-256 2b1294e234bf16f9d2ceadc15aa8caf8a9e9dec624d1daaae2027dd4abbd2fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19f7206d5181c69473c8b4468df7a099c56de472d8cc3446d3a991ae79f635f9
MD5 4c6d959546a81143e806f17d8763be08
BLAKE2b-256 ffbbc00716c49ef446958cdb9c81fbfe3ca11f7da0870c82e69eb0da413a0cbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10041d15456c62675d9efff326f8b2709c62f1e4f055cd75fc87b7a4c9f2ed82
MD5 9a095eaab2d66a9d1cef64e630c88091
BLAKE2b-256 124a62ca0ac757d3d0bdd58206df15020278eb32f2709e3fa0d7d73f72a0b994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3045fc794e900e26bc49b02012870c387684f6d8544035094c7629f74a6b723d
MD5 2e6268c0baa5d9ef91450d4b31e5619c
BLAKE2b-256 6db770cf2e6fd6ffdebe6acb16808c85a5257ee466e83723c6a8ea11212716c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06004b964959fbfa7889a4ee3d06808d518336fa343b904eb7821cdc25cbb7dc
MD5 241e4ea93fa04468d2fa9f62cac28cf6
BLAKE2b-256 4d22d67808149feb461c1b0075ffe12ae87abe7931e16e9ec00d27b2d1689933

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f46a33b43edf481fcba445f54df01fbbb017523f53dcd981ef42d3edfec867d8
MD5 1671ddc03b9708831545f750423e5cb3
BLAKE2b-256 06835e094f6e1107181295f743233ce0a68cb28debb2efea4d1ce313c4d503a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0406bf1948cc616a97722577e73d1a566a9eefad5b0e488246662f45dbfca3ae
MD5 1d77195ccb685839f0f8814a4e2b78f1
BLAKE2b-256 e3c05218e212f4cfc738e16d36222cafc7c526d3a9c58942ee1266c5f253c5b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da47cc8005a3bc1efdc52a3648ae8bf766276a2c86db3a878d42d535e7e9edef
MD5 aef716e196c6d32aed60cd7df40c5e66
BLAKE2b-256 327daa95a6fa279007175eda5331b05d2bd94ea8d0de7c29bde5dbc85c970138

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4ee55ced06b21fcd9901903405283d366ff7aad933d17a7830e559bf6aeedc58
MD5 d1a050c78a8ed34132517f189024c78e
BLAKE2b-256 49a65cfb9ba517b71cb4331a54266ae6bd893457fe56ed1f1b46174f9bb3b9d2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 383.3 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.9.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ee520eca4b2d77adc5ee295ba919d78c42d56c4d90963b9346bee8310dc7df1c
MD5 d351ccb172af2a9eec15fc7550005501
BLAKE2b-256 a5de04be5943eed012898ab034b27b305574c7035c7f4b1cc22a6945e9792b52

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 361.6 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.9.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0df508322698e60138fd999f57b28d061bda548a0dcfbc64ff64151ba532274a
MD5 4991ef81bf6ae75fa698b93cdaf67654
BLAKE2b-256 16c101248185d0c5ecf08149f6e2f9eea881cdb7007e6ded57029936c8ed9d5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d006e8d10b3b4f7ba43f21be8cf093c5f749282704e994c85f69557fec9651e6
MD5 dbb1df0e1136f7b2afa30bdf0ff1bbe3
BLAKE2b-256 a3d240ce76b1924b722e489ccc45247c298617c1cdf961c2e0a8f68f6db12164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aaeddce51db02c08042b97f48033d57e456dec6071e5fef0daaf771077189a85
MD5 24a6e72018202d8f3c70bd11b778b70b
BLAKE2b-256 1570f7e2662ddd69de30963bb61af2b6b9a02a37ff2d176fa9c9638f58a4d980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7d74475d48ea5604baa0684e58c5d03f2457237818318082c920f82644dea0f
MD5 0787f30ff4045cffdc2edfd8343ea4c4
BLAKE2b-256 a39094500e77a1aa1de29171efb1cf013fa2cffea7cc0654f1925c26d010d195

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff49d6ce4cabc7f161550cf8d461d4d39b560d8b657623df7359f314aafb2697
MD5 48cba1be6c4c26462a1d4ec3c83d7666
BLAKE2b-256 a4c653fd19a43f781b21b6179bfc0eece80230529a80dc765b2b88cd21567079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93d4ef1f53a325dc9178f9c30fb563ebe885fc7023a50ecfc48c363f7d9e65d3
MD5 8a4f58e5059bbb52012bf4dd7bc8ecff
BLAKE2b-256 424124d805c97c6c472f653d53fd3cb447245b93c061e977b560263136a98347

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d6bcba45cb0e6ba322bb23d7a744dd4e0d7684dbb9d7035e7cc3e9ff8988417
MD5 7d235d9d6da30a5bd8692ad4c779a410
BLAKE2b-256 723467ad6c44a5d102c7197d087f73528a791b2ce3d4818e131758641f3cd4a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38cf16e2322a59ccc10087261c1d96a3a458b44e4c2fcf85e9d74589900b0752
MD5 700bc9ad1875c26b141c80ea31855d62
BLAKE2b-256 56606a28f9292e364bbf9c943f62248d1921dad443fcc302f5c7b49d4205673a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b16719c7d43ab0afa82f38796df3a2c59b794a6294b4bef4cbbd11cca1633d3
MD5 29d3462d2abacd46f0f3bc5cb1914e01
BLAKE2b-256 8038512838e3a90faa5b00c7ea8272c2ed2efacbda4ac08a533d3364bf55aed1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb588c3ed6b29663f832aea11f59bdb057f462c6b9799b2e4387472214c3e094
MD5 486d27100a51c661f3f6bcd42171989b
BLAKE2b-256 4e7750a40cf7b38681108525243d52bc60b813bed4099e3369ea23cdce651adb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 905e95f721fa43effdd750ec6b3c4fa66c25fcc37f04f050379af732062d9493
MD5 f04e83e49b7b1e9dbaff2d8e0346a2d7
BLAKE2b-256 b02c1993bf0b8402af73c448d2dea954d9c2575315a7909b986773fe93ba50dc

See more details on using hashes here.

Provenance

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