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.7.0.tar.gz (48.5 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.7.0-cp314-cp314-win_arm64.whl (353.4 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.7.0-cp314-cp314-win_amd64.whl (362.2 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.7.0-cp314-cp314-win32.whl (338.9 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.7.0-cp314-cp314-musllinux_1_1_x86_64.whl (738.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.7.0-cp314-cp314-musllinux_1_1_aarch64.whl (703.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (563.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (677.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (529.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (573.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (482.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl (490.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.7.0-cp313-cp313-win_arm64.whl (353.5 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.7.0-cp313-cp313-win_amd64.whl (362.4 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.7.0-cp313-cp313-win32.whl (340.1 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.7.0-cp313-cp313-musllinux_1_1_x86_64.whl (739.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.7.0-cp313-cp313-musllinux_1_1_aarch64.whl (704.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (564.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (574.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (484.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (491.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.7.0-cp312-cp312-win_arm64.whl (354.1 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.7.0-cp312-cp312-win_amd64.whl (362.6 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.7.0-cp312-cp312-win32.whl (340.6 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.7.0-cp312-cp312-musllinux_1_1_x86_64.whl (739.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.7.0-cp312-cp312-musllinux_1_1_aarch64.whl (704.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (564.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (677.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (575.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (484.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (492.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.7.0-cp311-cp311-win_arm64.whl (357.0 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.7.0-cp311-cp311-win_amd64.whl (364.9 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.7.0-cp311-cp311-win32.whl (345.8 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.7.0-cp311-cp311-musllinux_1_1_x86_64.whl (744.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.7.0-cp311-cp311-musllinux_1_1_aarch64.whl (707.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (538.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (567.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (681.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (536.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (583.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (492.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl (498.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.7.0-cp310-cp310-win_arm64.whl (356.6 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.7.0-cp310-cp310-win_amd64.whl (364.6 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.7.0-cp310-cp310-win32.whl (345.7 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.7.0-cp310-cp310-musllinux_1_1_x86_64.whl (744.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.7.0-cp310-cp310-musllinux_1_1_aarch64.whl (708.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (538.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (567.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (681.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (537.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (531.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (583.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (492.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl (498.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.7.0.tar.gz
Algorithm Hash digest
SHA256 f3feacea7751b7bb70b520421aeb4f8ecb461ba2deaf6aeb7d30fe73e6f674c5
MD5 d883b704fcf60d834916e15699d48801
BLAKE2b-256 37a0253fbeef1a9a97b9d9545533bc370e93a74baa8151134ce894c37ccf2060

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7f451e52501111a37e97c3ef4751378c4d009379b824a27807b5746e9876af1a
MD5 b351632e6272c223d0f61438a44974f4
BLAKE2b-256 ddb886e9647bef2989c8a0d3770f0b614a1ac1471117e3acc7d171cc00cfaa31

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 362.2 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.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 78c0c32ee68be0277471032f96260b8be16537f6e6dc9b341cc391f05b8fd5eb
MD5 bc6efb78947c3e69b0af64ec34e46f8f
BLAKE2b-256 de74a04f7e29054d1f803f195b0a873586860a393e448ddd08f1526abf31e404

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ecbc658c3582fd6cc43cad34d1fe32dfdcc3cd94aeabdd956c5eebd3bf22dede
MD5 cf2e9045fc9574640f6b7116910c3039
BLAKE2b-256 83df069baa6bd35f82ff855dea6cf1f4e0b27a10bc120cd9b822587d1b7b8d64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c9a31db9f00822825afa00caaee2d2d9ab8c011616259198af2f362714e94dda
MD5 162ce411dadf0072097be0baa77ea154
BLAKE2b-256 3b7d0d273e70f04f68ef3a9322ca545c0cf5afb3b1c114c5b515fec86d59928b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f8c60ccf6801c41bda40db29d1b15e58aee5dfa43b677b199108995678f52b2a
MD5 6f630dbca5d8369d880a5a565c62a888
BLAKE2b-256 3224fb3c84023636d2f26362218b5bd0c49a52c3f237700770c651f52ac5489e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c4a8af6b91a597bc696b5456fd97c96bf60a02d09749d450bb0b188e6cc9ee3
MD5 25a59ec96b14405e88071f64a2f7e909
BLAKE2b-256 c482b861da31cf21d5fc6b4e69511c3361e0083429a4d7ceabc2504f4b892cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59f3aa2419c68450057539188495b56bda411cedb975868027327ffbc20ebcf7
MD5 4800f18319010ad05b77c67c6ae4eac5
BLAKE2b-256 a80c401b234e79eb0d95e8901381a892baa896dbc523cef9409c946e7474b2af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 208b77cf5e50c490d4e38171fb73cffe2a74eccafd591b16122d4e55b72c9b0f
MD5 dbfa60aa11b60056da0f056ab45f952c
BLAKE2b-256 f733e34add3b21e844b72782b9e72177ba10cec92f6641a51dd7d1609edc0fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cce7a50c04c7d949435bdb4c88b9f6e43612dc4617fc0080a5c4117cd33ed873
MD5 f475a519d7e7bd345952b99619464c8e
BLAKE2b-256 ae66abad6279aa4a647d7c6356fbc592a0958960ce5c1f1385fd03547db00a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99a296d7653080358c43ec07f0c2a6cbe533f35ede89cf575910d84988fd21e9
MD5 167277e52596f5126db03ef1ddefab13
BLAKE2b-256 bb19aec1c26b148a80ab08e92724b07a43525a43a1f9e1f015f30c0f5f4f682a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 affe7bf7c272996ab943df918ccb788b6d8129611369a28f35d6117174ce29d6
MD5 7d096cbd77e8bc07d5046a7a63c9aca1
BLAKE2b-256 3dc7d99988bf47722f0d9f1e5fce45f487283a6545c6f305e4feef6469b2b924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27a6a39e59513f84db6801f78e94854d4b8be730be20f0ad85dfb387b7581c70
MD5 0196ba5c73a6fefbe58146117492275d
BLAKE2b-256 31c0a7fed3bc8692d5016222a42069ea91556f4d0a443c543889ac46a8c12c02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fce72b1a71ce69588190141afcfb8a025dd33667877e2f2b8e673bcab549bf3f
MD5 a472b11cca6a34a244a11c25d6e84726
BLAKE2b-256 096abac65b07219506d9f7cfb6c5e6b7d2e19d532cc99fa7e8b81dccd1a9024c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 353.5 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.7.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 36700af40e30661159ab07e4415524ac9a589dd00fa1c7b4b4a77eb184b5f597
MD5 222f8cad10e87278266367b763ab8c35
BLAKE2b-256 c0f417b8a17a0b44257a763f105f11c742b994ffd1fb66535b2d1a290ef02bf9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 362.4 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.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 103fa26af3ebff015a8f246819356f62ab0619610e52cfa13544265ac407a4af
MD5 56d305e2b09a2c1aba75d1138d806bb8
BLAKE2b-256 70e144899301c7177dbd665b2135819414251a2c4fedc83094768ab9bc47921c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 340.1 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.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fda93d36164d3d79ee0b9535d7870b279addb1468ae651dbe10f66c685fedc59
MD5 2dd390eaf26246f54d93a6d6f6f80c4c
BLAKE2b-256 3e41f70db1a02505492c4915baf052a3bc9b0a1bb09580b176d1916e90ae90ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a0334175a1bac61412118291a973cac2b55a72a7f6a9ecab549bb2c074cfe03
MD5 b0f15b69fcfc6a5726ee6cf0a1c284f4
BLAKE2b-256 871b1d865e46fc69060fde36d92715fcaacb93eba09a96142e39bff0b555df46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b23ab4b4dbcf30ee6befd3db81bc3249b1a234508db290e7b55ec77226162303
MD5 cea3ca7b34bb2422b1c553eac1baf814
BLAKE2b-256 04740bb368c8645f04b2c4b2d2a9a49d24d19f3ec8f2a8cf534c57cd61a5983c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c9082b07290e81c1de0deea201a563749af17c139d288fd26266f0e928d2000
MD5 8488020a9058bd2ab9ae1b56a9ae8991
BLAKE2b-256 f3d03c45316e73208a38df214d1368bf7c653e191bcd547555cf5349548bbdf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf425d65eb02a76236b85454bf56cfe989e13b21ef19f4901b14869becb4d463
MD5 6363c06f1ddd60ff124ff54ecc7c6e7c
BLAKE2b-256 43e4996d8e67752d12cae934f7b2d94c922e78637af0181182a3fdfd5c4b7430

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9a17cd0d059884f31e34d475a39b8a834ffc50a7a0cc7c45d7f50becf33ff22
MD5 6bf56ef5458823cc25da6ac98afd72ac
BLAKE2b-256 f34cddabdd05a575a2ee3929d603e38b94665c4d83ca558e7d72d4c4f3ceff5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d065d0811477d4b7a10fc3cb803e8359fa2406bdb9922f1ffc542a4fb3c4e64c
MD5 8110e4cf66fef969ed02515287fcef01
BLAKE2b-256 16c9536dc3e39d0a61ae73fb2044975af23a3e44aba5c94fe0acd4d6341b8bf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ced99691d7c712725d968d157c434e6027ea7fc99901190627225e7b94af7a26
MD5 622bea350e8ad33386ee0ba4a7cce140
BLAKE2b-256 621a196c0b60aea22fc430c0815203714bf43ff717358fe3c67dc1e721e16684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d067fd3a5cd042f890ccc0cfd24af48c6f7f236a57e69f5f162ad905a8bdc116
MD5 ae08b42129cc7d0fd206aeb1140245fc
BLAKE2b-256 1662338beef73797a823c750ced2f42c3a23e959948320f787f05f15ea8fd50f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac06ac5748fc8ac2f3b95fff3e63a044cdbae9715173851d6fb6968bb659a3ef
MD5 4f7194ff85197d9c7ac5ee4576c24c61
BLAKE2b-256 502b474a1beb0858771cf768ab24a3c9e6e19bf6ff7bdc3613f6540ca167ecb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69cbddc160edd8e0e0fdf780f022418ecb18631a833d21c4dc37dc8fe86d0074
MD5 24ee802f5076c3d688e07623b6d62c51
BLAKE2b-256 eda09552a460ac07dd56698df25fd8a53e97d40c6a5a7fd9de61298972e8e25d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 354.1 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.7.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b3243c118170ce5f914e7c2a5c232a930a3e6dd3b50fbe96da25c64479e9cbeb
MD5 3fa940dcb66c342e593926424490204e
BLAKE2b-256 2f3967da661c6bda767710c4e775144854966165f022198e5d04946aa72e87ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 362.6 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.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2263b28a0860d5a914e2cb3af4c20d50cccd1f65aadbaf1108fc96d81af8fd83
MD5 68a8781ff91bc2b8935b945a0b5ce243
BLAKE2b-256 1f931fa58798e4b2829d09355de414c834ea15b69435fafcf834c7bd530961b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 340.6 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.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 586331c19a2848d762ffc73da7c068d11fb9fa539021ada0c7251ec3bcee44b3
MD5 57653e74ab7d498071f9ec444f03b88e
BLAKE2b-256 5e72de54409c2c6cab45037a14fe1dc98ad4891d7aede634bd63b89733638d65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d3d66c02ae6bc7569d9d8837b34b856d730582f337e904ad36fe66b2e269c1a
MD5 aa1d26499039cd6142f33b26560f16ef
BLAKE2b-256 6f6b25b432297b0a7e6abc31e04de91a9cec9f5ec85339194a67a9434fdfe12f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 051f1b379bc237863ca499287039e7cb3db92bfcb77b466307bd58c9d1915ab4
MD5 b313b4507077567f9038ecbb494b621d
BLAKE2b-256 3466513e8619efec7cf345472259a0631ea3602c867f1842ee4cee6e13380725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6851e92dd22721ac2ccf5a0b53f28586ffceb6d91a761799580e11118dc44bea
MD5 732f55e13f3d404a2e63e38baef47648
BLAKE2b-256 4a679a01d508471d27558a3d2e04e3d970d515f2cf40f6d370a2d2b48cd7d131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cffb75e73dd8a23a2b47032c047f39aa2bbc104fb1d15adb3d14e29ff2b5085
MD5 87f42fed8555afc48807374b48a0b172
BLAKE2b-256 bc1ba06168e7abd6b8dd6a39797f2a88eb14f4f952e7bb3294ebc7c1941cedc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64c288637b9f9ea3c06632a79ab17213fc9cb3bd468920f30303928fd33deb73
MD5 6a6cb5dc6179f47525bb0182a9473d48
BLAKE2b-256 67bb12ac5d4b177c31fa122a97a9ba71324ca09a06a8ae3ce50fcb277c104c91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7ec94cc5e8df8e6f74273a7e5024317b2c816db0c25e5eb249da418fb3e736a
MD5 d606810b254f9cb6bad996b5c4f374e6
BLAKE2b-256 f6eead83094ec7a1b0b71aa2d4660080dd77b4322db38ef2422a46d59bc7cfab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b75827d49857e9ddd4e33c65c6fa81aa771186ce6c349aab5f6f5505d65dfd6c
MD5 a660a38c1d78e0bea12357692106e55a
BLAKE2b-256 50a31e57929c40adc42e1922d02985ed8cb1e31c9ec80b5dd0532d0dccd0c3df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 da622862c480c0a9c78a4aac11778bcb944b5cf8910c077d924bd8a648ee5e1e
MD5 4d9dfae25c2fd131c0dc53b967851e0d
BLAKE2b-256 ff8f95ad0755eed4cba80eedf69a466c1d8ebefbbe6f7ae27ed597d253396c70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17f75c8e49bcc0d786b724286259d149fb6d93a91581c39c444a23c97da05015
MD5 81429256a3cfe6b416b10ae92a55372e
BLAKE2b-256 bed719f8e263bcd7db310bbea89c2dfa259259a3867dfd0fe9ea607d29e39095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ab7ac7db5c46cd2d6abf00fe1f307698eb8fe0ed8e2c58812188965659c8b31
MD5 3ebdf05cfcfe833eb170feec373dd38f
BLAKE2b-256 e62e6d31789c9cc14e82d190380ec865062d2581f921cafb34eeb489e6136115

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 357.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6e0cc8413e172c12fe9bba6d11460a462f335502b45d11e3ae84dc74211b8540
MD5 c565e08547376a16188c537cb5f9990b
BLAKE2b-256 86106b84bbebc3d12075c15045425a163a1458bdf327e6c5f12ed19cda732c40

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 364.9 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.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ac30c2777e062fcca3e15130677a30ba52d6808b734870e08d99bc4a245b0cab
MD5 f789418aff8c78faea478a3d60476c63
BLAKE2b-256 fef72274191efeea6ce734fd3c30e6ff8a1c7baaab3bf6d87343b44e81a6d8de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 345.8 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.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 10d0b8121b30d04fdb8444ff96003772ff08b5fedaf16b51d1cda37e26052514
MD5 47e93be1ed8d6ac7c09a647245aabce5
BLAKE2b-256 68a70291ce628653bb23bfe1d8e9b5e50c5e5a63966ba712c86dea8bbbef0bed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d61b9d9eea8f0a4a0ce273a40491f121514a1720b867d6588d62d54ee1121fab
MD5 20c059ce858d897652e506944fe1fdf7
BLAKE2b-256 a1e7393249ce1cadefa71ec645de95d5009fff8d10a3c87155a478ca762660d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 94c19d88957e702969e50798cbef8e6b67eab2fcd70d583dd4e96e4da41e7c1b
MD5 12baf9c867d389c4f4837097dcdebe65
BLAKE2b-256 b500e821d8d05d39c330861b224c76402166a042e3ec42a90022c949600e2f04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94ec98f37fdf312e6651c4cd726ef9a7c98666de57a41e09309203c1d4208625
MD5 8df82671815aa21648f20f07eb400a0d
BLAKE2b-256 2110689e326fb4b5801c1c862a1acd0220122bcccbc0951bb82a8b3b9b110448

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 058155866c1d657796d70eb2bda63a0fa2451d364f62be1f7ce327a4274ff03c
MD5 379792b31530723360cf6a63699c23f8
BLAKE2b-256 e052f0ff45e487160162d6459f662765dea08efd532b5a4dc41255cb1439a05b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ef85d84c3c145d3581e8f5ffa53c2d28f6a51ed9b7ce2d5e4b7d5e2a479db5f
MD5 c435e9ee50a313e5e15e0a9f6779009b
BLAKE2b-256 0839d97299ef2893d0ce25b579ce189fa1af773ba31ba615e8d83a460649c334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd3616b3429794ad9843e20fc8b75917d0234c4c4404272402079069dd451765
MD5 118482b7416327f580f4a927602c92c6
BLAKE2b-256 3d02703759689d8c1e52c64fea1ec2e5fb48ce3c018dc23e7b48d23feb6b1d07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 605cc62e0a560ea61aaa4c8ba5bfbdf9647d751b29047a8eb2e86d7aabaf8c26
MD5 400e811d3b8dfdef178ecb390579c35a
BLAKE2b-256 8f2d02fa7911245d42fdc55cb351d23bbf43bf6bf04ed40c339a47f4103a2d12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 afe37d306124adb66ba834292397a823f56e8955a59474a4aec26a06c59d4153
MD5 6c29e6b248cd366f049e0dd86f166bf4
BLAKE2b-256 ec189f17d6a3767bb7a0098a1fb299a4f97f2b44924dbd337054dbb8eecef891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 052dd5fd88fb807cb54bf287614d778774db7422ac30b3e5652dedffcb0ffb45
MD5 397b0ac9a5bab9cc2fa8c540aa675bfd
BLAKE2b-256 bf420c8d769a185754eb2bec29597f7a4d60b077c61579fe01a668e7613d6c8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cfb2f1ecf5f440382899385bb951c646e73876129b82708a7d1b227bfb7fe034
MD5 1fbc8b527537cde091c385bec74a966a
BLAKE2b-256 a5324c86af286e7c9513a69703f070b5ffb289ff8c229ef63ed18515f8a6b901

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 356.6 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.7.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7160e007b3204b77023faf0a4d768833dd34d2d9e85f19f11987e8f3fb1e3af3
MD5 b1bd9aee9961e69ee7ee62aa3325c77e
BLAKE2b-256 88a568c57d9163b54a20697849dc3f50ba46cfae4b3e50af61cbeca80e9b9c62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 364.6 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.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 763b46669ac09e653558b8e625f7e488c6695a5cef9dca5223e597fb49235e25
MD5 de78604602959ea95a1bf2341b1d3d2d
BLAKE2b-256 ef4c89982bd5a75cba00f350c583b18f445af7f510a00fe8dbd1b33412b8e0d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 345.7 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.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0e9b97aaab95287ff492a5fca82343b8b6997bb0af3fc29b7240e8e2f9e174ff
MD5 fd66a5f2deaa65bc0889e79c9f169425
BLAKE2b-256 f7ce3d03cf6f0ce4b82a4464f01ce4e0ae13044fafef4c721a268a25e4dfa6c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 14e2d16f9edd8024dc92876aa0e8e7098ac8cf766751c8ff0bd74f4613f765b1
MD5 9c9106a32dc86cd5cdf3ca3356ae3b29
BLAKE2b-256 9b4bca339a0ada3d8dbdc994a2933c5160efd08b543fc4c9ebe231288a20683f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc92e04f0b315aa90a9ed731289640a7ea915fc826cba9d613c3328469a02d73
MD5 289b2659d33c5532844fdad7f1246411
BLAKE2b-256 39738150eff4a518e41b92592ad04260ac1ae2b99ca4517f10d8fc748d315b1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19b7105996cecc9da90b47089c29507fa6a8752b061f8ccb892bff0079993e6a
MD5 b61ed7e9c1b6656b4d00cf3dbfefd27c
BLAKE2b-256 4f79d0e9be00bad3e1c6bfa849363cdbd7c8d1e76f853cdc0e350ce872c238d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d5d376b84ccff6af2a20aa03159760e04126365aef90208b089e0053c4210a5
MD5 85952a33f77dfb161113d48755cacd17
BLAKE2b-256 386562989e5fcdcbadf4b30b23085cb4543c0a177ef2dbd3ed5c72c96cc762b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6dfdf4b0e1d2723307ded938d0bc3db7b12c10d14844e07fd7fd5659997f969
MD5 d9dc13b38482beeb6aa8481209c178d7
BLAKE2b-256 ce00aa81a0dc51e5121b64f2989acca63a197a49881d8a7125ce7c784de00ff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f76abf53b0c089c369219a45e69970eda3b3d49a7bd595649d80bcbaa059d8f
MD5 d01e5a5910f18809a6bbdf4af07205d1
BLAKE2b-256 6730c794d2bffc33a71b087c3a222fe0db0b75b3117467ee3f2f05b99bac0f89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b731c3d5268ee0577fb27d1be2549c6b72414268d1d5c79623a23e299d22ca2
MD5 ba018f01ddbe3efad6028350aaa4864e
BLAKE2b-256 b7dc747d61a3d1ebd8455418c3afa5ee3b204624a48cc487314769ac4854a89f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 356d848fcb272427c6eaa97aca22a3e6b9751f75d33514321cf7733afedc099f
MD5 a1d32910358a5ff39206ebd73aae98b7
BLAKE2b-256 9672a713cc384a5ebc6281d50fda0eb9667a0ed21c40fe0325528b0ddcaefec3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7ad96adc262008e686132dd36836c01163575307e9440d621419a51d5dd4169
MD5 953ec89c66cf754ef9744a1316a5944f
BLAKE2b-256 6f33f3a5ce7165724c19e8100dbf62110c6749fe657367ef9e88a6401819732f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2c31536aa179f0a97f1737f0a7ad4b07aa93a4b579e870ba2a99b1a3128196a
MD5 568ddccf8cd4f999086163d46c72dea8
BLAKE2b-256 512942524ff88e2531f45397e4a12afa3213af61502581308cefaa3bfa0b8fb8

See more details on using hashes here.

Provenance

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