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.7.2.tar.gz (59.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.7.2-cp314-cp314-win_arm64.whl (353.8 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.7.2-cp314-cp314-win_amd64.whl (362.6 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.7.2-cp314-cp314-win32.whl (339.4 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.7.2-cp314-cp314-musllinux_1_1_x86_64.whl (739.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.7.2-cp314-cp314-musllinux_1_1_aarch64.whl (703.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.7.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.7.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (563.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.7.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (677.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.7.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.7.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (574.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.7.2-cp314-cp314-macosx_11_0_arm64.whl (483.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.7.2-cp314-cp314-macosx_10_12_x86_64.whl (490.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.7.2-cp313-cp313-win_arm64.whl (353.8 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.7.2-cp313-cp313-win_amd64.whl (362.9 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.7.2-cp313-cp313-win32.whl (340.6 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.7.2-cp313-cp313-musllinux_1_1_x86_64.whl (740.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.7.2-cp313-cp313-musllinux_1_1_aarch64.whl (704.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (564.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.7.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (574.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.7.2-cp313-cp313-macosx_11_0_arm64.whl (484.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl (492.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.7.2-cp312-cp312-win_arm64.whl (354.4 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.7.2-cp312-cp312-win_amd64.whl (363.1 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.7.2-cp312-cp312-win32.whl (341.1 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.7.2-cp312-cp312-musllinux_1_1_x86_64.whl (740.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.7.2-cp312-cp312-musllinux_1_1_aarch64.whl (704.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (564.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (678.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.7.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (575.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.7.2-cp312-cp312-macosx_11_0_arm64.whl (485.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl (492.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.7.2-cp311-cp311-win_arm64.whl (357.4 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.7.2-cp311-cp311-win_amd64.whl (365.3 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.7.2-cp311-cp311-win32.whl (346.3 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.7.2-cp311-cp311-musllinux_1_1_x86_64.whl (745.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.7.2-cp311-cp311-musllinux_1_1_aarch64.whl (708.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (567.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (682.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (537.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (584.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.7.2-cp311-cp311-macosx_11_0_arm64.whl (492.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl (499.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.7.2-cp310-cp310-win_arm64.whl (357.0 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.7.2-cp310-cp310-win_amd64.whl (365.1 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.7.2-cp310-cp310-win32.whl (346.1 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.7.2-cp310-cp310-musllinux_1_1_x86_64.whl (745.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.7.2-cp310-cp310-musllinux_1_1_aarch64.whl (708.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (568.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (681.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (537.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (584.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.7.2-cp310-cp310-macosx_11_0_arm64.whl (492.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl (499.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tomledit-0.7.2.tar.gz
  • Upload date:
  • Size: 59.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.7.2.tar.gz
Algorithm Hash digest
SHA256 7fa6e2ea0c6a28c126d4c9bc65c1a3f5f599e9be6edae174bc0f389aa4fb0aca
MD5 e0066819f531ffb8d4db11ab7ba224eb
BLAKE2b-256 6ba2fbf3ee03dd1b7729c415eb7ed36f21f504d3eeab94fc9e2e7be046572d42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 353.8 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.7.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4f1de5e49f43a24d3fa57a08dcae4cc13f602513fd8c70de01efd47eff657e53
MD5 11a75911fc55f7a3ea4f6a9ce2870119
BLAKE2b-256 e5e3c5c679d2e54f0059c853b9056d698fdc2bd392971535840409e455fa1c11

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 362.6 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.7.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6cf002388fdfff8afb86e050064044a27e9c62ca3227f74c91cd909c2791bcd8
MD5 18a25efd9a0f8c2d698fb62df9f392e9
BLAKE2b-256 1f1772fc7ac5ff297b908ddc462cbb5e91528e0647b506d8bf54d02c6ad9ea8f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a1e640031e24ebdbd0adaa90c811ff2f9197cfed739c3c89d66e38f84878897f
MD5 0cc66935e3d6b98ff3a10abac949c566
BLAKE2b-256 dd78470043946faae278f0ab645a1b7158d7ecc5a21471aa267c821dc3bf8d94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7a7eeeb38e41ca96e6ac7dcfb3d2e99de5451199ed4772ebed90a4c1af953eef
MD5 2b5faa0e7b83f6d9aa9c21d54425f74f
BLAKE2b-256 6606aeb728b94ffc4cfddd1eed6e979b65361e70a945f8bff0f548bc8be29a5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ef277429e5fd0310114ed81414df442b2a86706ad3a7108b37951a5fd256496
MD5 c145fabd07608c7d968be429ffdb7d92
BLAKE2b-256 303614aae0ce6fefb93541632c8c713e9f74d7bda81ed0d6614e80e6f4bee358

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d51e0d30c4951c0c0af577e115cd04d2bfb4b8c1870f672a76f243e5975720d2
MD5 cc035bb1b122890a14c15ad7d19077c8
BLAKE2b-256 ed6e32d6b6491e15ebf4eb0b7c4dade54e1006629d3f87e0b62937f647c891ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f233f42574477cbbb13c25b6ee7e41e2817ab77f1d1fd5ef580d4ca32f0b73a
MD5 65962a9b5bbec2fd6515bcd5b43bd230
BLAKE2b-256 1c43e15292bae0bbcadc24e9596782bee23bea39d321bcd777959eb20501bcfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 734403162e963d0ef353dd1d08d788b914d658e14ec0aa4fa52bf33deedef009
MD5 90c57a7418615d04204fc01bf86eaaa4
BLAKE2b-256 0acf91cd4643f00660a0cda032ffc042c1c0335ebc1c1261f1c742f88b5761f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcc569b18ed004f389a148ec3cc7a3576a61a02320b093dae1b7dc0e6b935ac0
MD5 e4bebff721a31410048ad2f8e93c5809
BLAKE2b-256 63d9bb10636c93a4cc4666451a3412f7443bf510af1acd3f08b429b932d74926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46bd4d213dd6c9fbfc4518c4f42cbf380fe4d9b7e3d240f1c04963680d386657
MD5 77f5fff495382cdcf68b15122969454b
BLAKE2b-256 384cf0aadb7745b49fc61b15e92e55d29032204f042bae7afafb14aa638a8f2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a920bef98dd032b0314cee0001693f46f366282c4d27860422929237ae3f7ea
MD5 58fbca2e623e940ec00f9cd3a750acbd
BLAKE2b-256 b17f8f9eb06d7418cb90e2ed92309cf3c523523148e738edc5c8bca9162c3a21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c512c98fcfc49cd9475befd7f2df097825ff77c1c2a098cf04832dd58fbe5e19
MD5 7cd7bccb3a52d215c135a9d91988f59e
BLAKE2b-256 f015709b77d867767c885685ad997617bb7fd944765a213bbfe4c60988c100bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 326472e90f6613357053eacc695034d360841c1c6fc1a6ab950f4aa52751530b
MD5 d53fec9e701a8d2814d9e5dbbc7f5f6a
BLAKE2b-256 411de4fa114a38bf0a2ab12326e48ec2aefa753d626f3890935b14889a5e5052

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4723843c5d87c627d2e15d082afccb0a51d6007fe3f2f16aa74b9dda50744200
MD5 7787e5f50d5c442c8dec80e7140f898a
BLAKE2b-256 95b89187f722dd528490386f106e4930498db9e3de85eef9f4e0b3758cd67285

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 362.9 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.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc5248e98338e6db9d404fdf9e95456f3a17998940bf18ab8322322f06ddd57d
MD5 778a5575fe6ebdc9e395a2088636c8a5
BLAKE2b-256 e0eb736683fb0dc10dfcfe48a7b559cb7efd6bf4a842983975242a37724e859c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 340.6 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.7.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6b7e30640cd0b7f77564bc9c91fde2359d88ea291e351f2bb4da5360fdbd992f
MD5 ee3299a991580df24ee5f5190a0dbfff
BLAKE2b-256 61afdce5ad0bac9cf5f78719372263087b9c843aa0344c0c7c4b493fd22c6d0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 86417f124469dce2cfd33e471019dbd54b007faa6dfa50b4e2b028ba40a05224
MD5 79ca449289dbef3cd4ea02a81abdbf26
BLAKE2b-256 e7288474fdddc929271bbdaa5416fbff6652b8a4f35777bd8b485a1396b5bfa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a8a8b992819dc7153b01ddc1c93f4f075d7ae7f9ec64f2b264cd2d5d20322c09
MD5 c554784ddaee3fbe450c71313e96ddfb
BLAKE2b-256 ed841485ad5e0817b7966e3a88fea39c213ec1a74423b81ba8d8d85f5db6e21a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0db455de341e2b297bd01f8a8409eac799fa8da12d0b1459b395952feae696ad
MD5 83979bec02812d268d52094956c4c916
BLAKE2b-256 2998e2dfd95eb3902e556676cff71fe7abba0a0e89ea615a35473895c2c24394

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f357c76b1bd0b72c7ee21ca6fc6f27c0efea023546aab145d6787e90982d309
MD5 d57a29f036f33c1cd2e0136cfd37f785
BLAKE2b-256 9e888b9efcc0159e00da3fbdde5720282ea653cbe21d8821b4dbbac47593772b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16d55ae9bc0506c96ad8f89a32b84fc4fcfcf77c8856a4cfb4c196a39e043103
MD5 9b0746d7736c9074bcf3fe8f0359d3c2
BLAKE2b-256 232101077ab11dd4a73d16570024e87c19cc2540f9eb3c4d5df5f49f38851faa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d5c164b3a409b2bba6902137f39e8ac85fedaf5d4b6298bd04a4d41afd0f846
MD5 e5eb95580c843720c52361ca54f8b300
BLAKE2b-256 5399a6936798c59ae32568f2575e4cc6df67c4be951c628982107eef8c6c577b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38422ebae41fc075037ce458af4f00d4142e91458adf785312b214e66e287fa0
MD5 b22581305c729d3ad9e8a3ae349dfb2e
BLAKE2b-256 97263372fec888d2b8d5c37f09931828ed9ddce17c58dc22b7931a8aa3ce098a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56a7ae6ddb310a9ba5baeed1ec2a61b793c4b20bfa6ac6d14b974a9c7fe980a0
MD5 449eddc3ce5bc64a956be93021e86c08
BLAKE2b-256 f22c5b20a650488489e9df8af6172a8e721299edf3406a9d3942367b501422da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86303a6008295c9e4559e50a5b110e65608abfd9b39ff311ec8847f224687350
MD5 6d4b616b51ae781dc2fda3d4ab724fc0
BLAKE2b-256 2b5d6635261ab81cf9689798a084a5e2fa5aa0eebb2d33e8caca89629f00c187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e984b567f45cbe7c81873ddc348a52e386daf543e4e3c41ee3d8cfb734d1d45
MD5 c962e38e4059ba6f5e7a6cd3631d3390
BLAKE2b-256 38c2280f78de4bc2ede0396ab03155053b278a81af95845c5a9ff93afedfedea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 354.4 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.7.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 140af50954bf088e7fec0cff372c65369dc3a6fd01967cba223cd3c737fafb41
MD5 2b3989743ea13878cc7c2dfe49aeecb7
BLAKE2b-256 85d37b9b1f323d8d2e201b657bfd541011254ed338a239f543b6fbccdf2a6192

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 363.1 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.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c2e04fb7eef6529809e9b3d40b25ecaa1150969e26eb58b33308809f4150bf91
MD5 a44d3caffb0a1aea5a145a76e72bf16e
BLAKE2b-256 a5deb988e48ded4c49f0196009df518388e4d9bc7bdcc7277cff23d0c7d4bee9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 67134e27be4935603a7cfabd4853a2c3cc0abb13155d1bf48d3ba61070bce68e
MD5 3cc838e407ec1879f5b070b5a613a682
BLAKE2b-256 42e13c8d347ce0948586ae6b232ce7e6f4742db69374d02a7a87957b02c70eb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fb566da2da2bbe942e255a7344b916cad5cc51ee05c597b2dc4ee04ee67e41e9
MD5 71fa2e55380f51032b14428210feba0b
BLAKE2b-256 dec1cd9c497eb2fc205dfdb386e0710e7e7479d99bec25dbd244f8621c1eed39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c3a08722c2b534951057df9d3edf960237d14b652c8688a86963c9c56c47975a
MD5 f3cf9916ad01317c02d933e939cd1be1
BLAKE2b-256 1fba9523b4502a7e23fb44a7316494d0b8b763847f5e55445900aae252f6ef39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1b3779d325d39d20790d65f9c77fab40e63af1e3fbe931705625fc0a3413fb3
MD5 2909065887e6734a65ca155c2793f140
BLAKE2b-256 d36c4f1c1c624151d209162674c50ee06a48f58488ec8ac53c895bf80dbc61c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f8baa7e59b947fae3b816bc9630a126f52816c6149c95880d7d4cea46b4f2cee
MD5 508c6f9c86c83ed0ef5f28426498c323
BLAKE2b-256 43475673be0fa93f2cdc38f9aa6a2acdaff993b404864a7ccb6b2610fa3bc32b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f63b31838f1eb173a7622d33beee9641d8f8e76083d9edaffec0d71e8cc86754
MD5 9131d20a472569269d6ed97a688d91b7
BLAKE2b-256 341913364d57298ab81421b3ba4fbde596ca3a2339a9c2d5381c42acd4b2ef63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e7caa48494e3a911b4768f6c57cfdf53fc4125a1b01813890b5e375054df60f
MD5 3d44eb64222ab01d796a6213f22674c6
BLAKE2b-256 3c2e89a8e8e918e5d3b2e3235de22b9ea6a070dfa7e1d789eb7f4327c8939c77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b235d8e674d2112983415caa93cfbc94f8ca96fa5a6f14cd06b18f8fdae6a71
MD5 43b868fcbf8ce29b1c3cb2b34e175579
BLAKE2b-256 aae4e07efb907a81bf5139c9b4e1eeae17ccd0d10182137faee0f4f00bef7d06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9336badc2b9dd1d85e48378d3275d229847393c8acc2a7720609e7fbbab93abd
MD5 cf4730b305bcce38f7241d9fa7b5c19a
BLAKE2b-256 f58de6e28afe97ef50d46558b7e1b81e3398d8e62077476d51eff3290fa38f62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc4b8f7498e6818b0d6076f274f69bd2f68eef7f29b021f740251c973cd74abe
MD5 30607979abfe3da8b90ce213874dddc1
BLAKE2b-256 63c944a14a950fd18c74bcd006ba50b1c12a806a1b269be227c8e55753dc0a60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b7d6a13e738d73d9487b524fc0418d720549a6e715aadf1193f1f712f148da0d
MD5 d66be4976bd7bda245449f8daefe385b
BLAKE2b-256 6d1d51c490a77e58cda320e3f7cc8b3cd06e3134b735f60c3975d4073029e248

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 357.4 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.7.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2c2765e2f7a9e626e821845e4024fcd343019c51adc4181e74007c3748252e3b
MD5 4aa701beb193c76da50324214777df2b
BLAKE2b-256 fc76e08b3519844eabb7155b6be6cdb0445b95c7d9eff12fbc2a4e324eb8b1d5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15d8bb20175ba1b4d744ba30901579aea526ba0358f394bee46f6bd2cb37dc7d
MD5 f4f6e1dff2664f58783598a454513492
BLAKE2b-256 d7a8d16b4dc76268752a53be5c5b434a5e40c5c0d08c24f76ac37083ec1e4385

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 346.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.7.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5d8c79a320563a9965064e5621c7306466b143d22fbb767427c17cf81a352f03
MD5 3372cb6387747b4c9e9ce493df1add92
BLAKE2b-256 9ef63b474f61ddf3f262b473725d339c9e17ace0d535929f5f40502fdf7d4f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6509357474eb215f6c19700b4c9a25c1e5b637033938d99c9104d34d19cb7a7c
MD5 87fd9e7f3205bb1e6aee5b71bdc05cd6
BLAKE2b-256 1f940e862951f2094971d55a9ae2ba2503f85f0767dd777d9cbf1a7bb8ff9277

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 541c8ecc82a4167e677e20b409f82f96aa0d7a02b18eb66147326712f102d153
MD5 e71a37017820a09764a159b2a4f45f32
BLAKE2b-256 6120660f733da348f36dbfb3043377ea4613af1256e6dae75bd15e3f6a5ea4e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 552eac636fba0191a1cda3195134326826a56947984d7f4970696f217235f51e
MD5 aa367e23a44e2e105ed4cebf203a5e7c
BLAKE2b-256 8944d7b3eccd1309b122150702b1bc0fd792e766e09836d8ffff82541dc2bcc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44273fe16b5ec6a27acdd8f3a68ca0c2b6e39025af30e7704c0b603674561e10
MD5 f9c7668849eeabe87be7bb8c508d9b67
BLAKE2b-256 43c747e2e6a74dff2cc6206a5a64411dc5e8c15d0ee706757a4cd8f8ce1bc191

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 950805244fe33639ce76726bb691457d8d51c6025f4c8b0325dd4e4aa57001f9
MD5 b5845ca1e0a06a5fce9f4e082363a31f
BLAKE2b-256 38deb08ded69b41e800f1485cafe00bc87887a3f939ca43055603bde8a3d2b06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 48baffa65a01553cb7837c8e874c623db5bd4c9119e51705eed6545030f68a11
MD5 a6ddcb4857dd5070ac9de90d0ff4f13d
BLAKE2b-256 ffd01a739ce53c8d628548a0c26e847184eb9a5a7de742c97bed33f002a13e22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c1584ec2e885aad586e92bd087e18c7527a0a49212e19e793d9cdf9dd4f12ca
MD5 0c7f9fd01e81483d99d41266f1c2ec93
BLAKE2b-256 a24b9c9e04accf502b01f42e4277eb23b5474f988925f529ff981ca9d0919638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f1e0b86446e999d363ce85fbcb0a6c29057c9106a7f985fc86addf23480742c
MD5 b12ce63b09230e0a5d6bfce093bbe64b
BLAKE2b-256 05512bbdce875208809eb70e40d702dcb901c9b71be00ee2d02cd70309cc5dfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0aac87d0a00598ae7926e303b273a14475533cffeb25e45aaa2e642aeb78679
MD5 6d970dba3dc5c1da94ac67615e36f051
BLAKE2b-256 bc83c9ca752247eed6e51b7acf86debdf005db7d983e3d72139ef6b8a2d0f9a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 339abe0e6ca79c62df9f4666ee578f707c8f99bddcd8003a3efaa60429f337a7
MD5 62e5c74bd303edfcb3807240bbacacfd
BLAKE2b-256 a1213b0299498ec7864485a4a58e8f23234993f90a6b1263285735faaf92b500

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e7716f8755c1fdee43cecc850cae6c09f370f8607641b38aaef0a15bbd8513aa
MD5 b80bffd6688f01f534de8a55a1b0e995
BLAKE2b-256 d6a0221ae49b3032e052431fe9c08b740d4bdbb9ec672cece0af643ec67362b5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d2b1be2be113c32fd600b0e111ae0849711c4855cfcd17266ddd5e52690d6d4
MD5 2f9966e678b356eccb1911d5b43d2dec
BLAKE2b-256 84427160e684dddf1a33da127bec15ba77746d4da6cda27d474ead318c098bde

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 346.1 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.7.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 989d12ec11d85e619f26b0d0e8e7a8751b70d16f1945d6df0d5d28605e487d59
MD5 b2a6ef69d33b69b48c9a0571f0a12451
BLAKE2b-256 90c10e160a7638175cc59b72f7819dfea043caddc7d9a8e4efa85e4705404a01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 be45a7b5e5802852b26ea779673fd838d39a0fed436fa3942601f8ea2a65b0b3
MD5 e9d8b06835e57d6ddc385f8605eefa87
BLAKE2b-256 42c92fe074c84801ec86343df39968ea06d98408633346d284cf82636cbf3b23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8d707ec6133224338f5e83e6a67f012d417dbf098435243dddbb97b9535f9bb7
MD5 4755e1391e3640f2f7b2d47bfc5da3e8
BLAKE2b-256 a58bd0367e177121df4c9a9f4fd9bac6ab326812803e837da2bdb04c4bd9669c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f2732d611e7e2d2bfafca557349e4f0c4b67e7bb82a5e55cc000588326ca89f
MD5 c937244cf13e8fe75fb3e0e89cc3742e
BLAKE2b-256 c55d1518677f84b3b658525156aae8de8dd13568c9b780a3099565e8d029c27d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37e08b8bad8b8cec199aa05b1236b8eb6a873dfea10e6ae8f1f1172698ca5fae
MD5 44b0c444d16ac1b1f0fc7d1967b257c5
BLAKE2b-256 97d2392d440722875c34a33072e0efc55b90861dc50a9d4cc56b1fe3da2deba0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 468eebc89bfcb184dbac4bdb6a748fcc3eb3e7f707d5edcbca640bbdefb28927
MD5 8b707504a6a349713291fcd9ab857c80
BLAKE2b-256 a35848e04eabe2e85434e76f3abd86320a16f2990262718b8963052bbfb17361

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c170908cf4a6d0e74d2165568a9efffa5faa3bd1948218c38b97923166699c8
MD5 fb5ef5fb1667fee8254c3d9711192d28
BLAKE2b-256 bef12d44c0e7d1faf6d64d48b5b1e64be39f7126c73824573727dbf51b393fc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af595dfcd86322ef3c503899fa31a4c1a92ee5c00e305d9aec53526de6190eb7
MD5 b8d17faed554457c9c0b0dff28100ca8
BLAKE2b-256 c664dc119c1a88657afa1062898df766486604fc78e2edb25b17ef9ba3489d2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a609dc7d5b3636a78c5f9326a4b23c49e5236f237a34b77ff537e8ea7e7a7bdb
MD5 65e486764e931824efa4adbea8eda2c3
BLAKE2b-256 5e767dc07f162eb869d5fcd462288a63ef8365bb054f067927279f09415ed94b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aad53cd8971334805ea6a422bc7d7128db38a605a3ed8972fad0cc36748420c1
MD5 7e9149f0fd9103db380a47d7b08efc57
BLAKE2b-256 5b023c17ac384aaabe974961bf379c0cd95a5ff1ac217ee606fe7d43ffef691c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6eb6adac81c4aca8366a0d88cb1d265b947814b7b7734ea7119e77e02ab164e5
MD5 e2527bcce938130aa681ad5ec9a75d8f
BLAKE2b-256 35f0bb1210482a6a0a59ceeabe55b48685ab3b130891b85d2097baad490c7036

See more details on using hashes here.

Provenance

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