Skip to main content

Format-preserving TOML parser

Project description

tomledit

PyPI

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

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

Quick start

Given a TOML file like this:

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

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

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

from pathlib import Path

from tomledit import Document

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

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

Path("pyproject.toml").write_text(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.4.tar.gz (68.8 kB view details)

Uploaded Source

Built Distributions

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

tomledit-0.9.4-cp314-cp314-win_arm64.whl (377.5 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.9.4-cp314-cp314-win_amd64.whl (387.9 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.9.4-cp314-cp314-win32.whl (360.9 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.9.4-cp314-cp314-musllinux_1_1_x86_64.whl (765.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.9.4-cp314-cp314-musllinux_1_1_aarch64.whl (729.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.9.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (559.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.9.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.9.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (706.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.9.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (553.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.9.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (601.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.9.4-cp314-cp314-macosx_11_0_arm64.whl (510.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.9.4-cp314-cp314-macosx_10_12_x86_64.whl (517.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.9.4-cp313-cp313-win_arm64.whl (378.3 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.9.4-cp313-cp313-win_amd64.whl (388.8 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.9.4-cp313-cp313-win32.whl (361.8 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.9.4-cp313-cp313-musllinux_1_1_x86_64.whl (765.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.9.4-cp313-cp313-musllinux_1_1_aarch64.whl (731.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.9.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.9.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.9.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (554.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.9.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (602.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.9.4-cp313-cp313-macosx_11_0_arm64.whl (511.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.9.4-cp313-cp313-macosx_10_12_x86_64.whl (518.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.9.4-cp312-cp312-win_arm64.whl (379.0 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.9.4-cp312-cp312-win_amd64.whl (389.0 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.9.4-cp312-cp312-win32.whl (362.5 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.9.4-cp312-cp312-musllinux_1_1_x86_64.whl (766.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.9.4-cp312-cp312-musllinux_1_1_aarch64.whl (732.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (706.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.9.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (554.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (603.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.9.4-cp312-cp312-macosx_11_0_arm64.whl (511.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.9.4-cp312-cp312-macosx_10_12_x86_64.whl (518.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.9.4-cp311-cp311-win_arm64.whl (381.0 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.9.4-cp311-cp311-win_amd64.whl (390.4 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.9.4-cp311-cp311-win32.whl (367.6 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.9.4-cp311-cp311-musllinux_1_1_x86_64.whl (770.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.9.4-cp311-cp311-musllinux_1_1_aarch64.whl (734.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (563.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (710.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.9.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (559.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (556.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (613.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.9.4-cp311-cp311-macosx_11_0_arm64.whl (517.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.9.4-cp311-cp311-macosx_10_12_x86_64.whl (527.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.9.4-cp310-cp310-win_arm64.whl (380.8 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.9.4-cp310-cp310-win_amd64.whl (390.3 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.9.4-cp310-cp310-win32.whl (367.5 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.9.4-cp310-cp310-musllinux_1_1_x86_64.whl (770.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.9.4-cp310-cp310-musllinux_1_1_aarch64.whl (734.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (563.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (709.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.9.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (559.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (556.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (613.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.9.4-cp310-cp310-macosx_11_0_arm64.whl (517.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.9.4-cp310-cp310-macosx_10_12_x86_64.whl (527.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.9.4.tar.gz
Algorithm Hash digest
SHA256 b4251e44c72bcda195c58ddd5244dd1988288d51a7a2ab436b060a161988edd3
MD5 62c8adac1c471e3d5318a6e694f9a444
BLAKE2b-256 3747a6a0bc9c5b90787c31b60893bd8afc6c46a7e65659547f1a1bb9807d428b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 377.5 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.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fb091d3567da96d87787f4edfc084bf3d03ac50ee97a6e1b6e84a403b18e6f0f
MD5 a8c6d75433a9819bc1c6974dc942e710
BLAKE2b-256 903a2565881ccb3387cb30948e58f8e10feec35d9f0fedc4b096683e41967729

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 387.9 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 28401d1b2829c3be73d917e6d1de477936909a761ad461a00ea56d0e62606c97
MD5 6c738a8d5d732807d6aeb3da8bc6d6a5
BLAKE2b-256 efb72909f5ed65e624bed308a3ad4b31771724cc42853319aa62a5da88fb3a60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 360.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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0dcf02b44b59d0952a712aea8ce8aac86c4c07fad7b991b32a53258504726a18
MD5 91d56f99de1e2978c42b633dda8b6ad6
BLAKE2b-256 ee9c567a1120715626508c3cfb3cf268271ad194fcc47fdd2102529c52812fdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f46aae8c1d39e9abe4f650f4d98d78d144428054ecdd7fea429644f35dcece8
MD5 ed5ac1425816961d255f27d3fcb5e7b7
BLAKE2b-256 02658d6ddf16c6c47764f16ec305827c29849778343fa48c2ff5bbb667257f6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f6ed6add0eb7945fd169d29ae15d33a7c636b11d4668b325c35f221a06a56ffe
MD5 9e4a35ef1cda12f7cbffc40bc4a0e82e
BLAKE2b-256 93505ecdd1c5fc58907fc645c4d4b1935c808c93983c691112ca73f33dd7cf9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c0b50ed8cb117b93060d76019a69b34e24b86c28e48bfbdd7860ad9c1439161
MD5 ea9ca578f48af4b276003dd5f3102e63
BLAKE2b-256 f0d01e915c50c59c6c303322960c8c336084deeb4118c6066fb9160ced8d8106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d61a529b6cd360847442479b06059f22eba17ab6b085dcfb92d485c82fac352c
MD5 b3aceb6ddeaa3c08324df92fda0c1995
BLAKE2b-256 1befb186cb0ee554ae6ac2e35a558d64dd190220ee7b29a1ababca2556aefb63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ecf8545f102b1360cba790827e2874132f094220ac58c39952fceffca39b64c
MD5 d20d84cd643c93612bef294331ab8db5
BLAKE2b-256 375880d2ab9e28e344af9e138eda8cbb0b08ec99c37dff59b7dc9a5c1764c2b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 043faee8dc425ac994f1b63e7700dfdeaf52e26eb83c6716b55b5a2f2619f061
MD5 b7bb11944fa171de43db2b65b946fe76
BLAKE2b-256 2703dd3d25c903800e4017916bc4fbe7aa3584d8c58205a2c22a59f2639f022b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc49c7ec8f726a46ddfc76258e3d3e74567cedf6585d8ca75e514eaa892cf00d
MD5 c24d967ffada117240cd7d8edc3f3eba
BLAKE2b-256 284a70a22322e438b160a9bf555df99455e0aa6ae756981213062d61f63d7375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c9e3e30cfb284bb6214d7233a0fd8c5ebe03319b52d9c756ee73bf51cc34a079
MD5 e513b8d97afdf1acd9296c783aef7446
BLAKE2b-256 a4f1da78e9aeae24a30d3d578d902efa5cd898438283035be3cc63f0bb427db3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5861489d8a995cd7ff5d3f64ba964478c8c958f8bf7f537057da647ad1ff9ded
MD5 d3614fb3aadc873dcbdccd6f866cce11
BLAKE2b-256 75805e7f51be33ba2c7de6420ec615e9bd9e9876a95e19aba6e444764ff0da0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3279c57070e740fd760ee20f9ee149730f1260c24db537d2f65416b62f576430
MD5 a4de7fe3bf56336184ad7698d87a2785
BLAKE2b-256 01ed233b96dd37129596badd4fb425fa2253a361ce8af7559027577f57d605a0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 378.3 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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 10bc45e4d102be37a842510374c6f6014f34fc0c2f7beeefc17d97b90324432a
MD5 33a6a05f0ec6b113b244971076126e36
BLAKE2b-256 1a03092c2a62ce307dd71b349a9ad93b9927a03fb9a74539f5ee7c512c9b5f9d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 388.8 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3563f886ed49266869963232c3f0556c994df2c6a48eeaebb19a217b705c3163
MD5 1c1b8e2ed331470f203c2df2da11f009
BLAKE2b-256 d37350b72ea7804dec205fe215f9a36a637af42587b3e88a809178398be4f8d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 361.8 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f1f228ca2085c288a0aa49d0c43a0edbf566c3e5cc1183fe9ce7c1207fbcdbed
MD5 9b32c112f0c491d2ae91f38b044481c1
BLAKE2b-256 d62f24fc98a3f69ae076cee1464970b3023980963f489eb9569c344e1132cfba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a69de3fef00d4bb035d05484d95d639f4edfbf1c4ced8756d729d0cf958d125b
MD5 be6961b493cd509f0170eb5872f12cad
BLAKE2b-256 0f6aeead7e7c0ef5121491f97fd59909c3f6ccbc5c581f23f67a9ebb5e608aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 75df1daa510c6e4b770e0fd73331a626e10b2a7c0b9dc064c7472a878e71a154
MD5 78ea86e394f4412ca7ad1a970d733d2e
BLAKE2b-256 617f9dd8de377e234a49a703b746b24a280ec229d683bd9f7f35a8230d1c2691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4611fa51d409f5bd37baed7b033a89fbc01a21c4b891a1081f6ab9bc0c1df63
MD5 d9bb4ae116d0b281f246b5ca54f84063
BLAKE2b-256 6cf76fc3d34aa190291a4b2da04ab123401c9dff0b220aa2bd3dd0e7bb237ca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 271ced89db343cf54b4f8c049e60ebf3df204ff87bc5816026bb0121ecd66113
MD5 525da5b6ebc44b8b5e4e390a0803cae0
BLAKE2b-256 33f7a9b0625bb4058be9ca3a3f6369b9b4fd8c623ae54b30088cc572b51a960b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 192e5435d2338ca651b923f7eb46214b8cc199b0d3db65a2c73c59a492372f9a
MD5 0b7dfe2354be1ce3f38f7fcb2c843dde
BLAKE2b-256 b4a79ae95f4eec71dd2b7601a6326e8dd34749113ad0bfff72c077cf293331ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 083c503d48f3eba56ae3f68794f0836617680eaf7bb92f6d566bcccceb530159
MD5 a39d948c83b4b4daf0d99eb44f586d2f
BLAKE2b-256 a0912b2c8356d1c018a32dde9ed1258a48b2c9537ae442de7792f0fbac42b3b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af41c677e0c8a9b0e3743194ef0441a9bebf16f5e692b4c09d222f0b7d63de3d
MD5 e817a655f61f584323acab26bf9ea789
BLAKE2b-256 fb472d3634b27b97c319d5cb2e7a7173d767ac3130bbf0b6570ba7c9271ae33b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0adc30fd545466f941251e75d25bde607d5bafd658159e0a4af6a255fc27e6cd
MD5 81f9d9db1eae792714cc6bba7d47ecb5
BLAKE2b-256 f47618776f6792a081688edd8629e2abfc5fb6ff09f6d6a4980526eb28724b55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44f477fcec2cf9debbbc477f9622eb63edfbbcea9ebd5e2bb3126d1e109176b5
MD5 879600ca655a72b62263a4fe52abd772
BLAKE2b-256 795a9a135d8d6362506176f8caa8cdba3ed076bd69614b96cbb85fc2cb769d2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 944dbdfa147f81aecb44dbbef40edbfc62821ba3182a7f60ec4aab1a28e29da7
MD5 f1712e8cb4fe5d9aee47141f596b0a10
BLAKE2b-256 67102dda6b74254113ce521e54ce841805e381bdc5fbf361ba28f63a319524b3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 379.0 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 02f039dfa7967a34069251d96e12896ca5b65a58d606043ba508022657bbda10
MD5 5c4dead2fc35ffda9060913d45e65a00
BLAKE2b-256 0ea76c6682d8414719929831f18f69274ff40b3d061801abefa7a7e4780685ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 389.0 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a031960033060e64660ac1fb0e6358aa93c99997b44a3b94d114483d7732570f
MD5 489e97b028184b75fd9e3d7db82ba5fc
BLAKE2b-256 84d8494df5f9b78b47d36c692b4e15ecd33019ce2c822cef052dea9d148032bc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c1a00297ff3ef7d63e9ebaeb840e633e76305d6798c174f90ae7fa0ac5e6c2af
MD5 a6f96a0d163ce6e93a22f12858f8f46f
BLAKE2b-256 c998d3c93ded73ecd934321fa68799a8cec188526ac809b9b468f0c2a8c566e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2534a68bb73b121fda194756e1594c7bd1642606db81ddccacd58200bcd01cff
MD5 8f970aa543f5728a00f46ee58c1a8e9d
BLAKE2b-256 09ea9c11dd83baec783df0978f18f0eb991fb1079395d6ac66644d25b6cb9674

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 269a068a6e68e633bdee0494a02c6a8a8f399359023b3d9fec7f722af87dfa1a
MD5 674c3a6467c79b864feedd87e96579e6
BLAKE2b-256 dfbc9b5d1c686b5c84bc84b3307edb29493c8c860225223ad74c0b6e568faf49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50c95f1d68bca82e715af63efbf1b139f87357fc893e6ecfe3b29cdab5de7304
MD5 de0d981b075dfa6e8197125ee39a3ea4
BLAKE2b-256 28f862f76b4bb69165971f672df3787688b42d9b2755adb9fa9ab9d06d8f1700

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36d9641ddcec540fd6b5c3caf14d0712ad14b848d62078a794087972664d19af
MD5 a358c4686a1680658dc8d21d761b4f3a
BLAKE2b-256 ccbb8928c72ea42665bdbb7242cfb70bfc25fa8a0977cf79fe02b32d95eb7451

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e6fffc471a8d638b0ba7a61722ffad9cff78c180896fbdc385a30a8054cdfe3
MD5 b7a6eae1f9fbdba7873c0078add624c8
BLAKE2b-256 e3136a14b0a6d8aa3c25d0df7ece6ecc555cd0765d258a88724f2f41c142a301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 914e89564f629de633a76630964863cfdd95f17b0268f4c9278f5ee6efc7735b
MD5 9b2498e41d24a3e84d95638cab4b0579
BLAKE2b-256 9e49559c7c2759c87c3315bf2dd338e882174604434329f0f532131d156dd8a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37fddc012f27920a686eb20c813948b4c08496854bb69e3aa55799c61a38b0d4
MD5 4f3a41fa8f7b7ef5425890c3666dccf0
BLAKE2b-256 c0317fabfa04f4ac255dfd1716c61f40ac965e7239793928ee4277e9aa0a966d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2450805a83511de41a096883f3c533acda374d4917dcb9c0dfe5590920fe566
MD5 11b3c321781ac5e9c470d85c06270acf
BLAKE2b-256 f7f7ff1eea329ed60413bf3dd45c547de567a3a282b3c025750cb7e6fad04179

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adf82c9f994084441c1699942b9274a08f986a6e770b9a1f23e29ecd8241c88a
MD5 7105ef58cd3e87de612392ae7de7066b
BLAKE2b-256 d73a8c9ecb001567d9fbdaed169f1074a2babd7fbb2591d2db7941c3d1d17d70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 846728c26bda5673a0e9cd54af745d1218dc688cdee0e53d46bb874963f94588
MD5 de9cff1696e9290cb62ed2ff44a7cefa
BLAKE2b-256 c941d15ad1b1d85b476bebf61b199839829a260fc3295dce635002e0d886d426

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 381.0 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2f3ec61f6942a04e0289f1b19a52605369ce9159bbc391c5afca45bd2c413182
MD5 e7293ded8b4ac9f207d7842fce58daad
BLAKE2b-256 d521b18ec34de87ed73d2da5e80efb6f4417d0730cbe299515700bb9dcbab812

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 390.4 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f9f38a1103155287e9b92dcdd0657a129ebb653c972e3ad5158b0f14911af067
MD5 683991ea2fa821158e34d27a9cb67d81
BLAKE2b-256 30a20e1642399248b7f2f33d9713236add1ac9c7230421cd3552beb645b55212

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 367.6 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ad12971f875a6a607e3e6113644a4ee17080b7347fb525122c5ae56d8522a334
MD5 1c467e636db80dab49c4e7e448fd655f
BLAKE2b-256 0ee91afb34188dc504ee2bb1467a9a2e8b0ad062212f9c98da9f29dcfefe858d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f4feaa2435e19a079f08bf8661ddefaa690a79615cc5cbc59f464a2245952be7
MD5 3e5d6bebdfcb9a0e74f75c17c655019f
BLAKE2b-256 e6c103198dac8062b4aeb449edd34500c8b54c906e252337296786c12691edff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7f58681b50b8d349f15d576ae2a637d3e4c261b4919e47224f4ad0561baa71af
MD5 b3fd48959de458a1ba551cfc33e9b4aa
BLAKE2b-256 2e889bb9526f9a359719b61a083f0339cab43f81297c12d472aefd24b84ef474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 753dac0e63064f4328ccfc5d3889f0c41265fd43606f7df465fbad250a050c17
MD5 de69b5737718e0024e54e4948043c127
BLAKE2b-256 0a4a9e4cd789ba743c622795a777fc1421eb4d725c06135b0fc04003b9ef0901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e8927ce58dd5e75db1514a765e1c6cdaacea004da3cd6a63378918101f11b0a
MD5 665f341a821838ed24065388b4107e7c
BLAKE2b-256 752f664a601cd737476ea4be3662200ace65d25ccf44d4f118ce0fd30fba4d75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d627919087bd7c825a02c37241ba3e7fcd9a9aea4efb79aad7c8f22d74b41c51
MD5 55f843829c9c552c55ffca882e1a3b6f
BLAKE2b-256 724e0eb9ab0e30a85322fe9b47a9e3d6df66d3ba69907e7b6ab973b79605c029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d142a4b70dbb506be7419d8982e32ae855b54446d43cb5071d7733d72a55be79
MD5 d06834748c34af1839e2f7a4558c5eed
BLAKE2b-256 73429f36849824b3fe62f416ade223308ad0fc844839345cbeb81b9cf85ddd57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb8f7e17f763611d4f94dc683fa04e368c45937dc4e1566d1bd26322401197a2
MD5 78bdc64585507c003451c5e20b050d89
BLAKE2b-256 8cdbc356986ad94dd9b4b959785923bb3c3206c507b205a959aac921525b32b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1edc4cefdd98e61d4251c6cc6d7075e327302e1a63a08ed46264ace9cf1d621
MD5 fcaa3fd7b0c4635ab7c03dfbe5faf68a
BLAKE2b-256 c6f96a599887086787439465b23b4ec037deea18627faecdd08ec22cf892148d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19b3ba4cd236a43fb8aef6c2db8493eb3e837bc4f92fb080f3b708daec21610f
MD5 2e3bd9d21f850344a82cd82ceed68c22
BLAKE2b-256 d60e13e711f0a293b918879429e1447f788d0330cc4c2f45dc4516a2125bd7f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69f8c6153da81e0ed4d048ce29463712f892020f30859f603c6371898b486890
MD5 ff82ef369e0f78bbb0e3838424c2517d
BLAKE2b-256 477fff7b47bc4a064a6a8fb329c1fb61b99856be0063a86fcd11acddd9841330

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 380.8 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.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 98b8ca1cf79c5db6b58547919af70a6600379a204b01d5a3243b0d694b2e761a
MD5 28053fef88185ef0e76988b3965fabbe
BLAKE2b-256 2f607dffef612e2e1b0d7e93342d5095d03ffa647084d45506dbf1489650266e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 390.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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20e577dab0ec5f605f360f1a3489c276c42688bc67b62b1aee0b9267db323430
MD5 8a77f9cdf14063e21e24df9fdce5e9ba
BLAKE2b-256 92e69122e5ac938644c5d49b46f271d01c1eda9ccce739398dad6cbabb6cc712

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a7782fe565e4636bb158122df14aec84328aba14285054ae1e88f975d007b9d2
MD5 bf1f80ef0b1937c59d7a9832be63eb95
BLAKE2b-256 7b4d64979cfaefba6c6d13bdb29b497fd83ddae0d69dfdc7ba13ee3f832adbf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 041f8f4792759c619ca2cb7a8e68106c8717ac294ad24d07dc7f903fcc0c804a
MD5 e27998d6d8993616c9cc7c5a8d553632
BLAKE2b-256 80d89d8a8864f9afdbbf64135a025636956a483937fc97023147c5804acc619e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b7ef67aabfacc54187ff768c2f6fd3bc8b74efea09c4a686f5c782b0c4c1f0ee
MD5 094111c79e52e2f4c3671de3cfbaff7f
BLAKE2b-256 d6eea2563760361182d929d19256022ee6a0fdeada1cfaf3585de2303fd48505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdcbc50f109a77da7db92dad3a6ad04468f34538ac4408405df6f57ee724f523
MD5 af9b57b6f068f55b8503bdc9b15c508a
BLAKE2b-256 79628bc769668710193ec896b0c17f55f4ed72473aede9c2a8e82c7a196ae49b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03f6aab77edbb40b05577907b15f59ba3e1ad26998c62e5c80f9fee150e8a6f9
MD5 a0de222c8b9f4d5fe817ef8d2d16aa9f
BLAKE2b-256 c79985928eb6e3f42835c329bae0f1e8efd4f785fe62dbc3e1ca6f15a5d70334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3e02171de5cd8a7110e955cc1bdb2b60e4584c1d329b633d87e281425d9b694
MD5 0a85e0d9751b0db60fa587f1c4ca5478
BLAKE2b-256 de36181078e93212fc5b2470c0a1796748bbb54c7b92d5564be92b296cf4c9d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59acf09d3c421436a9ef6aef48931f6760b765efeed3a88e8a7c0362dabae64f
MD5 be6203fff72cebfdf64368b850b7aa23
BLAKE2b-256 68aca38b53fc7e909abc428814c687ebc9723cbb3c55c02ee1dd9d19b0f934db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 322d406a9b3b18b1d211e78480d64101ae51532a1a3f28397a473723b5b78724
MD5 9eabfa4f3e07beb4f902faf1d28aec8a
BLAKE2b-256 0dabc034862f43974f27cc7d7664b93e7f8794c74e4d1ba2627837673d70eda4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ba6c786d42c3560510cd84f6dc1084ba5a9ff5ef2cddf39fc4b6523f9dd0e9c
MD5 073a26dcfa25629381cffd7d347a2c3f
BLAKE2b-256 ba197cc60540ddad1133482038e6334f3248d74d1a106c34e21464517b0f2534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2545f14ff84015d5cfce2bfd1001617ace31de496b52b08fc7f757bfc4f21b2
MD5 a937b9ee77f7549a038effc220741a80
BLAKE2b-256 a30bfb610e64712f67a9f9f6cae36b520c9a9d86e8500b1d83ba7d4e8b1dfebe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9de452685c27d148634f9d9c990e6777079ce82a3e521ec0699439fab06cdedc
MD5 999924dda93cb49fbe495201c50c78c0
BLAKE2b-256 667e8add1bdd855ce4928f5f159a9ed7ab1573a8492a0c87a397df4b09974e3e

See more details on using hashes here.

Provenance

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