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.2.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.2-cp314-cp314-win_arm64.whl (365.7 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.9.2-cp314-cp314-win_amd64.whl (376.7 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.9.2-cp314-cp314-win32.whl (351.8 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.9.2-cp314-cp314-musllinux_1_1_x86_64.whl (755.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.9.2-cp314-cp314-musllinux_1_1_aarch64.whl (717.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.9.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (547.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.9.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (577.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.9.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.9.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (544.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (541.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.9.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (589.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.9.2-cp314-cp314-macosx_11_0_arm64.whl (499.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.9.2-cp314-cp314-macosx_10_12_x86_64.whl (507.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.9.2-cp313-cp313-win_arm64.whl (367.3 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.9.2-cp313-cp313-win_amd64.whl (378.3 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.9.2-cp313-cp313-win32.whl (353.2 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.9.2-cp313-cp313-musllinux_1_1_x86_64.whl (756.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.9.2-cp313-cp313-musllinux_1_1_aarch64.whl (718.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (548.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.9.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (579.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.9.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (691.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.9.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (545.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (542.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.9.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (589.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.9.2-cp313-cp313-macosx_11_0_arm64.whl (500.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl (508.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.9.2-cp312-cp312-win_arm64.whl (368.2 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.9.2-cp312-cp312-win_amd64.whl (378.5 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.9.2-cp312-cp312-win32.whl (353.8 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.9.2-cp312-cp312-musllinux_1_1_x86_64.whl (756.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.9.2-cp312-cp312-musllinux_1_1_aarch64.whl (719.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (549.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (578.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (693.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (545.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (542.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (590.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.9.2-cp312-cp312-macosx_11_0_arm64.whl (500.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl (508.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.9.2-cp311-cp311-win_arm64.whl (370.2 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.9.2-cp311-cp311-win_amd64.whl (380.0 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.9.2-cp311-cp311-win32.whl (358.7 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.9.2-cp311-cp311-musllinux_1_1_x86_64.whl (758.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.9.2-cp311-cp311-musllinux_1_1_aarch64.whl (721.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (552.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (550.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (545.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (598.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.9.2-cp311-cp311-macosx_11_0_arm64.whl (505.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.9.2-cp311-cp311-macosx_10_12_x86_64.whl (514.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.9.2-cp310-cp310-win_arm64.whl (369.8 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.9.2-cp310-cp310-win_amd64.whl (379.7 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.9.2-cp310-cp310-win32.whl (358.5 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.9.2-cp310-cp310-musllinux_1_1_x86_64.whl (758.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.9.2-cp310-cp310-musllinux_1_1_aarch64.whl (721.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (551.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (581.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (550.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (545.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (598.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.9.2-cp310-cp310-macosx_11_0_arm64.whl (505.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.9.2-cp310-cp310-macosx_10_12_x86_64.whl (514.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tomledit-0.9.2.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.2.tar.gz
Algorithm Hash digest
SHA256 ecd78388193b389cb09889af36ce5867264c3d97e24da60d579d70cb5131d2f4
MD5 7421e98af89658cce9adb756214221ca
BLAKE2b-256 dbdbcbc8dd5372a429e71a73bbc24e7b01400269093d10a6dbbb3218fb239d01

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 365.7 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e092f73452f9d34d809f75a15f79523e0158f1e01e0e1a5cf06c3d390b1bffc2
MD5 1b2bc0ca1a65079457a67bc0905cd10f
BLAKE2b-256 837437eccf5ee0ce242cad0d80ddbf51f0c1f2ae7f8d2e48479837b117cd181a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 376.7 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6c5b9fdfcf12ec3ba032391e871e69b6977abcbfba8a87234c758f9c55ea4f82
MD5 14e42acd43d68fe0f9605eaadbf86651
BLAKE2b-256 cf22d8ac75ac2f4c282926837cbb00acb7652b5358fa5245f5322e86336757f5

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 351.8 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9df6ee543abdf06693cdd3661be56930b381f0c36ec0fc2054bdbe88a42959d0
MD5 67a4fd9d8d189081a8ca58649ec57504
BLAKE2b-256 e813373fd544be0ba6c5433b0e550f9fd74327ff1b7c0bb380070542544b4c0f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b793b4560b11d3be1ba3b2653656cfa08c501779db2dc03403dbe0f398889ffd
MD5 08739107ff5062b3e4a9c66016c16879
BLAKE2b-256 ae1ee233bd826a22eba9e5014c4d5c7bf658c27562b1fa446d8d77ed3e17d56f

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e803b85beb3e085709a8c8f462ed452c1080afb6aa657b397b382e1900bcba66
MD5 c8775791e4e8c4a5fdb805cf2e86c74a
BLAKE2b-256 feded206296c54c2bcd51314637bf893099d06f488d8dac4df01fb9022e2c50c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5588b185a5f2d075991822473b3501dda83250091549306080d72a380a4eceb
MD5 454246bbec4caf3e8412a21ba09f3dbf
BLAKE2b-256 60e084839a6143eda1cad8eed7d31e06c222b3ce2f24ff4d1a838683fbaf748d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69f417641af2a152d04b8db78f4c623b1a3e7990565178b8c353d518ecfeaf07
MD5 8d780aa4695eab1963a310fb741fed43
BLAKE2b-256 3d11c6dd1632fa789a6cad41c57cbd9e58b44b59e9c029601c4d842a3c4f1c86

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cddb0498aad4b12ca72328284b0e1c7babac9922c93ab00b1102ac3011321bc9
MD5 b9d09c419dbf8d0144f7ace3a29ab9b8
BLAKE2b-256 76683996238a3b38e00c6a068cac34bd5d7a349390b8ab01d18032f32bbfc365

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da1653e1449dc6d57cbd9ded7ebf2cf952a33606ca1deba2af2a008fe5841c5f
MD5 9516eedaf203d40360563d6d6743be37
BLAKE2b-256 ea6cf56dcbe22b04acdf756cb0542a039d63427b248cbe6ed4cf6b13820ef80e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80dde9e27f4a2a84430e6d24960ddeff0b42296e5b14ace7052fd9dd0cd064c4
MD5 975f15ecc544c064da7ac59a3cbf25dd
BLAKE2b-256 66fea1d824e4adda3413914385d0d249b3e5602a5f4e3dd3428071db7830cf9a

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f6e5ba70fbd04960405e292d5bdd9f10cf48bf76f3181256b97cde1326d39f8
MD5 7ffc72ef91f5bdc8005ab39197d505da
BLAKE2b-256 097d7cb3500df650f61eb5e88e28e2fb79e3ef1f538b7213381746d891fc7adc

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e67a556626daf5bbb1a7321ea4645fe487184df98b8acc6cff144d902616a23a
MD5 cc338ddb34c935c2c90ab4c0e907964e
BLAKE2b-256 a31cecaa5689369f87905dc076b58a42b80a622181d5027039d2b40911beaaf3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 509663ca0ad09792acf0930f1b761cbab7c086137a0e567e4a8210d8173fa89e
MD5 9808363dbb06d82bf3069ff9f79c8b12
BLAKE2b-256 d20f41f726d1d55ec4f175132a148d399bd762b7411f2d14b9785241fa1ceb26

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2c811cd0bd43788ebc805607f8328a9a5c861e8754f14b2efcfb718ed9652c71
MD5 2108e15a2f27bcd817f986bc64d49865
BLAKE2b-256 c22d84f84d7fcf110018f3bf317c70313e5a2e1adae1a07f323ccb074adf2b02

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 378.3 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b390b7bc76fd71874fda80148fec4b498aa03924f47415f60c9127a48755b812
MD5 f74397b2507e2c8381a4322e289c6638
BLAKE2b-256 7c5ac4a122b499823529a69cfe1d7bd37f7e970c25a9d21cafc69cacdb278278

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 353.2 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 04ae20f67aa0e1b9d56076b1285d291d4db29ddf7c82f3f93e982f0356774422
MD5 0a21699170ecb2fdff66280d134da296
BLAKE2b-256 f1f7d12b8705f490e66d3cb37c64a78aa91f26d29f078f44de965a213b3508f7

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 377dfa5ba5cfb0e54080ca3a2083f0ebb5fad90ea131be4e66aac85f56a3e9f0
MD5 4d136cb0523c0cbe2e1aac6bc7d3b036
BLAKE2b-256 c35c59f334dea889fd7f3fbfcfc788a2bd2f732aa9854259d998ab49740de775

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 40317944c9036761ef428c0a8ccd6f1b89d6742907cc9bc8699b9874bb0d8b1f
MD5 269ac4d1dff83b1270c76f672d5ffc2f
BLAKE2b-256 69e2ee02b4c50b0ea935cb3e068a391f9d8c1e73f19866d1ce5bb5d8e38cc4c3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1d0133822224a8d584ce607f5091d4cb9fdcf73136387b84b78a5b23f3a9b0d
MD5 84f78f148fa4d39d7adf9bed47f92dad
BLAKE2b-256 68111eb467748648d353d13b2e025f31df79236490b5cc5d438eaede5fc298a0

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43940cf6bd41654e4982840457b55fdab98c9f623ab29ade94b3f531bf3d0204
MD5 134329e58d511129f011e0589f317ecc
BLAKE2b-256 391e5336d5b613174556aac6b06f1df417a17e238f3741dcb5a6cc181373ba5e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d9764038346ac8d107f0ad5c7baeecf3d0356f50e0b069cad815efc5b9a94a9
MD5 2aa82b3639470a30abf3955fc80e20f6
BLAKE2b-256 584b3da5685d76559cf9847e62758f04fc7f6807eb60ffee1e0fa60db71f4f51

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d85e3d4102f6f6f0560b215e79ec026bbe59c442c276ac34425b463c39083b74
MD5 6abc0615e6ae08542a1d184aa08e8fea
BLAKE2b-256 af64cc14fd7338284fce7abaa858f329da7651f692e9c25cc0288fac9b9ea4f0

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9c3e431869a7bdeef0e1905fe8a8492d7084a58aef3f1c0ae388e09a7039c17
MD5 7ac337660e316915df685d8060344e35
BLAKE2b-256 ed340ec596cbea608d7765b7f988cc2e67412d4fdc635e6a9dee2d9a96c4bdb1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9430fb0836557c52426d008cb05b05a13ed950e3f1f42864c3c6a2edadbcc0a5
MD5 036618204946ddb8d5b60cd8bb20bcee
BLAKE2b-256 d08898c72e4af2ac3432898deb2bba0020834e39b4cc38f5d2cafa76a703ca6d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a5fd7420fb8eace667bb1968b0d55a6445acdbf6ba9a95b2154292d99f12771
MD5 af48b43035086059c515bfa6691879ca
BLAKE2b-256 246731b3593236d2d3b784a5190e43f54610c604a7cc9040aecc4e833275e35c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 611b0518de0c5ba822e3580d2b16865f387409b276f06bfc98ec40eff912a6e6
MD5 f61451c898743c926c5f5ca00fb02efb
BLAKE2b-256 0342eea835186c266fa117ab4d1a0aef4a2739279b9cc16b8a1901c02c9bd847

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 368.2 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4c069d8bcb9219b3fd3039def77f5c4c2d1c635bba78088b54658a3379b5327b
MD5 429b08346e0468c8acf0bfdf97df4486
BLAKE2b-256 3636fdb1e35125b45a798c3bd091aa8c32a37560192d3edadf186d8bc03f0311

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 378.5 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2a91feca5bcafd9ac8ee3eece9d43d6719ef1f57d60d2cb7e755456d0077c543
MD5 e8f2ba56f4e29ead12b257082f8284bd
BLAKE2b-256 5ce7e228b9fd8db65f183d366626500c1934c70d8b915ad6b675c4674ce14614

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 353.8 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 feca198a84b6c722adb0a87479b36f40c4eb7c5c67e898fd26ce3d63bf760ace
MD5 c2eb33b848aa9802cf95661c37b696cf
BLAKE2b-256 48f82e314c7d65d3fc0045f35bf5482b6a7ad4eb75e07eee5c2be5175436bd21

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 756248f01244f2971886808ffae7083fee4719b7be2cf04f79197f36a6271b40
MD5 4fc9e114df4ee62e308bb0162a7f25de
BLAKE2b-256 ec2963d1ef3f76e9fad35c12d385f5d36d97d90f3cf87da52bfc9131546cf974

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 06db95cb8745770fc47c22119d75a70375e6b57908f8d83bbf5a6f3798ead585
MD5 02c8d645cb953ccdf38c8435451a9efe
BLAKE2b-256 7566f365cbe79509bb61561266f029ead780d77e6e847475bff305689d539638

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c57a2bd212208a3e3593caae68eccd128ec688d024f008df3cb8d33f6dd84dc
MD5 7782328470e50ed347baa71a4b9a2dfc
BLAKE2b-256 4809ea5c899e54c50ecd5635bf40165ebc954855aea70b00e608ba47a2cbed31

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5708a845261ad6a5bb380c227095054be9369fa9af1517cd39798ada7b62550
MD5 76955a1ad05eda4f5f35fba89221e3d6
BLAKE2b-256 af683839ee18aeb57c78782c327cb2ec32053b06d629de0a035b4d75b44674e8

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c03229a0958760c82a250d12728b7a47d750d5e7e08c7def3587d0b11063e6b
MD5 29f0215498294bbe7425b7c2230dc217
BLAKE2b-256 59c4d00690ea28a9433897a98e5671bdee632491258bb9fa14dcd28cf695d1c8

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9581b87d5ec7499f1592717baab5178eff70f2e932e3acc2799fd70120a6515f
MD5 1c810bebf0c3e5e70ed2a1ac998a3d8a
BLAKE2b-256 4bbb0ec7e6c1e9760a45d4ae2f2750f2bc970bbd1f21eaadb466ca17c1023f05

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af770581009013b7a78ac88a53816dbfb5810f44395c13627b095c688c06a184
MD5 cb8458fc5c7f8d7d79bc06ac4ff720cc
BLAKE2b-256 f256b4d9b1b18d733a0e3162302d58c02be756541a8285daa814f940cdfa5ed6

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fac39074197d1e8a926b2b3b06b7f5b6cd61d10e87a6fdae407523459f32d8e9
MD5 e038796ee172c9b014f60f927c424bc3
BLAKE2b-256 55745a3606788accaeb89b4556d4f0ebb8fba27e4f8214244beb632834abc923

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d05459e0d2275cb0987355f9326e42113e2b3c8612690b8175920b7242047d4
MD5 a91c981e33f7ed8a7ea66e1d0f70c1f1
BLAKE2b-256 f6efae64d58879ea911a9d245758ce09a3aa3c24084a716adfdf6082514cc204

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efe896c3c6128ddc0246258ea2795e09e41a13df67cf05d8107dceee6fafd48f
MD5 0972d1f0fa4b189e3ac1a9d5162bca2c
BLAKE2b-256 dd0d703f00d52c51aadd58f1dd34a50ee8fec365f9a9fbd145b101f091ff5a85

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 370.2 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2140392e153d4b329098fd01f0fb3d96242dd558116a3b4117f29a2bd053d909
MD5 f2397def2c79bab44e0b222b5d6caaee
BLAKE2b-256 4a054f16d7bbebe4389976f65ecd654a28816bc053c2cb490199e3c9a48f9614

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 380.0 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2ec333a73acad5377ea07d0c7e5e5f448faf66b9e33aa97b098745652bed90cf
MD5 175f36fc31a76dd96f84d9a50f022973
BLAKE2b-256 c02e45adfeb1d5a56d7f463d5045a0c3e1eec47a97f96f02ba82f8993591a811

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 de8a289f76212b01b60f4aadfbb826b8c665bdaa50d68ec3393d4cc85618a964
MD5 ea7b9c0ae3a24d11ecce1677edefa6e2
BLAKE2b-256 3ee15e87c8d3c72a7d57618902f0670960a968d17c805472621347ffbd77330c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 86489617b4546ec836097ea07018b24f18bedb08cc9b71d791e31618bf3c8f20
MD5 5bf257dc6d87f1431072873478ce6a9c
BLAKE2b-256 f266b4ed3b17a03d508227eab4d84e9989bdce8f8783fb52f0a638c366e398c9

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6d7de467a92708d5e55b19ad817f9b4f789238c7bbe698f4156107df29ab5b39
MD5 22423565bae6170bc1ddb70f6e6e7f9b
BLAKE2b-256 58a5e641acae102460554cad382e140995e8969e9ab7f7ae42382c4d71bc31ec

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6912502f7b171a5b084a3586ffae58c6751de1806b7d210e1d6e44b8dd4790fd
MD5 67569213d20d58cecbac57b04f9b6cd4
BLAKE2b-256 95e168c0a0051df9d3ad0baf2a96e3b15e082fda26e6683cfe9b1b6beb876fd9

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a653ba374ac2328aaa55feefd02eddc9c4302c4083ecd5189f4f37aaf2f4e251
MD5 3d2a3456beed67a8ae0745531999358c
BLAKE2b-256 32cd59c99dbcd0af697d5eb7dcface1c2337d6fe78c2b44f3b28151037dd0a79

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a52e365504c503ce8afbb932786e43f42b9fed6a5866fd11a95a808138b2ee3
MD5 c7ac95624eef8969f8b028f6df121a78
BLAKE2b-256 cf7d875bd33b851adab39b57601e084f2b7121d70b33becc08f6a832b813129e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 554cc344dcb7f44884b7b2d6f5c6515e0a8e7ddd3539151b36b9dc865669d3b0
MD5 d76fda21e68d26278adc85d9f32a667b
BLAKE2b-256 b70e2597ce484275ca132ff5b923bada888cf4842209ff1b810ac971bf93174e

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac146666c1692c8d0eafc2ace9d314c81565c09f3dcb679f51bdac02e02730f6
MD5 7fbc9be0281e6460365d96fc086289a5
BLAKE2b-256 ebd08805ec19e28307d7506245584ca9d10bf8eca34f4b21ddadcbeaa3715b7d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b2b8c799e846099a81ac7fae2b6cab583ac4081458608c210ced94d7c5663dc
MD5 549c6e3172ac8694b69641168cf1e20e
BLAKE2b-256 c554316e8ab563f047a1e860a1791f76270267da354fd7104e182f16309e6387

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2076f2501220214f01cf2b8f9a5dd93d1f58b808776ba4836b67a3d24aaef2b6
MD5 25387574a02e17d209a8033b3282cbca
BLAKE2b-256 b153548077bc9a8665164b1ace8fba5dfd23b1a61118165de554b79b39f4dd05

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fd677fbafefa50a2e40874cb87da81dd2785ef38c0c06c7a5f4921679741b87
MD5 4771225bbfc093645ee8af3ee04095a4
BLAKE2b-256 0909ac112b038da440ce2a932df2532018a272f582fa2992ee0c77799cc16fb3

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 369.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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c0844496afcbc464ed13b0d7824d675b949769913b7c8f197daaf89ae2d81f97
MD5 ed21e229b15bc6fc90c451dea58ca4b2
BLAKE2b-256 bcacaeb51e3dfff549678678d0a13f815ce0771d9c60ac0d28381636e7ce0890

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 379.7 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0bb149ffaedc8c4ac78f26f30f484e35590cad8019987cab87315b056ea23a61
MD5 1560948dcd1ce153f605312dfe692f29
BLAKE2b-256 b75ed56e415c656b90d95522e40bf89c316ea2ffce67fa9fce3817b2b805fe67

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

  • Download URL: tomledit-0.9.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 358.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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bba552f0b0a521db02ec3a86b0ba0c6600edcd212fde2db80f31151a4015de7b
MD5 dc443ff99a336c91a02f0207a6e667e8
BLAKE2b-256 d9d128bb567f2d07d26ea39974a42e1860d9bea29aee66ea4aa726c55ae058b7

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 be7ed17f66db8efc4687d78d6df2f2731da7116fb24352c731357bf7dc00ec27
MD5 5e8c18a6a03a6e36a2093cd0b7b9992e
BLAKE2b-256 20b64af777779cdd5c26aed47b3e17ae2823a837538d273b4e2656d3d083dc4b

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a8d176a88535e6d646bce947d814b24c4db5d09fcc47f971b60057c97af240e3
MD5 cf7bc5edebb663f09141e619e0498cdf
BLAKE2b-256 23d28117d9e36a8bcc0c95338ac4929ebbe0bc478185918ae35b99fa87db176d

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1da8f262a74a80bcb9a45f6cf9570ff9fca883076302d1654a0a1745796c0c83
MD5 ce7be555bc0c032d3305030f11df5c09
BLAKE2b-256 3dafe8534c5ff42cd16cee52d70dded30633cc9e156e0cb6aad11d2a750a6ef1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f17b5fed1d8da9ee537bd2066a8bd055f100b392e887195b5b569e7747622394
MD5 58cc33351f70d2a11862a061db52bad0
BLAKE2b-256 86371071e3e1deec16a6fb5fea22a53a3cb45c4ee6d70cc6585bb631755081c1

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0d49b28cd5939a057ed6756a5c3b1e456b3c3dd2da68e8c32d4984bf3b78336
MD5 2fcae1d1ef54f274eea6b6810f98e032
BLAKE2b-256 7ac773de955ec34477bd127025efd1a8433c2b654d9213d534dd184684542618

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfe771a37a90b546d840f4667f6874fe6894de159d647fa5f6fd01f165caf1c3
MD5 b3a7a8d9acda228130ed525d5e6755aa
BLAKE2b-256 b0aff1618d2e34ae39462853a811056fa8b2082de82c06ca6e6695c2bca0274c

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 545e7915be1f7d9eb64c5bec49f71e50fd96a06c4a6e449ed29d5926026a3310
MD5 f480c722cb8f52b2066bfb5e111cbb32
BLAKE2b-256 5444892851219d5e0be29a4824cd95cdefcbe5772ff41832269e31640bb2c0ee

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c2f02509874c211f18b140127560ea937f3d1a72357054b7b6de4cad61555af
MD5 7b6b0b89b344f90d2212a457b39f1dc9
BLAKE2b-256 8e08618c7f7970a4d8f6f0335ab955ba0d7fe06eaa8382cf2a04d8cb087c14bd

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee1d732b1d36b3be360a145a56d586797f05717aa10bbd4543a83d47f0c5b6f7
MD5 3580d6395b22fb1ef1ec87e6345ce080
BLAKE2b-256 b5176265ea082cc7daf8c1af604950cb92d3cd6f729988eb64a3ca0bd1430797

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

File details

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

File metadata

File hashes

Hashes for tomledit-0.9.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9937e58d6780145763388c9a33515a24a961fe001ec7d1ba5acb0f2631592d51
MD5 388bdd8d9bb2f3053dfd4529a9f44e57
BLAKE2b-256 8b70a612ee31bda94ec3ed6ea0b2f618a329dad53aa69764e45e875641b96d77

See more details on using hashes here.

Provenance

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

Publisher: publish.yml on dimbleby/tomledit

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

Supported by

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