Skip to main content

Format-preserving TOML parser

Project description

tomledit

PyPI

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

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

Quick start

Given a TOML file like this:

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

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

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

from pathlib import Path

from tomledit import Document

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

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

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

The result:

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

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

Truth in advertising

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

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

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

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

The item that performs the mutation stays valid:

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

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

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

Project details


Download files

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

Source Distribution

tomledit-0.10.0.tar.gz (80.9 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.10.0-cp314-cp314-win_arm64.whl (418.5 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.10.0-cp314-cp314-win_amd64.whl (429.0 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.10.0-cp314-cp314-win32.whl (400.5 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.10.0-cp314-cp314-musllinux_1_1_x86_64.whl (810.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.10.0-cp314-cp314-musllinux_1_1_aarch64.whl (775.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.10.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (633.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.10.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (753.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.10.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (602.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (598.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (655.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.10.0-cp314-cp314-macosx_11_0_arm64.whl (561.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl (571.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.10.0-cp313-cp313-win_arm64.whl (423.0 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.10.0-cp313-cp313-win_amd64.whl (435.5 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.10.0-cp313-cp313-win32.whl (404.8 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.10.0-cp313-cp313-musllinux_1_1_x86_64.whl (816.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.10.0-cp313-cp313-musllinux_1_1_aarch64.whl (779.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (608.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (638.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (607.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (603.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (661.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.10.0-cp313-cp313-macosx_11_0_arm64.whl (565.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl (577.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.10.0-cp312-cp312-win_arm64.whl (423.7 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.10.0-cp312-cp312-win_amd64.whl (435.8 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.10.0-cp312-cp312-win32.whl (405.7 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl (816.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.10.0-cp312-cp312-musllinux_1_1_aarch64.whl (779.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (609.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (638.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (755.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (608.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (662.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.10.0-cp312-cp312-macosx_11_0_arm64.whl (566.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl (578.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.10.0-cp311-cp311-win_arm64.whl (425.9 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.10.0-cp311-cp311-win_amd64.whl (436.6 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.10.0-cp311-cp311-win32.whl (408.9 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl (820.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.10.0-cp311-cp311-musllinux_1_1_aarch64.whl (782.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (612.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (759.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (612.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (607.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (666.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.10.0-cp311-cp311-macosx_11_0_arm64.whl (567.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl (581.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.10.0-cp310-cp310-win_arm64.whl (425.9 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.10.0-cp310-cp310-win_amd64.whl (436.4 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.10.0-cp310-cp310-win32.whl (409.1 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl (820.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.10.0-cp310-cp310-musllinux_1_1_aarch64.whl (782.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (612.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (641.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (758.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (612.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (607.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (666.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.10.0-cp310-cp310-macosx_11_0_arm64.whl (568.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl (581.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.10.0.tar.gz
Algorithm Hash digest
SHA256 89d443dd9e109057f6c2c7a3831427fd21d7e33d94828f8409d665242e7dbcf7
MD5 e801f746d7c1deb7f76c07500c012171
BLAKE2b-256 84c9fe316867434d97079233d6001a815e96c85aaa45d4e4ed50d7a1955cf2b3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fac44aac08e4a56e509a9ea87db5207326a2afaa085dfdf0d56e30450daaf25e
MD5 6483425ed0ea6d5a93fd3fe49059cad1
BLAKE2b-256 fc1e744941393faea953988733726a23f6829fb684b37dcff4945d4c428de479

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 429.0 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.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e4a3ab932012d67e3caa3b4907ffef19df168cc12b7fe6ddec898dcfe0646ba6
MD5 e919a406b81a5ce4567eda228f31aad0
BLAKE2b-256 b9540aa71d1e54b308d469e3aad9c358b3014f490d5367466fd48cebdb725b82

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 400.5 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.10.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8211a787414f87940d02e5bef0ae653b63c78a3ad7627a07a456b6d602b6b4bf
MD5 aeac090004c12f61537ebc60da43fbbd
BLAKE2b-256 d4cd9e7b841045da9db229a3e35bc2565ca0215618e532ae62487e5f36e22d57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9e57c5a85b40f53131b6b76840c3522515f57d41907eb693ab9f663242167369
MD5 9128f07738b46bc667dc8c1209fcc56a
BLAKE2b-256 4857f408d24ec9ed3db911ff5decf27280df90d9d817038ca970bea7a736a73c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d92a5f3762a9cb5945f1d067fd9b527b673be7d98414f8f065af364d6227792
MD5 0f1592fbdb7ba1c8c509f2c747c241cf
BLAKE2b-256 20f3fe28545da9ae2947c1d9b9f9737caa224ce62cbf3781592cf38c5034b445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dedbe45823b8fdd5f5c155edbc3c75a3b9dd22226d2f4816954efd7c2b74b397
MD5 950210fd12b5b215c448cea1c4026ae2
BLAKE2b-256 63cba8e69a85a321a480c38d299eb835e29a469a301097f63784b2156015f62d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e93619721ac2f0f0f780a53e1dd391db0a6a407264b0cfe21596f64daf588f96
MD5 ff027f9b307d79ab14c566bf1987f46d
BLAKE2b-256 2c480ba824cac2977b684c9624d42e2269b0b6f1a1d02f8d62126a716afa47a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c3c2b05c3676f96f90b46013d1598660096785668b9ffd02ddf669003f73051
MD5 8e07ca640032f13679df98d0ffd8401a
BLAKE2b-256 bfe7d2266057de84b7342bf186d755a7b7de14810fda06555e9bc971871344df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a435d37b34eff260c6ba6ad6093145d43a14366704628030bc21b1853dc0683
MD5 ec1b94c00f69890306fc823e4a884b77
BLAKE2b-256 c0bd12391dbf760f73ad710eb30d1290616cef856892a4dcde2f03dac1de0b64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ec6e5d3bc03faed9dd5928c8117953c4b5ec53b2718c1ec5beceef588b15348
MD5 0afafe720c49dbaabad8d213f993ff72
BLAKE2b-256 ae6ee76927109b60b55ca6b2d7a2ed98903885e42921a05755999a67e76f1c34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 83422f5b871ca555d310612a561b92bd23ed9f94c2ef92e5902c27690b9957d7
MD5 5763831b44b21eb1387ea6648bc59627
BLAKE2b-256 f8a51335e049156f94086ba85468e5f33b339ef03b73cb638a58df9e231e5813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d56f0175a0584b8f4d881e90bb40777fa578bf4a9f44b4d62f6661879dcf96fe
MD5 2aba600db7f7f6a05103077ef6c0079f
BLAKE2b-256 7e46e56db485910ca9075312a86e33f28e25b055601f985510212b96f0f6488a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cef7f2dbb2f1e84a033a9a88af7f1e67ec1ac16855d9289455aa3aa9d9e0c861
MD5 a2504c2fa243676589cd950cd7331322
BLAKE2b-256 b82c9f9b2a4e6573899557ab16a324017c1815b4a2c17d4abae8797cfdc47f95

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 423.0 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.10.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1f0ed5161b83815e351584331bc923bf16052adb262628e2331d26a4c2c0c59d
MD5 64b5a41e0eac18fe497c4d6b3dfa6d36
BLAKE2b-256 d422e617322d7503daec1c2296a08536dc25ed0dd63cdbaad1f8dd134f763e2a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 435.5 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.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c7514abc8afe3ec9df5c2c522dd0244cf6a0a345378342f47714a0ce79bdce81
MD5 f55cf6e129900b30debd6fa69ffb74c2
BLAKE2b-256 caae7d3cb795806024efc22231482889e3574d038d735733d17a600c3df9d753

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 404.8 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.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fc2426dcde1987c8fcf764d8833a8062d6938b1fe09c18293b22b83d7e2262cd
MD5 7f4dd20cbd146ca5ef30b04f16af2121
BLAKE2b-256 f79b9cb050ac19b5e3a2bb0057b1b2f102f94fff0b8d92043e003dee0bb13357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e392ab2b6821ced846d0d2af5902cf36056e9da31f99b97ca57766f9add4d27f
MD5 30b1289755bf9b7d10651028a10a609f
BLAKE2b-256 085be7e0502fb76d90c1827dea2ac6909e9fbfdcdfdb173286af3538dfd2ec51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 52b9055a694de7286d74f63c63f6134edff39a1513852606c9b8265e89195067
MD5 0b5377aa0fef798bb6bb7cb902ce0fe4
BLAKE2b-256 6e60edbbf4d3fd80d17610a6a7a3ede2489d452334f7d37bed62a8b308d18a5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d8867b28a3676c2ff87b95f523db01381fbf257b0ab5d9131773c2973e68692
MD5 7d5b5b722c38991f0b65157eb7c3a9fe
BLAKE2b-256 52b0c065f7df38b5d0b2be0ac8ab3a188fb7f0dcfd58b70b5cc05ce71a0e134d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69b3ce8963aacd81dfec64e7ed6ed923114c60644936e13d6301814ddf62e52f
MD5 73d7526798c3d60f58ddd2c2da8d2ef6
BLAKE2b-256 441bb9af530e58994a415bb2ff7debea074a5ad65640d3e8e5977bfef7747a22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98c46f2a5c8aa6cd9349c6f61c6194cba05b094a4311fd2a6b1a2ca7ee897360
MD5 2693d451f93d47ff8bce6a05ce53a6b9
BLAKE2b-256 2e2a020bcd53e707b9b36f9a37716904f2464bab4080c4cad6c8b23071d7db92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 352182b508de16280125dca4599fdafa8f87049436c08191d10cdb3b5893934c
MD5 5d886a5297a174dfe30b1b2e2a388bdc
BLAKE2b-256 e1b9a5dba7a978ff720873464fc369ee328907bb037ee43952a637082845dc6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ad7b97a3af4e2b95d8b9e711fdae66c4a5d9a6e4c3a19b5d5abe01affd4ce45
MD5 b8e8ebed4028398bbfa50d0deea26ffb
BLAKE2b-256 6cba4b9390154db4d09122ffe9ed10dee403d9981934cfd3daa58a4433866dbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2673d8db7ad772485c735be6d54ddc0e5c196d857176069b65fa6614cc0ff511
MD5 03243ec73f28e4e957df21801c3bc23a
BLAKE2b-256 3dc0875d72dd5ee27ed335ecca1d68a0b63ebab2f2bd59416eb5f235b14560a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1abc3510e619bbb2918c2b5ccd69d990df2156763b87549b5f35e1a16857e7db
MD5 32c290812ba60ec633dd77d074f89a10
BLAKE2b-256 4c9778f4663787cc99f3c8b01fcb1f3e291884b925f787758df26c1b8969b6cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4508415545d970d2821aed0be8715d6792ef75fb12793ffb916d5732fe86e908
MD5 296391de4cd244b1473c9e31948c1324
BLAKE2b-256 7317db545e6c484fc6c38727fdbf193f3b64c213700f5fe919f51bf19c0592f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 423.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0eea25d4e9ee2becbbbdce72d0379b3a56758a4dbc3064ef1cd3b378419e463b
MD5 1cf05072f238d3dadae46548bb9b89ca
BLAKE2b-256 823c8df6a9fadc7889606d580f3cabcc555cccc25416821bba2608f2b098a72e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 435.8 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.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7ae62a8f1844ee57f0177e97bc684034967da4b638987f80e6d473ef550fb83c
MD5 e33e71d7a249e0caf3d2b25c3744698e
BLAKE2b-256 6cecc2c4be4e418629e098e31ae998cccd6c3e8f8f4e70d97df0d6ab72f7656a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 405.7 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.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6a4bf4777a70d97d7632f2c40a92d77c682493dba8fe27b24593a417f61f180b
MD5 17d051fc571e2c1ba768b2a3b7274c83
BLAKE2b-256 2300de9502530e85b60f9fb11a829763613bbe14d661546e8b598e3695dd8e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 447ace96c6c8eba4fd8907aa6aa61f7098bafcaaa89d3d54145f30f991b96fe2
MD5 e642dcdd3d3319ec2f28957242de9d68
BLAKE2b-256 e13092ecf8324f59d40a006748f816af8648b18a9a53f277bdac76123b3dfd15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4148bccb0ea08df2f8bcf2d1fff070f849cba13f60c15d9fe24f7a30f43532e5
MD5 9ec26ae39da831e11c4ab8b6b9b59875
BLAKE2b-256 438164f4a7f330bc4fff00a286da0217478b50d80a029035bbd9fa5d95e00b93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ffc59171e54766ea0c478250169078ebf631a054b526a911f942da3c90d4f6a
MD5 122955363720c2e60f8520ca0497ce88
BLAKE2b-256 3f8d35b48bee56c29d95be2bb100e29354eda609e570fa2aab19e92e5ed883f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f92c9547f31b52b561f10a750e90d4e177facb9ca97d84d09158c7fbd92fbd73
MD5 000c0d134990299a7690546be83dfa5c
BLAKE2b-256 36d78a29e2b873d52fc47e1764043a13e9a4ab7fc21470ee54738994fa53fefe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7614c8dfe1a2c9c43dadc8921efaa13cb753aa649cdf09f3db2da49868cab97c
MD5 7330526c0b3a011c87578c1fcff11d6a
BLAKE2b-256 7b65bf72634df5eff5d7b83ce64a63d895fa4aed55c06e7ed251e49f27b71907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58419411bf93102a018741871b8538a92b0c331c63edad49cb7e29d407c77409
MD5 55c7a97adb1149ca4fec0ec06f6469f5
BLAKE2b-256 0414caedc296d1712cfce7299fa55a616aba8236611ce34465fb23605eba4ef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd2674da86b48e7f592a11eb681dff86529c32c125e92bc5e7ff1056d6cfec72
MD5 9a62233268f38a733f5e604c6ebdd845
BLAKE2b-256 a90be5318fa2fe07df8d45418c973e9c8e264b8008c501f2fd15ef86203e25e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 adfb8cd17633281263a699cb4664f60e7e1543e0c5f11321fe77212e6f5f9523
MD5 8a8b9d2e7020ce2979a5fc02bfb349fb
BLAKE2b-256 f3343feff79c7307da92a00ba10a76a0d72abf3455bb893d4e81a574384b6f14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 440311f01b318d5f2fe8fdf7341f7307a8544144b3e6d97277719e8ecc806c33
MD5 4c2f4b9eaf5bfe82b97a51d055418448
BLAKE2b-256 e9d260e77f44c3e3a44c334248e543187fe43b6bd9c16be5275cd7479a121722

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d78037943aa59fe457e2635722912c66d8d6e1a32e30cf5c961414f58928d29
MD5 f2495c93c5855a0d55a9e763a5d5602b
BLAKE2b-256 0708d9236da11870a8fb23589a996ef223c0dae025cb79d852855b0877b6740f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4e2474abcbcfc3d3803adc525eaec2ca966a7514d170f4b5765b98ed0872900b
MD5 5956af2ea1ad6808ab6e315be111d5b8
BLAKE2b-256 f6ca2f3199581bd7d1d39a25da15f4ced459c6cf390b14b09acdea52946250fb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d632e947d54d32d24dbf971d79dad9a36d690e4fea1ef25147a3224863916bdc
MD5 8ef3a3d94c73d17c3723a0ae04e8c38d
BLAKE2b-256 0b3488a7d96b7753b8c7d157f3b9d43199ea81703afccbbff9ab7f8fdfd7e100

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 408.9 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.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c52a14b2694d1755a95136605a9cda12ba560cfd9a076b94bcf55fa72eb48c69
MD5 e686eda0675278e929d102e44841529d
BLAKE2b-256 29fe12fa28e209a7b230b2454231d8b1bc201bdb431af099d88d8a3549b33400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c547f71661221686f1301b94e131a4ab50213d8c7b917ec1ae9db68f7d265ad3
MD5 4ea3c3c931842a5a8d506738c9823b1d
BLAKE2b-256 4aa2e2f3246c44d19e315e818b6a29e01bd4e1ab6416038f9db9deaac7e3b55f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5d16cca55b72a51a3aa02b5a349c7e5f08d64d7f3df46a601a1e58bfd076dd2d
MD5 5d48b93216eadf859e99a988b3178422
BLAKE2b-256 a34dbb878d52a1c85812b392b9ea9819f9a3665a84eeda634fd598d84b117aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6b06a70c71b7d1cfb3db0865571c71d81672ff7cda4e15f77c11b285e274bd5
MD5 8acffa3d627b289abc602d92e7e656ab
BLAKE2b-256 5d637963c0d098385364156151b7e5d6c3764613fc9dca4775b9d1773addf52d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1d1a091dc74768e78a2f39ede71b9e6ee0ef13511502cf58f2e01860229c7e9
MD5 1a5d9f561c1a3c333ec364281ef748d5
BLAKE2b-256 dc1d8b43a0651becfa711cb438b56844440f983f63578559435f40c32835bef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 540a57913ee1dab109adba263f97fc442c5d9dc22b23f18c494a31c52e5d3abc
MD5 2439a7f7c86f5fb034f431703109782e
BLAKE2b-256 030df78478dd48419a5108b6cb1a26b8bc6c8bdbb0ff1b65732501b0d1a99698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0425106a348cb4a7a84bc2ddc1e01f2794e60051a4768289d8c60ea2532c3dd0
MD5 40c4bd166a87c0a53444ccf7085d78b6
BLAKE2b-256 fd188edf1e0c100afe25c70551b69047afe94005bf88fc4f5e9eb23c2ad27291

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ae5836f21f5fc766ff1e3ff3e3ee323539e9bd57e4757e72c172d1014327cc8
MD5 a5c23dd5d8e8b2798e2904dbcf719659
BLAKE2b-256 271291e9baedb89e96328d1cafe3e6bd751b867a79498caf0ce0344395f6c6af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3293ff48ad98f3214a7ad5fcf702d4ddd9a858acba32266219f6f7611d5f11b2
MD5 8b6d6a0eacc149116326641a6aea7728
BLAKE2b-256 3191116b5c64c63f9d9d693d8268471c755ba94179b8e2414ce23a53ca469cdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e3a4bf1c88d5104d86c6b48854d6fc3234284034e8a09a6a3a357e914085002
MD5 1fdc5f73d91c86bbceed46fea4a771a8
BLAKE2b-256 4359d6d4e245f274e73800402e2439af530f0ae3603a74eda603a78a61afe42e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62ee83ae1ebcdd5c957adddf19c9cfe495c34c996ff42763319364aeb5349927
MD5 bd0e9dab4c8f8fef2d3020f8e140d7a5
BLAKE2b-256 009ed4bbdf42bb9721bf4869471a7352b8610609e089e2467cceb78b2dfc6170

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 425.9 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.10.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4661c2268182413a8e257de0515da75b063c6fdd69725adaf4653d251b887c12
MD5 d73c5b320bf506307e4f06b209508936
BLAKE2b-256 224cf816fed2e1c2b6a2ff592102af2e48786d6d3b15ea945d36059a869e18b5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 436.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-0.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fdea93eb16bde5c5008d36798557ef43ba4b102cf2514222a54c6c8849ed821b
MD5 53bb63b3942853067c4cc669ca57ae07
BLAKE2b-256 6d2445f32b5e2e1adb2d7ec629d301b5466414635501e1151fe5546ade0e8cbf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.10.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 409.1 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.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f447d45a0892db344fb3a04abd9526b1335b3d9ea1638e8b4d09f6b5df7f89a6
MD5 6f97e9404993918d54c08726583d9693
BLAKE2b-256 3d5c55521ae088ce59662a710ad806ae75825e8115e69b10bfc7a14a520ed975

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9b823c3ef2d907f1c1615c88f2065cfb7d8f25a92ef8a3c0a63e85899933c1af
MD5 3acf1f7aeb56e6b3158f9ce7854054dc
BLAKE2b-256 8fd110b941527cf8db763508ec0e525b930c1714e14da8915993aec0f82d2622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cbd4d65f07b10a95209fc4f115c434d4755dca1e3cb103097832e92345fbfbd7
MD5 e7e142b89f0935fbdc2433fe718dedae
BLAKE2b-256 2c7b3fcb9446bac28bf4f94b0f20a0de2cda7c66ab42c754da6f3a732eb91916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c428490a791869f9bdb5c2b2da3b324564d4575e25f544947e140baadb1f4d1
MD5 4845dfd2a63aa5456343e219addb22cd
BLAKE2b-256 7fb4aa18904545a2198e163e4d80b4371d6889efd39288d7eefd1989d273cdc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71398c0c6aa1fcab1590ccae25ef6c7533f4ff5030f913a526df762a2970a858
MD5 c07a49a0c79b4632202267b49c3ba1b2
BLAKE2b-256 4ebcc5251cdc303b9b2d403110a54dccde16b559ce6614bc3369ef2649f80b47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 318f69ba309dd39c9f93b37f256f6a5c0943d3fbdead0a5a3d69494ec88cf00d
MD5 db7690165c4b3b5862910b35694ba897
BLAKE2b-256 19c02f0c55405cc997a6d499b1b22128a1336e64d9cc0a0e13ebf6a7a2ec3c91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89652e4aa362cebd653dfce2ab36f0815c42994d55726c26f593db5120a1c5b2
MD5 d20cb25e5227a5a0a1104417ed101468
BLAKE2b-256 b6382a99ab65ad9351abcbe29e5429fb2e0eeabd2f50c5f14d7f7aae977549d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d382d7d09dacae9ea787da51e20d6e486709bd5696ac95b4171f8e33f563e172
MD5 fe3ea4dd06e7c8b8403085cdb9b0c391
BLAKE2b-256 c47de26ca22cc81aeed5cc54e8ea964114d5bc79fcbb94730536b0421dfa895c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a29e85459e358762a1c86ab7c8807c662d95de1eb147c5ce645b4ba7d0aa8c2b
MD5 67780679baece0155ca3f048678702c7
BLAKE2b-256 119e1b786c5da4de2cd909bc6a894499faa32943dd5cac61fa9e75b0ce35ee49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 131945400f54ac304c8a0f45d990cce92b7a111905c776836240c1d7cb9dcbfc
MD5 89aa07abc742a11e912907dad8cfa133
BLAKE2b-256 33f1529c1da84cf162e517a134595ea992b9c01f3e4b2e3241de3e72c3420576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 266fde0e1ca937eefad0a62038e7c85a0a5c76ec6b6aab75187865de5b55adb8
MD5 41994a9d4e580faf46d2906af069a9cb
BLAKE2b-256 913a2916bf7b95da708d3903dfaa4ad80bc49506ff6baea5f6680132a9e64ddb

See more details on using hashes here.

Provenance

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