Skip to main content

Format-preserving TOML parser

Project description

tomledit

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

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

Quick start

Given a TOML file like this:

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

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

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

from pathlib import Path

from tomledit import Document

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

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

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

The result:

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

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

Truth in advertising

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

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

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

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

The item that performs the mutation stays valid:

arr = doc["arr"]
arr[0] = "changed"
print(arr)                  # still works - arr itself did the mutating

If you just need the plain Python value, grab it with .value before the document changes:

first = doc["arr"][0].value   # "a" - a plain str, not a path
doc["arr"][0] = "changed"
print(first)                  # still "a"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tomledit-0.9.1.tar.gz (64.6 kB view details)

Uploaded Source

Built Distributions

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

tomledit-0.9.1-cp314-cp314-win_arm64.whl (365.4 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.9.1-cp314-cp314-win_amd64.whl (376.3 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.9.1-cp314-cp314-win32.whl (351.4 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.9.1-cp314-cp314-musllinux_1_1_x86_64.whl (755.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.9.1-cp314-cp314-musllinux_1_1_aarch64.whl (717.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.9.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (547.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.9.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (577.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.9.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.9.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (544.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (541.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.9.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (588.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.9.1-cp314-cp314-macosx_11_0_arm64.whl (499.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.9.1-cp314-cp314-macosx_10_12_x86_64.whl (506.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.9.1-cp313-cp313-win_arm64.whl (366.8 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.9.1-cp313-cp313-win_amd64.whl (377.9 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.9.1-cp313-cp313-win32.whl (353.0 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.9.1-cp313-cp313-musllinux_1_1_x86_64.whl (755.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.9.1-cp313-cp313-musllinux_1_1_aarch64.whl (718.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (548.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (578.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (690.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (544.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (541.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (588.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.9.1-cp313-cp313-macosx_11_0_arm64.whl (500.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl (507.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.9.1-cp312-cp312-win_arm64.whl (367.7 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.9.1-cp312-cp312-win_amd64.whl (378.1 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.9.1-cp312-cp312-win32.whl (353.5 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.9.1-cp312-cp312-musllinux_1_1_x86_64.whl (755.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.9.1-cp312-cp312-musllinux_1_1_aarch64.whl (718.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (548.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (578.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (545.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (542.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (589.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.9.1-cp312-cp312-macosx_11_0_arm64.whl (501.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl (508.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.9.1-cp311-cp311-win_arm64.whl (369.9 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.9.1-cp311-cp311-win_amd64.whl (379.6 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.9.1-cp311-cp311-win32.whl (358.1 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.9.1-cp311-cp311-musllinux_1_1_x86_64.whl (758.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.9.1-cp311-cp311-musllinux_1_1_aarch64.whl (720.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (551.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (549.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (545.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (597.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.9.1-cp311-cp311-macosx_11_0_arm64.whl (505.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.9.1-cp310-cp310-win_arm64.whl (369.5 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.9.1-cp310-cp310-win_amd64.whl (379.2 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.9.1-cp310-cp310-win32.whl (358.0 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.9.1-cp310-cp310-musllinux_1_1_x86_64.whl (758.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.9.1-cp310-cp310-musllinux_1_1_aarch64.whl (720.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (551.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (580.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (696.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (549.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (545.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (598.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.9.1-cp310-cp310-macosx_11_0_arm64.whl (505.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.9.1-cp310-cp310-macosx_10_12_x86_64.whl (513.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.9.1.tar.gz
Algorithm Hash digest
SHA256 6d9dd736d1ab528e8342b1d328899f40b6c5ff2286857fdb609ee1b2c3a4dfb1
MD5 c387dd2d378bdfe303bb2987e02fc3d5
BLAKE2b-256 62952ac8bc6e6bcc1fa8936f3142787ad70010f4c223ade7895de7bf0377ad34

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1.tar.gz:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 365.4 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d2a214fb0b1e51f7a10e30c9a1fae32bcba6f8d7e50974f1c834d4c00466eae6
MD5 6e2cfc5d2760cd988ba7955554d9bb38
BLAKE2b-256 b8af95760adad34595e84030e9c31b74cf1c0026a502a076f631164c8935aa1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 376.3 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d6b9f58a5f518cebeae52d96b4b8b9d4137c171baef2c6f9fa42463c5a822cda
MD5 981b95601931a3058c065136602a6fa8
BLAKE2b-256 aec91e02220330a48fcbb87d60f4ebcbc051871ab3e20d1a7acc6d7150ff665b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 351.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.9.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0dcbb38c62bf5b2e7b4b6df3e6754d2b61195eb1575aba550621ddc33b001c6a
MD5 ffa59bc544fac4d9909c0be4d253ed87
BLAKE2b-256 162c39614e8648cccc675a2c7512f6fd0613fa3323fe4e4d8366447b8dec86bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c3132704e74beda5268cbf42ea7da67f27ffe41b087fe95359c1c9e74c143abb
MD5 134e79016122919dbd4c4a536d3b9237
BLAKE2b-256 e6d900b686a0b2006ffed8b725718854bd36026b46ff1b2ad6fe931c55495e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6f071f05d4da4839755fb5bf511b61abe3b98106df25b4c77d87b50e2eda5d34
MD5 cd6c1361ebfc892020ee6149c006dec8
BLAKE2b-256 2e6a8372d4f7a55c33696111b22bead93b1315bc1b9ff47123b19c9c714c22c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eb4cb5aa45345cde080a6335e8f5346a71df339bacbe27cbeafa306cf6a54af
MD5 4da5b6118ff2aa57a1129296c7080d4f
BLAKE2b-256 edcda0f686f06e6be72d356823e13044fddec1d17cf461afc238455643fe9924

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5382bffce32607c564df8f0c38780d14545a1e1f29e3d027c5cbce2d7fa4c084
MD5 acfe52a1b8f7c13a2f143fae06062a24
BLAKE2b-256 5db798a9121e232e351a4946c71d422533162adb385e0403a1dcdc542ad6cf7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bef69faa7b5eb9d74168c82e1a323931afa2cf0448eff2d50c3329665e2fb0ab
MD5 55348a97b426b79d91deda93603f4fee
BLAKE2b-256 61dfaf0fe0cc663c65db49ef56f470804535a60f469844c4b1d3e6a58764e2cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 248c79b03eae9c947a3d92dcd20b70d0e76bb4cd6db6b7ca6c4239691efb3f6b
MD5 fe1a7784c56510c635f50aacc427c72f
BLAKE2b-256 34dc729d82d542dc5a62ecd20a8885cd625b632c4b14f061c4f7991fa3141d22

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 624a2b3235dc12652fcf5180df8516a33c8c8be280b986b6157dfc4190258980
MD5 297351729b9a69b25243f54f94eb370d
BLAKE2b-256 1ef7fcc7bdb44db8d17270fe5b4a6cfadf6d39f2bf1d30d651b8548c9a48c397

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ca13ab2c816d9adbd238fe1eaf8dedab90583d1c0b1610ffc4a26b9bd7539f0
MD5 76d73079f0b37120503465a1616bf5ce
BLAKE2b-256 5dd95a5abeeb01d0cd2d0496f0595167fd8796feed324ea995fc7f9f31c0d037

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b37195f4d34b6d79361b3c715023c042f2e86a692bc6b332cb052fa292ca568
MD5 0e9bb718bc8bdd8a3a9eb0fccc6612a0
BLAKE2b-256 e3c00ed37e71114a83bb72a2c1d2e6b5b13b2ee8033a2cd2e1c8d2ac982aaedf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78f9555b6994e674a02cfdbc2f8e8a8d65bceb3d9097ca6011b5271a9a857662
MD5 08cc152ab546c0dd847cd008f249d734
BLAKE2b-256 fc671309894008cacc7ef44494789390d40fd77aad48416a477884d8c347ee95

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 366.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.9.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 988cad3bcc796cef483eb4ac48988a3c3c2ff9758ab72fe5fb42165c77a49749
MD5 3791e724e0045247a3eb86e14c0198e9
BLAKE2b-256 de6248f919e57d8c6b08e09831288715f477449bdf2db30e2a67d2d083bf2b93

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 377.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.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f88e8d7f9c31f231188141ca7ccc55f34af239dc2ab2f9da92b7443d14742e74
MD5 c66b6c5ff2f035faa1c9b96ac221c007
BLAKE2b-256 a286bb90ad60daf2a0dc752e0c9c7cabff65e93f6640e74fa68a3ee212cc371e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 353.0 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 27e725faa18024334046d900db7175a40d10caf00953beaca007515553d6626e
MD5 c2ece21d4cf21148feefce780cb35414
BLAKE2b-256 b0e4ce76e172efb5da913ac9d8b609f3fe1a58441ed13539abf0b5c021d6020b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39703f4e7c04f857d7b86067f76b8f95b9c16c76ea0daac86796cb09d484d382
MD5 d67266cbf422c0f1fabf8bb2bedd83f8
BLAKE2b-256 0d53f32647a180634e9061504c978e519ff94f1ce3823cdee33a67fc0f1957c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc9d63903f1fc97e8143639967b3b3c3faa612ffe58a08e87c84d05d3750bfb7
MD5 655c330e858fcf9deea56a879a4ad070
BLAKE2b-256 756780539558a0591026c49f033273eee6eeaac1dc85d1333759332079977db5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f475a8c143a9b2cc00d8d21dcf73d11ebda8c48b6a8f4e93312cf56a6c4f8072
MD5 98eeeb2730410d419fcac1c28906d1d0
BLAKE2b-256 11046f2007baa5fa587d2dd01ebb1e96265402550c7ac8bfd1d51715587265d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e96d5283db1bb5a9d8b32bf96ad23c80ff7e6beb6d387972508d3af1f8dd9de5
MD5 cf55222d68ac78bd0980559ed75b3e2e
BLAKE2b-256 446ac49ac20bfc985af67f36eee00f98072e3c9afd8fc1d07874a4dc36fbb761

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb6770ac3aa1d34c2b3556fd41a81c54a991f21cef3759e652efcd705f330328
MD5 e13fd6bcafa072aded9f7a338a673927
BLAKE2b-256 7c27b289700cc2b467f461bcd701508bb66db86c117dbcceac9a683adea42cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a14a49275712b75edfb0edc42d83e443c9429ae152531cdbd7fc3fb83eed2b5
MD5 42b5fcacb0cadb8f604a66709c12ba86
BLAKE2b-256 a3cd7f7e37fe22254d4d68f630bee1b34dd5596e7aad6f1822f832426589ab1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 325d86d7bf1b58b8f0174a19b7818ca90672c8e96f6baf40c4528325c32c0a0c
MD5 bd54222e9f59c855f7bed8ebf512d7a3
BLAKE2b-256 958dbde79ea250c37fde10d2d2d48cbb788800e70f118f796c57e611b3999285

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc613b01aa1acacffaf21cb89daea4b98ebf60dcd73c9d2e0f60ca6938e1ef1f
MD5 dcb72e911a17cf4827ddcc00cef8f324
BLAKE2b-256 28af26118ab2a8a8cd1cec0be504903320a6cb283ea93d737a6d25a087162a49

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6405df7147b0a14084d9d9aea51a49281b474de38c347218299bd38248209e60
MD5 f15e5b29f68690c1f48c3244f5c9b660
BLAKE2b-256 b973d6bf80875cd978f44fe160d798d2d28bba7e3b300cc10719d1ba6d507907

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f3a18df2f2253ed5df94ba7176d655e1f33ee9d2b846df60db7ce294310d7444
MD5 bbd3ffd2ca50384332edff3f9570cc79
BLAKE2b-256 5cebeb32c9cd0a39f0c04b6e9263e99a34ea3ac30883ef84a7d8f7c8e4eec65d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 367.7 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cc357517a8d58e9cae43fe3602532a7c65d1fcba825700571995db17451fc760
MD5 13e5cd94ecae55635c4688f54c9124fa
BLAKE2b-256 85bd2fd950ae7bd9aee45f5cf64e70c80fc40c6df9dfe4cb096550aea29dcef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 378.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.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 420ea2e7c4dec64e5c2195ea27fdf817147afc488f725126a0cbe9c40194f361
MD5 c451cd05263ac0fd5dcb7db97ff1c7d3
BLAKE2b-256 7e7cdd68045b0386606c56d27f51f5b868687aebc353029680279734ec84cfce

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 353.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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1d6c2cf4f41b29f3051f8411379ad4fdf11be06b9334e001f30f82bdc97a9f71
MD5 6ce81dda04f3bce1ca12d49801422b37
BLAKE2b-256 1f2e5a43c40d307dfedbe9c0d4c1e7e9ef20e6ed9f3f3caa7cb7f820495bff91

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 74dd1c429fefbc41344a6f7b5d2735dcb74eb31977933ff246c3d07685bf10b7
MD5 b28170b008ac88e37f3364ef04f49d22
BLAKE2b-256 f6da68b2376b906b912107706cf2d9a3d7901cab0fae8e26922157eca598581f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 774798efb582816ec519b9f4197f2738410a34a7a0adb4d080efe4a778169ef3
MD5 6dbb2b3acd56b181fb4e24b92aede038
BLAKE2b-256 0f84ae86947cf14a52fc37c2fd76778bed03b9c909a139d7a5e9572392f03fb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc203fc119c3a7c21784d66f2e119004a92b02fed5155a03fbf7e88528d142fc
MD5 520192c095d1475b5aac8f7121cbd021
BLAKE2b-256 dd99f852f716f2fdc48da0c68f27798ce12d36ac724ff539e7aad2a36e68f511

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83c9366487635b469ff8c26beb08726f0aa7fca439e240809516987da8ad52da
MD5 ed5b510a4e0e767c4c3d726f56682297
BLAKE2b-256 87c8e684d49c2f46241ee6772b1e454eaf59c7c99c61a5b64f974a2e957987ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7bcf451ef676b1fd98c12b111d0b31597bdb6b695e1f49cd209a1df9f55b350
MD5 8cfa773936a6e5d036ad43458ec1b3f6
BLAKE2b-256 60a9115d6e4a5801e74b87ddabc6a04c56888e325869cae5b1a73e287a2ef672

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56d0ac9e66a5de40bad1cd53016f4b9e42257ae07ac71c0fbfbe70b90daeb1fd
MD5 a20e20069106242b12d44f720d9f06bb
BLAKE2b-256 fd12385fd44abf00ac375029684497b075856c77d54b95ea595bc2797fe86eb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7060e379c052c4f614e6e10649e348a4bf6ff663f19d4cab8e140541d31560df
MD5 8cec742eb847cfa7e91884f056dfe45c
BLAKE2b-256 33e6b140aefb532cba5a875f0b447f0aa370e75362d0ef466c1d47dd474c8883

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4429ad5e143fa3599cfea3f541d30e674dcdab6f51029099ecff4cda1fc9108
MD5 2f27eb45dbcc4a3a0a172f3249a4394a
BLAKE2b-256 b46f2f2c4fcc98e9367b2ae9a25bd40c994d69acb67309f8aa7674ca912bcb65

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7e003ff51baeb7fa897cd1981d653fd551e89752fba8c591ed60172cad2f429
MD5 f81302cdb5f7c2038032faa17c8aa480
BLAKE2b-256 b785fc39b673c13be26f5ebfdc9a0c999be6c9c3d5c8ad309135a15b9b5dbf35

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86440cf5e0b4bc2284be3e0234804620a2648a8dd523b2aa5f8a5ba520279fa7
MD5 0e648bfa411fdf673c3fc093d5b18906
BLAKE2b-256 cea361ddc7e49c62a3cd7f862b8e0b853cd21105a4fd50af9b9d9602c51bfa20

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 369.9 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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2b07bcdbc029e8029fa18668131deb8dda65a13429c17512802481395fe17d1f
MD5 3ff3d560e04a626d2e2f96861aa09460
BLAKE2b-256 f424f872d5390ee79280501b8261b27be885dde5f1efdd7c5e6293c4439f1087

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 379.6 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 55ff2b51a93f516cf224d9c51446c2c96bc40a494b361780ef381de518d24f57
MD5 6195056c5046209590e14d82c530d923
BLAKE2b-256 cea36e064e6e9d98099291936caf8d4d232c2a834f212966dc55a09a59c06b94

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 358.1 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 be01454c8f62f460a229639588ca01e8128f94ab449eb8d534b06f01873f3ab4
MD5 67abdec0de3f2d7c13d4790f07fffcdf
BLAKE2b-256 fed6cf99005cccda2f2cbbf9b75a7e57d41cacdb5e954344c871da2a4c389121

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa72b35c2c7bea4e3de29f82fd9e39c7417adf2d5c5f2d839f01e67c2ca1d89d
MD5 f306b1478e099705d5f0e6391b52090f
BLAKE2b-256 c367eb825ebdf889bc36f10e91c7d7f06b0246bd402a7026448e97497adfe977

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b99f1fcd9cb1233d8905acfdfab21514093fddd7f25b1f8521c0486e64a2c406
MD5 af5c1d116e3ac7258016ee7b119bec08
BLAKE2b-256 5d382edfa335df02e3df36a47820f3fb4960f8831954ec94abe6a8343d1c6993

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c593b4a9b4f40708e17174c3c7d5106e11e7a57d209ac8bf87d03744db4fc559
MD5 f5f4126ce72fdd49e25beb266bd6539a
BLAKE2b-256 99aa7b3b3d75e8417861ed76a6c3841baab136a5f46778f0a9e5a8300e60629b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c02dbc9aa52572aa28c76cd73cb6cc60c34de21ef07ef737ab037677a7833dfe
MD5 dbd02ab32a38699b48d10c5ad6f20f6c
BLAKE2b-256 9d39c0d72c3c8ad5588f709c519734fa3f21eda4fa4b3237e270ade592ca7040

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fbfeb94b7d61ab881f9bd30c3e70cd7910b2ec1b7e50d2628a57235315edb54
MD5 65a75a829f77177b320c5b9e1c6de9df
BLAKE2b-256 83792a9d08e27ef5b2684e83db4faa4a63bee43dfa882e2037c119b1b32b11fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b1e7d7eb835cdc2db43bd642f40041addfe125fe39e90894c10f77c68139061
MD5 14af2fbd1e4d0e4093d51e03f85161c7
BLAKE2b-256 e65175d2690f0a382ba729299ab3b4be53a1078021d4df75583a97681cc75bc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6042ed8e4fb680c1a51a609b9c6a226cf09616dd4c5eeb0f885ff66f3c94ed2b
MD5 dc3972cd792bea12a6ab925cda1d83f0
BLAKE2b-256 0a9f2d7d800104e739d03138d66cc92a8c7aeab7530006d91076bc52256506fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 75e2fe7028aae5bd3302dbb1c13c280f0940f7af956af74de9712fea237a9d88
MD5 4727232d2800c690581d2470ee0c9f21
BLAKE2b-256 fd92133dc8eee2ea044b46c48bab2c201330c859af1612d426d995c747abd228

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2856a7cf07f735ab47707db0a809d61bf2a1d5c5de628726455a677adec1c6c4
MD5 23a1537078b8300bea90213766ab9895
BLAKE2b-256 3a4f8b5ca038f9e85550227845566133a901ebf2d74811b53bdd088b3b8a4d96

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d40e98fe2b3c69c5a6dbfe2f6c5b49fc194a42322ede40c64c2639f8bcfa684
MD5 1a9524ce55959293b0d8993d4b5df335
BLAKE2b-256 71de85a91f2aa86947274b8d288c7a360a672270614715d5cc6156b93724f2a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 369.5 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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 dcdc197811dcd95305995f8441aebba2660203392dc4c94b8163cefddbed3128
MD5 e368ea34f4d30bc7b5d52c5044f2edce
BLAKE2b-256 2f4069e21409dd74dc4ef87086be8256064881ca3ea615691df6ffa1999ec5e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 379.2 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2070c298d496daedf3e1c90c1f7d86a6179225e02db713aed66337376a079815
MD5 d4fd3ac30a1011c468a4e4899e9173ba
BLAKE2b-256 ce9ce6ba7a2cb3530834925cd8dab12981616d478e5c23129a806940d720066c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: tomledit-0.9.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 358.0 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 448cfbf957c22e487e1c0131cd25426c159c249a13e3193662069097bfe3df1c
MD5 d58e5e91aaf3ecc7e99ad436d5a7e876
BLAKE2b-256 3c0e5ad5d30375848736eae6da55ce9f14a845e9cf503c6d0c967c2161fc7639

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a87c838d6701729e44544a4e93c78a25bd5d99bd5ce5179eadcab6c341c546e
MD5 bc9fef0f4bc5d9cf6f1b8790f8dbafd8
BLAKE2b-256 ec9e08769b7bc74241a1202476f04a78afbc71bcd9876b62a893bb34a98f4fde

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb16da178d1ea6f02eded222eae8a1804d1f52178c97db22d2565bcb12580ef5
MD5 47ddb6a5d6c1832d5b55bc98fad36244
BLAKE2b-256 854e142e0fcb557d6e43b2a71b4185335c44f114c07d049f677557fda513d872

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5552a7eba81239d42357418669b212af81c645aeae598b3568df03b8d2ba49e7
MD5 2b3a0c3f5e5d8e833466657ca75d452f
BLAKE2b-256 e7d025cfa0357cd21c13a992e76c0b8d582ad65fc7f19ffe54d139964b511898

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33f9b8597459039ba3ff6197f6da339ac31d7bebcba788aef544ffeef12025ae
MD5 2493d481fdc9f5a1785b67c8ae52c37f
BLAKE2b-256 f374a20001d29edbfd89cc2faea7ea1dfe098c907c150ef309e8743df10c9fb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30717430f29f22a017776986e777f55893fd927f6c08a5445887ef9c3083a7b0
MD5 6696059338c7ff816bf956eb70e87d23
BLAKE2b-256 33909d97933d187acfe824287f5f1424950b753248ac117a45625fd9942805c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a87389e2852ccd0cdc246aed033f97925607c6f9d4e7f9f2763900891f60d79
MD5 8aaf0f069d67518af96d586a6c889a34
BLAKE2b-256 355a7e87bc2e381b5d8bb6244494eb65de9aad8546237541c112bf86cd90029f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28fc9150991b14094343ae60fb6b63a5c561b701363107848c253307a0a2c72c
MD5 8a2c0e20cf74fa567379385939e7a7d6
BLAKE2b-256 e00220dc5b3894d0b852c58e4571ad6d4d8713291707f9ab533b231c80616401

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7054b5b862abd07cdd09dd53188b5f7f88c6125745b93eea7edf68ca0f2c370
MD5 eed493b7fbe2b585de266a1de997efa7
BLAKE2b-256 9e31aedcd5d0292ea7fbae64b26f48dbd81b9f64f0593ecec44813902e9b1a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2f2e4162026f11a9bbebfcac52db1dff38430c1d1f77ebf6aea2dae668be3c2
MD5 43252c38796bcfd8ad48cd055fd7843d
BLAKE2b-256 4ed4a13eb40d957419d2788ce19d63d0632cfbcf242d3710118ca7f94388a697

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-0.9.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-0.9.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87127c8b7b52e5ba8c3e94328d1d081d9c96a819fd89e84411123da58d99abec
MD5 45077c44de99342f0d16f24f342759ff
BLAKE2b-256 6301a5c35da073d52809681eef9fcb1281bc0223c3cfcff53ba3432e63bb27c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-0.9.1-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page