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.5.tar.gz (69.0 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.5-cp314-cp314-win_arm64.whl (377.5 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

tomledit-0.9.5-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.5-cp314-cp314-musllinux_1_1_aarch64.whl (729.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.9.5-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.5-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.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (705.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.9.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (553.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.9.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (601.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.9.5-cp314-cp314-macosx_11_0_arm64.whl (510.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.9.5-cp314-cp314-macosx_10_12_x86_64.whl (517.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.9.5-cp313-cp313-win_arm64.whl (378.2 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.9.5-cp313-cp313-win_amd64.whl (388.9 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.9.5-cp313-cp313-win32.whl (361.9 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.9.5-cp313-cp313-musllinux_1_1_x86_64.whl (766.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.9.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.9.5-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.5-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.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (554.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.9.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (602.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.9.5-cp313-cp313-macosx_10_12_x86_64.whl (518.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

tomledit-0.9.5-cp312-cp312-win_amd64.whl (389.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

tomledit-0.9.5-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.5-cp312-cp312-musllinux_1_1_aarch64.whl (731.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.9.5-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.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (706.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.9.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (555.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (603.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.9.5-cp312-cp312-macosx_11_0_arm64.whl (511.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.9.5-cp312-cp312-macosx_10_12_x86_64.whl (518.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

tomledit-0.9.5-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.5-cp311-cp311-musllinux_1_1_aarch64.whl (734.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (563.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.9.5-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.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (710.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.9.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (559.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (518.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.9.5-cp311-cp311-macosx_10_12_x86_64.whl (527.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

tomledit-0.9.5-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.5-cp310-cp310-musllinux_1_1_aarch64.whl (734.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.9.5-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.5-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.5-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.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (560.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (556.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.9.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (517.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.9.5-cp310-cp310-macosx_10_12_x86_64.whl (527.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tomledit-0.9.5.tar.gz
  • Upload date:
  • Size: 69.0 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.5.tar.gz
Algorithm Hash digest
SHA256 ea7f36d75c4ec268364be9c27ee433b3aecafd28b9b464b91b00973d0ac2edc0
MD5 dc3096cd421a25931c591dcadb4b0526
BLAKE2b-256 9b6b437e74a75fd8b8042e54eabbbcd6f6f9b43729c1720bb8728db65c5aab9a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 434aef3de18754de4901fe9f4748ddb65a35afe8173f34de219c2313a7eaac9b
MD5 dcfe1fdd044c79f0da3e8aa139b05edb
BLAKE2b-256 fe8a30eb50e90bf32d805cd08282e8163a50eaf5d5a7e323b1fe1334247be03f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8d444cb3e0865f0e593ef87e9b83610cb3b8072d4694da80b02fd07b307e3850
MD5 fddeac1ceb9eca7cd0e9981b944e6833
BLAKE2b-256 d99cef1734a8173c4afa721da892c54320d1d965af04d6ae14347c6b33645b1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8837da0b884e8005bc2aa17a6f4c6d0631a588cbcf3154616972a326b761fff1
MD5 96f7e23e98dbdfdc45d5cb21281c4d8e
BLAKE2b-256 c8046461723b998681e0a794bd5e8ee9f4ec824fc97971e90f7a02ee9fbf47eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c7abb8eb94fab6c121bf6dc4cee51dd5ccb29f9eb7d00881870ab562a3a991e6
MD5 be9380bff334d633b00abc23ad65c262
BLAKE2b-256 e9509812c1dd54ef91e5e200ce0e506acb608c2bc60f52e222531244727cb850

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6ac58691ad78ad8906342c3a4e6723dd89e8b3f8b08c6d2eb0c2641d62573b6e
MD5 6517a6d5c0d09e288016b0924732af4c
BLAKE2b-256 96168cab8f590ff1c4674de52ed14499b4ee89b9b99c37eeddeedce42da08052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6732830dd93ddcbb86e373f4a7511e65f0b6dbbda152aa4af9d1baf705bda28b
MD5 4d358ba522285ed6f962ae90241a3c6f
BLAKE2b-256 4786e8e505a2834a8281356d2c6327b19a33a9b804ed3240433058e9fa5be83a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 681d66b2902b577901abedf16eb5449973a0ee6532a0a735ef2cdbc1dec2f8d5
MD5 791644018433ba54e23244706a6dd9e3
BLAKE2b-256 e85fa17e74eaca5593725daaf8765454166c120002c92139bf77377fee03cfbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c41a6242bde315b9800d32d7694827d4d243c6f6ed85c6e199b5ea6cb0ed8d1
MD5 006827905c28d72bf3249c2b49c09df7
BLAKE2b-256 0c5749535d2c8bddfb4ebd13ff7eed09945333e1290e121ea4ae0b83151f6fff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 023e0156553137304a38611ae9011c4a9ea28e2d2a9f6fada1ac6dcede4c3bfa
MD5 f2cce05d697a0f6d95c43e6112bd2e1f
BLAKE2b-256 8c6e100a41b59569f05b1b39efb425a749fa6434423d7b921c1147a40c63ee3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 660f5f4eddd4e3ee982da33cc60ff29d72703d5fb63ddda80251522e7b7488fd
MD5 e7330c15073c1dd621f79b2aff7ac298
BLAKE2b-256 0e07a98ced2ae263a92f885bd30b9f8b3a3ea80e8daffd3435ac215692b13d5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d7c0315aac711d6c75de3232e02e898dc6245c695df1c448adb06d11f837d55b
MD5 10986e48dfb4b5496f7377ccd757caf7
BLAKE2b-256 f5ef8532d3299df5cc1815363c126673b34b57e0a4892520c91902db848ca104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 468d5240ae0f8ac5afdc319903d431399bf99518b5695060ff3f2bff99797f81
MD5 b5edf9947d3fb048dc9b6fe8f1b59b45
BLAKE2b-256 2ad09ad34674ac2aded0abfda865e82724e17cdfaed8bdeebcb7f2a896485ef1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d457c4a876e5d9bc3861ad47cd8ea1f6cb14cb8b627bf11d0dcbe2ce3dd47c2
MD5 99ba40477b0c4bb1bf427103795137f7
BLAKE2b-256 cdc16922a235ed0c9e36378a4e47db41d5d656b05e24a4ceb4be3ec1310cf1b4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fc58231f6d6c6951d0b1efbd4b0bfd35a1c6e8d6fb9555a588a00cd1f72cb8d5
MD5 928c736255116301887c8423c27b9649
BLAKE2b-256 d357e13606e7130cf5f18c9d93c6625e82dd68c078fac84401c35a6eac4697e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 388.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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7781963194afbb442bfea9656f0ea5fae0dcbed9a7309d4df581665278ec57ed
MD5 dd8ddf139d90c5d70d695e31f7488e6c
BLAKE2b-256 cc1af49e0251b71cff70ed5d35bc249689903b0f8cdadc066a3aa43bab81ea7f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 361.9 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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c2df0efa57339c306dedd286594ee608899da40a8d284b89b5eba4b465df830c
MD5 29a4fef4c60bb6077ab067160d3e4e6f
BLAKE2b-256 c376e5902c1d5d5636996821675602083f996ea7dad8b66c71af397a6c6fd9b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa4cfc7f52092fee52439945fada4849650194f891c3e603f2cd1144263b1cd8
MD5 07f790f5c8ead600c86527b2246e00e5
BLAKE2b-256 3696ccc7a40383612e94b5cc4e0f6927e0333093c3729095077757b622da0f41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 abc49b70e1dca96bc9162323b6b104c8acb21ae20f77f38f4aa5f3d9326f9df6
MD5 5d5afa6a5b83df4719c5cfb2cefa3310
BLAKE2b-256 f7313ba526ab331bae6b9d34531fcca52a21089f62cdb276d1d10aee6063df6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a86394fa78f213e538825085cd507991ead0a829240dc743ff612bc151622da
MD5 f251ed43cb2c8d551f7e845839e19a88
BLAKE2b-256 16367bf57943bd763e4557ad4840ac1f7d68797faf726c847053837770e86548

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e4c3ee747e5e2f17cde6b4b371bc9ea315e7af91265c906f7b1eefc1c5e6d2b
MD5 29a3398cd679431c5510b1d79bb7a091
BLAKE2b-256 de369f279bde3527b056293f25f1e6df2da4126baf5c40df98bb02f88ac0986d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 574b2bdb772e772c6bd4d6da17b6bfd93103cd1ac4f61c0111b26b73d9b77eb6
MD5 bf7100b77f001a132313aaf6f0584526
BLAKE2b-256 a0668982906875972ec74780363f2a573ad70456a1377a4b3b7b4d67b562054e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8c227f8136b6759970746e9fd531f615dba38d357028d04df7bb26e0cf6843d
MD5 c7134761bad7468c4bf21bade638659a
BLAKE2b-256 81b22a514a81d650c9987f1001443a0a9d69f6e585814f61837402d13fdaad77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd7e2f2e0d8731ce63c3d1f2d368a3136274ec1ea3c100b00a844a189f81077a
MD5 e5268919e121cc5d34cef7ed59d235cb
BLAKE2b-256 22a99ddc2d99bbf8c64e0b437398ce91a0c2745fba55d6f3e322dd7875385f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3ae8f769e7e2943e6a43ef511515d5863efef3514a8853f05b2d316de4fae87
MD5 44610db1835661ecbc848c574b691b25
BLAKE2b-256 c4f5a3a548b549458d0a160fe0b0afa937296828eecf763d1fa65db782320b6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 969bd79e936c23799debc517a52f3d296d7ade09f6f2a55ce144334dd7afa8eb
MD5 f5c27c897e9bba34a2fe40b542c6ac72
BLAKE2b-256 4cb5397286c2fde314fbb38b370a6e628839863e4b744c8ca87f0b2f23779115

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bbf12cd3b585dae090cc47ec26686fce8e715f30d266dd56b41f05414fc6d41
MD5 5c8657ed3a02a39be1649edb318fdfa8
BLAKE2b-256 8955586e9a1203ce7f30da26139e58374adc6623f3d239c7ca8277552f055a3f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6411ffe1f5356e906bef15df55679ba3cabbc6337d579ec94ad2cddc6b649b7a
MD5 02bd4ce7154a1f147340e5a378b9c96f
BLAKE2b-256 7692b414b395b350ecd00a2f999297f9de0ea26c8dbe5c05cb4b6750342cc63e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 389.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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 108643575d841e70eafb42eb135c2781e6ac83b9b80db3546cdc59137621a54f
MD5 60d5d6ecf232a65cdf5bb6b5beced462
BLAKE2b-256 4eb0e335907b6b1abed8090cf635d6374a5217a62bd89c0ddd736eafac38dcbc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ee8d25bc2fad522301818bf2c4b915aaf108f476f8d20f7d31b8801e5958f178
MD5 e3078e7d7fe7f87c6bd5c363521ba990
BLAKE2b-256 b94658ae8334a3e7430028c582343da45a203f62ee449d118f65bd8f7e75644f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 76505df90561de0f1006f7403925e2bd0691b6174efc383e345769490383b480
MD5 7dcabeffaafaff91a073f4f94bb2608a
BLAKE2b-256 241c54f9d37d91be537df9d2aee4b2e8d7b5cbb96a31ac2f08c14ce1890ea07c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4cf1ae1a8905beba277e5931d719f60f800a5f053d5cfb81592fdada8e166e13
MD5 0ad15d38c917215fbb98bc9bfb5357c6
BLAKE2b-256 c14e133ab710175e18ee35a2cd7fb91a7760f1c313b604fa2a8ce48ee045c4dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acf01b854928b4a39e451fe317f1a6190a3fdf32c2dc6c3c66dea33dbf783025
MD5 778db6c20174c77ecfb918fc47747b79
BLAKE2b-256 b84181c4fd32b4c5d00c670dd9509b9b44e610b76cc940ccf28c6c7e10ce5a54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e28aa6601334044d524599aef20ec5a818fcdb46b353bc9074b47899d64498b
MD5 ffc00d1c5a18347c59396c25757b1e5c
BLAKE2b-256 7a16a0c60b1e9da886e889735815ffe3f9fb6a4546633652e9a16ca2d0e278d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6509d995b65220b496d9c683b9d5ce738c01eb95ffdf938dc625544f5bef3a71
MD5 6173bdde505474030250ca6cc501f077
BLAKE2b-256 90c413cce7269a5fcfea9792fcb6df940372fbd197a09689067ed75c11ecdd8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0704d6840d93ee9b3e18a67544d1a1c991aa2e39b50a331929c21f2a7a0bd80f
MD5 944ee00242e015ebfc962810ff0bc505
BLAKE2b-256 b4a7bcdd11c889cb3b7a9cfb02cbc2e1c35462bee0e26aac5d4f389665ca1035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1fdb80d3404da481efd51f814b1fceee49a528f23f981072394a8d331c7f85b
MD5 9cff3cf048187631afcfe3a6e143af34
BLAKE2b-256 e0d17c287f086564cac93d5e908074dbaafc4a72fc627d47384a97bb74010716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c5032c915ab56b5760f02ecc090499b7d18c9eb45c72dc446c469daf4217d14
MD5 ad5d5e351f2e7a8f8e0547ef1977ec77
BLAKE2b-256 473fa486c45d41ed4029f9f8bf6ccc2db62e6e1142ed77f05fef034491db9747

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbf232ec36da30fdf829d294bc688aa6950160a3b9adb0ba33e500abc5275b73
MD5 dff486bc732788a7f7c5efd576b582a8
BLAKE2b-256 cfc66b2644b5a84195e850d648cda1f214c1533bd4834882b17c61f49200e7c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e8145fdea2e499adc58d84fddbf34c5599bbe91e1bc0bc59788e1118665005c
MD5 2a0b0d4e7c69c510b3271758b96753c2
BLAKE2b-256 b39856d4668951f19c51c1b7e06a7c41a4289c7f1892263f5a6b6d8757e6dd84

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a71805c2736fd3475743ad8e11b6de7619eb501c47f9b6cc24f4c23e30b58fb7
MD5 886a83a760b82d6c480db4d0773026fb
BLAKE2b-256 88a93cac02d74eda1f70b00e0751adb53cbfab51a54e33ad6d8aabb4dae38fbb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 29850858bf02cd265a30fda21c6c210eef95df801d70d0103d950f51b022bf43
MD5 2e8b31464d333e9e20ddcaf19f28e2be
BLAKE2b-256 76c4320cf05ab72556817b00c6dfe11686f6bc2947ea79a0f100738b4cfa9894

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 082529b35803a26144ef16902f090973ebd693dd89854ef22be1be9aa8877c40
MD5 9258c80c7d1bed59c9fcd231c1dbdf89
BLAKE2b-256 9afc496bc6147bbb4ee670d35fa82e4f1bbc512663bb0dafd70650b332da5d33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 45a6a4599fa40dc145c01eefe082c07a4b4c2138243d3ed90152bfbe7bc3a847
MD5 6a75b56ecefb9917c1ba8fb1804e0083
BLAKE2b-256 d5dc664e066e27ede8f3c3d9227add4059006da0b8dbfc545b0efc3a61f4c9ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 abe569286a365499de0c824c9424f15240b20ecb1c6a260a2cf5771b99d00daf
MD5 9b98e3de317f7cb23bdd2121113af998
BLAKE2b-256 521048f50e0776607528f841fb371400289584b2ff8221593783ddf846acf208

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51666f376f93dbfe172a7fc1d8827ab59140d495e65678f4f57ce142fc3e78bd
MD5 7a7ff20af807446232bcf6cbe5b2fb69
BLAKE2b-256 1f3ac8115d2d49ed88984c154c3987ff20c86f4a18187d3693949926eec32fe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97a89fbaaba6d3d0306ec371efbff28d9c66517973c6db2f4d95ebfb13c7f289
MD5 03b66bf4d9d9345d82a7490f29682245
BLAKE2b-256 057414056bced7fc9c71166872027ef56251ca74bbfae4cb7401c66ed8cb11b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42c502220d7eddab46d6903b60bbdfbe6aff892c2bc51bff1009a38cdb7445d2
MD5 6a835527ed6624193214c8b780a75eb2
BLAKE2b-256 c5bd9c217949ecaee78b67ba922fd5dc8374545156a411529d72c10936c354d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d5f4818c3fd33cc43f61bf72c1f56d8fe6b2b34f300a48c367d936e5493a062
MD5 954a2f87eb6714c9644f493ff4aeed84
BLAKE2b-256 d295398760c0c49f9d55ca199b52a53068b29731bbc6d3b74fab3f7874d40261

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 916adbc46346f82ea69cbf25d88bc5fe00ee84db7a82ade0e654a11e17fc89e5
MD5 6db53799d2572373fcecea3ef85f7b4b
BLAKE2b-256 d5e26402ee470f38f5edd7aac8f652d020cd2ba8239c0a16830d70857b1fb99a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1a24db633e48efff321f9cd0183ab55d5bafc29130885fe738fc81e623f0fe3
MD5 c50e104d57190697b589573cae30e3ef
BLAKE2b-256 8ada0e4c1f11a7679833e2905331631730e92c25dfd03f26dc312d639fdbc174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 293a0bd4efd80011df485903e15245cee5a62cef3677df5f7686467ae822ddd5
MD5 d7794bc795479de8fe4639ac8ff5377c
BLAKE2b-256 2e4e5d54ee88debc86d36d45e446f263284fbcebadac4bd3ce6521c46fc963e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 878540e6fe3bdd72ec62d1f416cb0f3bd51810c8c6f798e1d6d32ae910621267
MD5 9b1171de32d182f76146618e5629af7a
BLAKE2b-256 72bf3ac6b9a4b9cfe2fdf0e1ebf7f9ab407accd249879b8504308b939aca16ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c1cfca007907fd117fc476028b9c50cb696f31a4e5a8eb3e6d7365d84c37bd37
MD5 0b40a9a7635273880a7a2b0fc0995ff8
BLAKE2b-256 7bc8a83902d533c90a45905eb805e0956033d0a5f892dbce3168db1088738912

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 04e3c66f12574660f392a35174fbf05f3253186495a3a63e1eb1825b7f1e7f2a
MD5 83be6da4688a71fe90b84931bfb9852b
BLAKE2b-256 717054e3c7fd0f0814d21ec1ceee0564e68aff1903f8ad7fcfbae60fdeeb6800

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.9.5-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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c169057480bb2f8cc69ba93556541a07cf1de44f70b086048969e504ab3c03a0
MD5 cc45c176828d7cb6b42ca97be131c147
BLAKE2b-256 78b4bc7d4505895e4d54744d42b8e7a6a224c158525bf2cf61c438c3a5e63259

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d7ef0aa41c168e17ffce36db7a3349d222a75d721d6a250cdd154cb481d56d2
MD5 9d155238e7ed4428a5a1b410c49ebfb0
BLAKE2b-256 0823bef35f30c6963370766558d1bb317b315e1d0f7b450267f9d9d093e6b3aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2e2957d20476b7a4797f5358579eef88b719b9bed13058e2a6b953123dec8c95
MD5 9c2fe2750a566660efd7995606fadec0
BLAKE2b-256 8c4087e3e4da7bea4bc549fe23d431ac54a151452f8c1a2b496560a8dc9ea6a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fda0c5feb70869ec9cf0d69496d9ce47c44cb43a61df876434c96a829f8b657
MD5 5645438ee5868652dc606fe31e1fa8f7
BLAKE2b-256 bd552a5a3660291e54d07c8a79bfc4681b0df47747d772f92e6c0dc0a0aeca3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 edebf23a62db21d4bd7eb5c30fae62306359ab9f84f4f48d7fdc647492743439
MD5 35b3574816f25af5b8164a8bb87b7316
BLAKE2b-256 93c548c28d2a6d2edfe11205136c91d8dd0caad474936c0d397ede1a089d60c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 861b24c77011a841f95cbcbfc594645bdbf54d14bbe7f08ead033b71991503f7
MD5 d502ee64a2379111277193b8acc4201f
BLAKE2b-256 4e0b63f99ab63ed66c192a1c4f7d39887f66599ce82358c9917aab1f53c1105c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55973f47f560348bc75e8dd5af1ae12f3c217fcc451bbca3b52253a5bdb94bed
MD5 90e13d0db6b87dc3828f52285a00c1db
BLAKE2b-256 337050d64f732ea36efd7f6dcbcbcf5b9cc949fd4a032d2e1ffd16321c9c46b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f6caedd530a4a984d9228779da3cc22c3fe38d6dfc38d1bbd5314c5f74f1262
MD5 eae91040b2031b37d1ca54a9cec57599
BLAKE2b-256 3e541a1de65aeb1df995f8a80432e03f09ba45d77d3e1b9ba7c83ff0428008b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d3275a504c6e30547f2453f6006c167efa8c95c4526d928071d71a99f0a0ee2
MD5 c0c28b606a9ffa9aa273a0fbe82c006f
BLAKE2b-256 606102348553b2ac259b51b24f78061b0d7148ff160a8c315137776fb8decf4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68e1a1bd832bad0c0dbf10c16cdaca8084e00a4774dbd8d1d9e6cb807b528c53
MD5 c85424e6c093576b961f5ba5e266c8f8
BLAKE2b-256 41ba2407b8ea1e98c89205d6ffa4131e39709039c6d3f90b56c020ffa5ffb710

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.9.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36bb318ff4ea9cbff869e179b1494862811963f818928901c39e7dcd51c3cc60
MD5 aa82b896bfaaa319fc10a2e84a0b5e2f
BLAKE2b-256 cca42219629a73cfb04b3d15274e2794ba5442dd618b3ecb3029804b5fe54a14

See more details on using hashes here.

Provenance

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