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(doc.as_toml(), 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. Because items are paths, a mutation to the Document can invalidate or change the value being pointed at. In such cases the Item is made stale:

doc = Document.parse('arr = ["a", "b"]')
first = doc["arr"][0]         # `first` mostly behaves as "a"
doc["arr"][0] = "changed"     # prefer `first` still to be "a", but...
print(first)                  # RuntimeError: this Item is stale

Changes in unrelated parts of the document are no problem:

first = doc["arr"][0]
doc["foo"] = "bar"
print(first)                  # this is fine

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

first = doc["arr"][0].value   # "a" - a regular string, 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-1.0.0.tar.gz (125.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-1.0.0-cp314-cp314t-win_arm64.whl (487.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

tomledit-1.0.0-cp314-cp314t-win_amd64.whl (500.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

tomledit-1.0.0-cp314-cp314t-win32.whl (459.4 kB view details)

Uploaded CPython 3.14tWindows x86

tomledit-1.0.0-cp314-cp314t-musllinux_1_1_x86_64.whl (891.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

tomledit-1.0.0-cp314-cp314t-musllinux_1_1_aarch64.whl (852.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

tomledit-1.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (683.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

tomledit-1.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (708.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

tomledit-1.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (821.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

tomledit-1.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (675.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

tomledit-1.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (677.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tomledit-1.0.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (743.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

tomledit-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (637.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tomledit-1.0.0-cp314-cp314t-macosx_10_12_x86_64.whl (650.5 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

tomledit-1.0.0-cp314-cp314-win_arm64.whl (488.0 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-1.0.0-cp314-cp314-win_amd64.whl (500.9 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-1.0.0-cp314-cp314-win32.whl (466.0 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-1.0.0-cp314-cp314-musllinux_1_1_x86_64.whl (891.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-1.0.0-cp314-cp314-musllinux_1_1_aarch64.whl (852.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (683.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-1.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (710.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-1.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (821.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-1.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (678.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (677.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-1.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (747.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (634.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl (651.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-1.0.0-cp313-cp313t-win_arm64.whl (492.4 kB view details)

Uploaded CPython 3.13tWindows ARM64

tomledit-1.0.0-cp313-cp313t-win_amd64.whl (507.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

tomledit-1.0.0-cp313-cp313t-win32.whl (468.1 kB view details)

Uploaded CPython 3.13tWindows x86

tomledit-1.0.0-cp313-cp313t-musllinux_1_1_x86_64.whl (900.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ x86-64

tomledit-1.0.0-cp313-cp313t-musllinux_1_1_aarch64.whl (859.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.1+ ARM64

tomledit-1.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (691.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

tomledit-1.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (713.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

tomledit-1.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (827.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

tomledit-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (689.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

tomledit-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (682.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

tomledit-1.0.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (748.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

tomledit-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl (642.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

tomledit-1.0.0-cp313-cp313t-macosx_10_12_x86_64.whl (657.3 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

tomledit-1.0.0-cp313-cp313-win_arm64.whl (494.6 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-1.0.0-cp313-cp313-win_amd64.whl (508.8 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-1.0.0-cp313-cp313-win32.whl (471.2 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-1.0.0-cp313-cp313-musllinux_1_1_x86_64.whl (899.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-1.0.0-cp313-cp313-musllinux_1_1_aarch64.whl (860.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (691.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (715.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (825.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (690.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (684.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (754.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (643.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl (661.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-1.0.0-cp312-cp312-win_arm64.whl (495.0 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-1.0.0-cp312-cp312-win_amd64.whl (509.2 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-1.0.0-cp312-cp312-win32.whl (471.4 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl (899.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-1.0.0-cp312-cp312-musllinux_1_1_aarch64.whl (860.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (691.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (716.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (826.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (690.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (684.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (754.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (643.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl (661.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-1.0.0-cp311-cp311-win_arm64.whl (499.2 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-1.0.0-cp311-cp311-win_amd64.whl (512.6 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-1.0.0-cp311-cp311-win32.whl (478.4 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl (902.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-1.0.0-cp311-cp311-musllinux_1_1_aarch64.whl (864.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (694.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (716.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (833.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (694.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (687.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (758.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (646.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl (663.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-1.0.0-cp310-cp310-win_arm64.whl (499.2 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-1.0.0-cp310-cp310-win_amd64.whl (512.4 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-1.0.0-cp310-cp310-win32.whl (477.0 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (903.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl (864.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (695.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (716.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (833.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (694.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (687.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (758.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (646.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-1.0.0-cp310-cp310-macosx_10_12_x86_64.whl (663.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-1.0.0.tar.gz
Algorithm Hash digest
SHA256 755d6356caf66cb5c61ee972dcaf4bb2ab049a30413ce0d08a772f3904c4cfb0
MD5 2d0808adc3046984d6b1cd4ce011b749
BLAKE2b-256 1240fd1bbde931c1f6304f1df1cdff01cff76272570d295762beab9ba56dcc31

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 487.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 4816ae16b7e9888631a706c53cf8522292eed5a2391a2250b4ecd563017cab7e
MD5 b4f5aa320c0eee93d156eda5776426d3
BLAKE2b-256 02ced310b059ba510b8f50c70b4976bcde3be2554f570ef90f0e10b506219127

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 500.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4ebefc9744e61ee7a6c67a22ee862058e207e4d74b0e85187698433cd0e7c0d8
MD5 189b55720d1fb330cc9c775ed1920eb3
BLAKE2b-256 21f3fd9ca1901e2d65f695d33fc8c7dbc6f01272afcfea1f0932fd94197c85a4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cd42cfa358e385a4a2093103500537ec99b40ebf5aaca92bb2eddfdc0a9994f7
MD5 dfbacfdaa08e99f3c2bbff680dd3a23b
BLAKE2b-256 c9d7ee0fe4d135bca210ea71b4906b3a6f651279ac11c275756c6c921b512214

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1d01f4232c1a3748677c3c7040a3aec436cc66c05dd40f9f0aa421521eaa7ff
MD5 0e5b3d503cfad909a26868510f61e293
BLAKE2b-256 94da72165af8e28543654d3d247428da7c26f9d42f048f7391bbafcac15c8630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4c1a5f7f1c007cea79e07e63513968361372e189a4034d5a1d6c4f0605f4fd7a
MD5 41c2dfd6568023b8e2cf7fad0a537cc2
BLAKE2b-256 522c79d23bd8cc1bab0a60b3b188be9f08a2891efb6fd01bc0d17a9edc6793de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb662f1171d5d17657fb7290394531ab95b86b6577e161478759628493c46b67
MD5 88acba30ffa36bfa08de47a71f6acf11
BLAKE2b-256 23639a4ece1a8c0adcc361ce6c4ceaa75ad033071c2b0c9fc5569cae92a502ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0f19e7a605e177c6222a2ea5e036d1e4a02c7fdd967f0537191915d72304ea2
MD5 0c4e0583e9b05dbf610d5b7753a8374f
BLAKE2b-256 032f89131fd0fa731b4544c4f820e64eaf0059b8876820da2a73d5acd6f39f89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f5365d0ea792c0ffaea0260d341506a340a78d9b4a18ececd4050063b9e4e98
MD5 35f3a22a9eb4d679f3feb31c7f1aee92
BLAKE2b-256 850ddca775d0bffd83bb171e002c45f00289ddd4e27033f00d1d07cec9036a04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 999d8a311d695799c1bb99bebe86cbba41d59a2a210420c20ec1f2ac65b58b5b
MD5 5c38eef36bed8484a2d414f895b791c4
BLAKE2b-256 5dd442a899e7c92ec0d49569b998c2c3fdb882ff4577e60629843962498e1bd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a042ba7be12c1b52ef9be2d99c3412dd41dc4320bd492609915fc7bd6a4f567a
MD5 53626a7cc7eb6dc0ba08190955e71b34
BLAKE2b-256 d0e522c859a08954a86ca0c6c40844d6d6d68a8ebfb0abf127e1bc6c8f8dcda7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 32efaf0add99c489cc9a9f3cc2ed67eab30d3cdb422b7e57dfe32366befce56a
MD5 578bcc4815261cd229486d0590fb7403
BLAKE2b-256 f11aff0b50be6b173cefd0c21c51aa3fc816abcacad12c6038d74280e13f8aef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a1da2e9c548602047d997dd5c0f541aa7b7065991c22d0634b5871d13792ea1
MD5 64a47f0a4153c50a5310f9a6d604c068
BLAKE2b-256 eea899cf47aaeab7b8718016396009d832bb1800a2f800a9a7f92a7a6371ec15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 368c7683b99a56851250176fc742f4367f858ce2ac0fb4ad70923779f8294d24
MD5 4c7f043cd1768d06c4e4e6ff30cc3d7e
BLAKE2b-256 84d0e2a51481a97c71dccfb6120279383a2aff45d31e422fac31d9dad29cfc69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 488.0 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-1.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c385f363b55cacc81a13b9c66034109ffd3cf0f0de5540c0a521b36b6d4323df
MD5 4615f8cc17e3263a24cc0b4dad4e1765
BLAKE2b-256 bd4881d9eb3620396091c7b2282ee02244821178e40ea61def5aaff469637a4b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 500.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-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 34d15fe687918268cb59f63dc52f90d2ce2e6f2c3316392731ad17cfb59ca317
MD5 9bba4ca580cc787d3455c63d1f775134
BLAKE2b-256 b51953c4f0b9697a31a9c055820f5caf9ee5aea5008df32541838d2a47642980

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 466.0 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-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0ec12b590173bab64cb7d14c662dd000be1db63f964a0a5cf379bad0e462b411
MD5 a1aa0f97ccbba6059f795e3d6343c594
BLAKE2b-256 ce7551b8a253fd32d94a80927eb3750015db12c1cec44a2e5a6433bed20da241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 25b14e06d2d2a11b570af040a676558c052af8ed04befaf6a5b322e5ccb2df8e
MD5 9a093a3dfaedee1b75e1c651d03a75ea
BLAKE2b-256 1913813a388261f64120052d3680c78009dc9753cbc97974fbde3a33adcf4a3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63a2ceba54e5e718f953b66d249d6f0eb11b2dedcf45b38cc02070e64fedd939
MD5 2b6becfe4c9e9d8976bed138eec74653
BLAKE2b-256 c88a77a9184e09acac9bb267ecb798c1e452094f6ff6b3e8a6986405e9ed4b3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25558b63c9c0dc44b3442aea3d9b5c9582d3427011220de7c7c5900ce9bdaf3d
MD5 504ea827fc4610dedd1f4eb45b192566
BLAKE2b-256 6fa538cb9f727a112f0366753abd188a58b2c4d015e6bf9c5c94326b5ef1797b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a9e315d9713cd3d847cfcc6ff48e5036d2ecd4b8850a07c980c1b2f6f6b2717
MD5 c4dff96ff8cb251127f7dd3044829597
BLAKE2b-256 0ecb3fae809b096d30f25c0ab56263f03ace7caad7f0212179f98d8ce65d7bfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03ca460fbce8b4728973bbe32c4027ec79911557b26a381fd63d93599265322e
MD5 e95650aa00da86b6b082c29e1460c874
BLAKE2b-256 1c50da8ffa3379a1639d88d836dab5dc6b6dc3a065590d7a053c8ed54106bd34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bce3b9d1ef67dc523d5594370f5f8e8d85f4fa32af3f0fd735f0bfdf50a4475a
MD5 f00bad83fec5a2cf19a6292398fc08f1
BLAKE2b-256 177f263aae8bed9f64be5306b2e7d7786bb129e8fbbab0f41f255e429bc0d69f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e21af2ae8ea01791b39acb72a246eb440d7316a07d8c36075838d0ea0e02c9eb
MD5 b27107d5e37288463f38f56b8c5cc91f
BLAKE2b-256 6b5f128ee158626b37b60822da02f97d27d42cd7a28f3977f4c82d50e71ae0b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c8f6a3ffcd1ff421a6f9be5358e554940ca6d0e2b00ab2d258927fe56578556
MD5 55be55ac2b432c711a6d118ae9d686c2
BLAKE2b-256 0ca098fce222bec5503f79783835de3e3618126b751214165b77e52fd302ad4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03b48318c54e7e7c9f6ca7c8d50251beeede47a6a19994162b1bfd226f2fad68
MD5 3e715bcc26235dd0c45e3875abaf8379
BLAKE2b-256 f56b11e3befcdf988fbf29d4d61459f3423370366ad12569542a9b2108e6c342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb8ae06389de2b44227eec16749ab1e8627987cf74990201ae7b86cf24198ab5
MD5 57e1d64e542873e33ec4cd7959c84cf9
BLAKE2b-256 6c0d76b05b7676f96b4fd79d786c3d77a76721ea9dfbbb67bb1e48bfaa434929

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 f7b872b77bbbb09f73d33d307fd8c9d66e57701d4d51cc04e414dd789d934f43
MD5 ea9b9bfee627574e3b1034fdaa6be326
BLAKE2b-256 07b0177ad2ed95149fb1f8c6c08ce12cf7e7176f7f97d180ea572a9b782340ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 507.9 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 d9bdc1d613575f2939044abb50b462447346d764735e68e1e79ceda60ecafe01
MD5 33969379e4cb4a0553bc99ad9f7a3e8f
BLAKE2b-256 c75b985cb22593b16aad03f0c6fa4cac3305e8327cfd4d00fe80d50cedfcd57b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 468.1 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 fcf0921ecfff6f3ff2b3ce1fdb71fedff22b490b2b925962a7f054d614c54ee6
MD5 05bc0b8a9ebf755b5cce57fe31bcd8a9
BLAKE2b-256 f9b8b405e3782883f52d86899ec37c15533aece5b310fb67d458e4653b03d66d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3fd4f42ed336b03b2ce0b0910cc025b37f083a47b515b9514dfc7c376a91bce2
MD5 2c3f0375eac54c91cb6445ff059aeb97
BLAKE2b-256 9503bf3b69ab0a5af0f47455cd3ed882befebbc5eb2fbc6742c64a4a5497230b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5bdac10196d237e93062120a215040dfc8073072629181f73522a4c36a2d47bd
MD5 616b217823b4b411841a92804ff7167e
BLAKE2b-256 34626d0b6339b2ac15742173f6ba85268fa6efadb367e41ae96519d119b01acd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1b6a9edcb50c5343581a4870c59d6dc80b6cb0344de28127c121e5035f19281
MD5 95b8619b2bf43e2e66177e87fc45a630
BLAKE2b-256 e4d0b3f6ea31f4453871479d21411ad7050b3e8481ca39a3f6cee8f725f05cff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ee951810c98228682bf1a8fba1b659031219bbbf8512711eaa3467b70f04da3
MD5 2f7df2afb148f7b9a24e99292a2fdc67
BLAKE2b-256 4e834d403ba429b0e8a1696a6df7840da42eea830b3192b977552d76f1a88b4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 856f3dcbc6fba053ac2fa453d94f2c0c63954887abc8d8fa8c4c76ca25c9f492
MD5 cfe8a0ba3deee0dc88c220f43fac5915
BLAKE2b-256 3876564c2e299b37494d666b48b63e2108abd7656f0aae1efdc74f1a0295c946

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04f4b526d4e4829ad6011b50a53d1282354bd94d585a8c9e979f00a4bbd72bd0
MD5 fc714ce6f7cfc3773758bf8b9668c885
BLAKE2b-256 816b196099803ea0661f3e5cac47660781e932b7d627e3a0cb3d11fec10c06db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 660422552bb83c092fe3fd188dfff801abea16f40e4bc243a55f82dc1ec1b179
MD5 213fe67ccc801264fe25ce6c401b23ae
BLAKE2b-256 6976622e8ccaf58f3f2f5de5e588b62e9fa05222a1fe16ba9d34318cd04a5fed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c64fcfd67290533cb2d9067e2b3a684ffa094a6b1b4991b98d64e77d40376675
MD5 ce7b700983c3bfe7f8b2b9f115af9bf3
BLAKE2b-256 785e294ea05d2b590f7b0ad5110c691d66a6458defb25ddfdf31b1ddeb977142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c429d985b85c4caf73d6f8a3b11f289956afdd0f7c7e2e3cd15fad92d7df0cee
MD5 6b1aeada320c623bef860718a80ca1a2
BLAKE2b-256 cd68fc105344684b1dcef138b908de14febdc286ab246df7127865c5b58a8ef0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c8dfc1f8737b46df7c46a726a89552809afd38a193641351cabefda190f3cc4
MD5 3c6d21590948f6d827963cbae48503c7
BLAKE2b-256 450b8e87a1de3817b059d69e8a69d4eeba88ad9b20cab6c8b11c0064e0ce71bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 494.6 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-1.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5a4c1670fa74be876857c5c264ef03cad2650916d46dbfa6e62914998d4cca70
MD5 b9cb6ff4d998b9a83ad6e9f75c98ccea
BLAKE2b-256 41c1b17aa4fb4840cc1e6f58ce9cd5b621eccc2fa4770c5a327e08dc61894a66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 508.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 563b01a72ac6841c72fe2242547bdd614046fd8cbbca0dbda77c5a60c659e646
MD5 5ec0fec78bf5c34ed1392ab3e0393a8b
BLAKE2b-256 a2a6c6040baf8484c4b54a3c8d0d9625e98ee53dd4330fafae3fd3f6d9c699e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 471.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-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cfb881e298a02a136bfa3f5adf32f1a6c0969c92503fdfeb8318d13f818e6ebf
MD5 219bcf91cd9b10864130eebf3e7ca4b7
BLAKE2b-256 5a14844806a55b30f913741ea36fdd24693106df062fea56853b1bb0c30a19c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f01bec9388ed22f5cca756919e04948b6d14d436da699d61978b903b379f6cde
MD5 eb476c46d60e42320228d9ad95ddf5c0
BLAKE2b-256 487db22ccca58ced5ff97c39bae3885417f5064b564073dec8e94e142d5f8e3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 110fb4a7a8e2b217d7c30c9f7fd454da6e94ac8c115f89fbd330db2ffbaaf4ee
MD5 6d2b90b0e54674b5b0677a7b4b6ca482
BLAKE2b-256 eaabab219ca27d126159461a6d16efb22ea00147d7faa1918fa5dca3d25e4166

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16969453dd762d463ee1040d9560aa850172c05afa0d981e7bf64d7ff47b0897
MD5 04bc5d066a2bedb2bcb432bf05bb8d15
BLAKE2b-256 d6c9c0fdb88c46378aa3f1181e72a6e04ff7ade35c4dc6d0f061330e808b2623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d3fe18c6cc6606f60f4969f0943bcc9639b286e771abc1aa0bb7a5e9eba4d1bd
MD5 08db474700edf73178ad970c557e6a49
BLAKE2b-256 36741ae275db841add5c49ae5a375232157879e4c40d8b69c2754e9f07c0eaa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 785272979b190262e6953da2541ad9f954ed8d1f8319d125ac0b5bb5a96c1e58
MD5 35b82891d2870be9b3550fa2224cfede
BLAKE2b-256 a2df90a0d09a941912b44d0b70054e9f31b18290b7ec1c19d6f1ce562b71af0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e2214aa140f2eee066e4280da107809702c971476ab9ee1736913ac97e2e6b3
MD5 da8a82194e2c82ab0dfdbf82d59aa8ba
BLAKE2b-256 f7468406f78cb25c74739ddc6be8097adc24997b96268164e33b58b227fd3fa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7925ee5eae505ac340edefa0622095326ede9a1016edcb224322ae114c76abb1
MD5 7ac55987b62d204ccca9be22b481af7f
BLAKE2b-256 4557310dde3e521dd51858914eeb946f25de28b5d406300932888c96e1c1b338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e98d8faf8b1452e8100841698b511956157d248eeade5f5d506c1707a40afe5e
MD5 1324538c0312043c00d78d3256b9f07c
BLAKE2b-256 6606410056f68a82c13032ed994290f6dcb72b0bb1dc1ed8e8f269ac5a1ccb66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebf394873d79d68acd78ac28e86add89df9f7e5fbcc409f9d75cf7d91679926c
MD5 a3f3b383de9d26515f9a8a43de3733b1
BLAKE2b-256 5e7fafb88babd35158996e9b13dff1c20853372bbe8d256411c24315b47ba98e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd30009178cc8f4a175111012adfd6b83cc2a46713a5fdd7d7f10277b86c8be0
MD5 dc03d89ccc14cdc86e37e5bf12222249
BLAKE2b-256 7bfe919adc652e8f46692498556e3a6820b49e062603f04dbd5de06ac897b559

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 495.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-1.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 fa99edd3819aa11b5dc62546a22a1cd161efa046efb12233bba5cedcf9a424a2
MD5 96207f6899ac25e0bdff4803444efc89
BLAKE2b-256 5bebae65a87c6c5e2fecf449d2b643d86c59feab3c0dde63e4776aa9bac2128a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 509.2 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-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5befdb60ebe9bc9d5244f89b8d7dab9282798205de4cf320ac0ee168b3849fb8
MD5 880dafa846930bb7b746e108ff192914
BLAKE2b-256 7da61271bbab00d25f5b54bf3a1102e9ee50906f9822690941468d142059178a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 471.4 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-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5bdd7808339a894d9558caf0267bab7361673377cf8e129419da747d7dfaecac
MD5 caad521710fc2a6144f3027747670768
BLAKE2b-256 d751baa8d2deff75fd11b5940ccacf39060592fb0ff8379121c0607e43892174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a237aed688c16bbe28f519f336b4c1b64cf377f09091d5e7d72cab33c6053fcf
MD5 745359f00b767738b1275e46272ecd2b
BLAKE2b-256 c419a85ab505b5e1ee32a4d767aa762af96b6435f94cb0c6d5602663b0e1159b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b0e584625e10b7f21e06aab6ee1cba0badcd685ae80996a59428bd732fe75242
MD5 2193848bcc331684c3a55d5bea7b8bd7
BLAKE2b-256 6c74a7f4219c76324d9124e0afd7dd0a1e62d0ddacfee013926c3568b963bbe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30048c7b410a451fc4b3184843cd5eeb6ec8b3ce573dba217db19d137aea8cd7
MD5 a66ea53f0aacc45e67d665712bbcbb88
BLAKE2b-256 21dca6c41f7aa22efc6704adf38ab82025626522d2ce3b2e50bdad131201832e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e32423445f64e5fea4c387cba2d3c4341744a06da5a49714824508448f39754
MD5 2de8223f83ffd50d8200f5abdcaa2d78
BLAKE2b-256 aa5b3aa5ccd018c198afcdd3b67b4608dc45d0607cef629845b75580f5846cad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9565d0a09fc5e4f280dfafab161aad01d9318fc33cbae54856a3bb87bb502918
MD5 b4470e92ad5fbca16386b68818f2e8d2
BLAKE2b-256 35df769e04706af7679a425279c39c920865298130092481afdbf03a8fb3af9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1933fac984a3fb58af4609decd0fee7e4ef220d39c0cbb63d67749925944de26
MD5 0efc3088fd9e800bd4f30d14e7307c8e
BLAKE2b-256 10ca9cadcd4244aa75c8d7f72ebe0800573a90f418a66566a0d5747276f17f72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66ae20a4669cf949bb9a47c528fcec219ab3810e5377d20d39144a0850f59084
MD5 628afd2ed7d89fb49eb708c8bf0c6d82
BLAKE2b-256 eb66d3951456418238b9b1acecee80b9964f9960d050ce0656e9df33810b0aea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2abd1122ca84f29bae9b6f7764fbd243c9dc487850baac6531a493d0fe5b0946
MD5 c04712c802457057a2cc173e9525794f
BLAKE2b-256 3e190896c05bb0ad160a0ab982d0619dd797b5832b47324af317b7b8173427fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b362da3f7937025a3db3c3a119930035aca743bdf3e8476b9b52c24602e9168
MD5 a2d206d08d2a9014c2c7ac7a266bded2
BLAKE2b-256 df22437f872bd28f2308c6625ecf5d523417695739bd3099f9182392ef49df90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f83449808e4f1172e7e3532440981d3ac5d2088dc42f62cea9f87f498b97116
MD5 9409868a80f5e9ebd183e194e6c26a5d
BLAKE2b-256 620a43ff08d9c998ca72e59bc7781af1b82542500a8606571676c49ba975605e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 499.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-1.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4d5f087e0d3ac5e2c8f937cf79eb41669d61312ea3c15d046f74e7a072d74a90
MD5 1d54e66a293a906795f035ae0e097615
BLAKE2b-256 0c284e277757ac444b997ae5abde70f1cce82aa66ebe68f6367f0c802ed855d8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8afda44d5f1471bfe271b8e2bc6f1d07dcf806f2bc5da2283eaa4c8551850da8
MD5 09f72aff64168ed388a91b90fdfcde81
BLAKE2b-256 07042dadd467a1550a3c74ca2b1b9c9ed497c36006b8e0dae21c2d4cd54cb8fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 478.4 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-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7e2e0e56a379f01f83593901f4271eb77e94818180be4e5591b3a488815539b0
MD5 e65322b41734961fa3d41366c3bce288
BLAKE2b-256 b6a42f9cdce0f2def3858440f9a3ab87ec1434245fec356067ef8389dff64b41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9c9050a02bd0f7b328e81cf73ec8098a0e7d01024699881af8a6dc0ce66ff875
MD5 517495e9284609418b7aa204d2be8c4d
BLAKE2b-256 66f015c8295e2a45ec3eb21095782e96bf2343cd368e217bcccea3ef38f239d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8b984d86a54da2646355c0e9d1548a4f5619cfdd6acfb08bf97b03d373c3dc4
MD5 bd999b41eb83c86a2b2505a8b6dee94f
BLAKE2b-256 9b71420b5c462b88e501c78e7792f78dd4eb450effffd9df65100045e1e2fcea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 591aed1284fd1d95fee83737a07c12f386f25799b8ff7c42be5dd11fc27166e0
MD5 fe050d25cc857762c9fca180de925f9d
BLAKE2b-256 4926589c22c0d3002d8ba4825e2384f5814aa756bd88ba17951a59c516fb24ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5c9e4e7839b6db6952b55f458565c42d067cb13636f0dbed26b841964bd755e
MD5 01ec6954ae1dd9c275ddde3bd0f040b5
BLAKE2b-256 45ae5b7cc526bc60209a96656ca1e8a199722f0e2b0008d53dba3ee08c6c5047

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0a1adfc4154c3506ba4bdc8921111aa27896b15eeb865899a612d2d622cb656
MD5 273800773409c93a326904f2bb60d8f0
BLAKE2b-256 f39597947e2957c36684588a2ff485c8bea7759d419f5b213b41ea3f1549e0ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 667a48b62db1ba4ff0e79fe16120b3278f604d193890109fff1705ffe6576fb2
MD5 1a0999f182ddefbe45c9c3394a6a8a48
BLAKE2b-256 009a673234a1ed32c6d9699e5e88efd176a33c7ed72a0385ce7301342d73eb5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d8e57aa3228b53550768c6033fd29998e983a87b58d0c9f06dc7b440a14df51
MD5 12d6303ebe1f3625439399cc11628e87
BLAKE2b-256 34049b35e088a299a0d2d4dd6a8674cc0d3bc58b1f7ccb3eb8c56a63ebe539f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc75d41641fedc2e94af5ed0513c4acca7a72db3df20eea3b14f3976183d1287
MD5 f18fc7af1d4cc6195e66f7019e77d0c1
BLAKE2b-256 5cfe0be2fa4766af1745bd71c40efe59d9d1ca4779ee9e1459d98ac37f03a298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b5b26415c339f878a5cd575b1fbe982f692241cc3fefb4366e7c096497c585c
MD5 f1e6319238c996d0a9b0bc387e062bc1
BLAKE2b-256 8ace9105412d553dd7f5d90af37cb0c5aa3308a0a2d51861fe300bb487c4d202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d059c6f93edac3aff73ca10df39938f66e6804f0b83a56d06e6e35892420cc6
MD5 c8bdfe0cb1026f49ab9321fd11db4cd3
BLAKE2b-256 0077808114cde700e7684117368c858c3912c2918e4c0c2b7d8d4e92f8c4df37

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 499.2 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-1.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 188ce7939843c33d4d9bdea4d8f3af842be0319871de518e4de67e8b5c7702f3
MD5 ec80282b22a168fa53aa87d1ca2a1878
BLAKE2b-256 0cbd2134717aba5d6b4e523d981f49ee2572839789e18efd09952710efa1330d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 512.4 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-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31480f31c2d0ea28366d8b9eba1b904d083325a6db0780e18b508da2142069ee
MD5 66fd8a5f7707b6f34cf1fd592b8f3855
BLAKE2b-256 84890da29f3781ff912818897ed4fb2b30fd4f0f32049782536ae2d77af9e255

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a96227440f60e6ae47f41adcfaa206a606b5903344855447e672829beabbf848
MD5 52c833a02b4b9a8a340328f41fd62b37
BLAKE2b-256 be47a7402e227bd37b05d65153a0c1b24fdd56249ed9ac6947efd71033f9956b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8223b07178a17d977cacee2566b4fbe5155a9598f42b1eb8b5233ba936aa9318
MD5 61ed36361952d0dcd2733c57c9879cee
BLAKE2b-256 823143066dbf99899d39a62ee37850d51734903fcbbe6526c09d7cd37daec30b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f6b5a18bb7deecd39ca3a036776fe72f7a6fe3b7b3c3a1b70e815a109e4bd403
MD5 03f78ab21d320c41efbe77b6f8ece619
BLAKE2b-256 447613fc75bf7dc673ce7aac25ad810b852d8192f7baa31a02af594d1f9df2f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 692cf6b07084a8b2c7ec305a6d717735b487a66be3581ebc3c6a5c9846e2f373
MD5 68b07eab90bce07b7d91bcf6f24dae32
BLAKE2b-256 3c386346913a80fca1c24fe866eba606c93512450520fb8dbbc3fc319e7be274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07cf34f104c1fb33718dd2223d2a81eb1289a9ab5fbb7fadb72d4fd642cdd711
MD5 34cb9f8120d2ff6d04a9a51c6698bc33
BLAKE2b-256 fbe61a10e58093564433e3b969da779e573fef527d0577b765aa208a3ead9ec6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9d34a40586ea4abf3b6c00c8cac9f585d3afe1acafe9c64461cdc6d56aaa698
MD5 dbf5753b55d9775e98c820fcc4213cb7
BLAKE2b-256 8f184d5b395cf0e4e82d0dda9117b2132dd5b65e2c54144efe8a8ceaeb31700e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3cee789075954fa0482cac31ba97cb6dc3c093722d812193492290f034e2e703
MD5 66521238d9df8f7a2a71bd7d5ce84522
BLAKE2b-256 b4de6b51c5d119f08c1e6c8f31989f313de1397fff1abb502145f3f2c870a3c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e90302a17de0e646e462ea709ebabd660f6f146ca81ce63801ef1228b103597
MD5 f1b710016b94bbeb737654038398ce3a
BLAKE2b-256 686a899750a2e01900b5fe07ffdb944f231bcfffc4d50f184c6ccbce7953def5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 048a64775b56d66c4c2db071f474896bdd126df1e3d0260d002d3b74a0fd346b
MD5 787149462c89b8560335b8862088edef
BLAKE2b-256 b23f0db633804d9021b49cef511513ba707bdd9070b82edafb5f81bc9f814501

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4dd06c1a4ffe51f9ff4283f9b0401ecb0dbfdc0e68696de670a0ba1f4d5e33f
MD5 739cd559971f2a10ef84eae6138a5002
BLAKE2b-256 429f33b8fb9cf3eed45818779edab2a0bb1475a4c290c1100d9978c751fccd55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ebc5e0b3663cd1acafe4609ce9bdc78dc916590799cd782885e24292c69b70b
MD5 b9aca557404221ecf38ab73c0d6865fa
BLAKE2b-256 9428caf83947a9322428484d9b2f74aba94c3da3103ae78d92241e6ba8b8795e

See more details on using hashes here.

Provenance

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