Skip to main content

Format-preserving TOML parser

Project description

tomledit

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

Parse a TOML document, modify it like a native Python dict, and write it back — comments, whitespace, and ordering are preserved.

Set and remove comments in the document.

Quick start

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 = "# Version 2"
doc["project"]["version"] = "2.0.0"
doc["project"]["keywords"].append("important-keyword")
doc["project"]["keywords"].inline_comment = "# keywords"
del doc["project"]["optional-dependencies"]

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

How Items work

When you index a Document or an Item, the returned Item is really a path back into the document.

Because an Item is a path, modifying the document can invalidate previously obtained items. When that happens, accessing the stale Item raises a RuntimeError:

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

The Item that performs the mutation remains valid, so you can keep using it:

arr = doc["arr"]
arr.append("c")
arr.append("d")   # still works

If what you want is just the Python value, obtain it with .value:

first = doc["arr"][0].value   # "a" — a plain Python str
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.3.0.tar.gz (44.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

tomledit-0.3.0-cp314-cp314-win_arm64.whl (347.5 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.3.0-cp314-cp314-win_amd64.whl (356.6 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.3.0-cp314-cp314-win32.whl (334.8 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl (733.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl (697.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (528.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (559.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (669.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (525.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (568.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (479.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (486.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.3.0-cp313-cp313-win_arm64.whl (348.0 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.3.0-cp313-cp313-win_amd64.whl (357.4 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.3.0-cp313-cp313-win32.whl (335.6 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl (733.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl (697.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (529.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (559.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (668.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (526.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (568.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (479.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (486.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.3.0-cp312-cp312-win_arm64.whl (348.7 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.3.0-cp312-cp312-win_amd64.whl (357.6 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.3.0-cp312-cp312-win32.whl (336.1 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl (733.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl (698.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (529.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (559.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (670.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (526.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (569.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (480.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (486.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.3.0-cp311-cp311-win_arm64.whl (352.1 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.3.0-cp311-cp311-win_amd64.whl (359.3 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.3.0-cp311-cp311-win32.whl (341.4 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl (737.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl (700.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (533.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (562.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (674.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (576.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (484.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.3.0-cp310-cp310-win_arm64.whl (351.7 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.3.0-cp310-cp310-win_amd64.whl (359.3 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.3.0-cp310-cp310-win32.whl (341.3 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (737.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (700.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (562.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (674.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (576.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (484.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.3.0.tar.gz
Algorithm Hash digest
SHA256 9d707298a5616dad326e37e475943c3f8a7fa977f528c847989c21a0f53d15b4
MD5 b7e75a8f907519ddefe2a685745bb43d
BLAKE2b-256 33f117c984bf71e2f79f03ff19ef6bdd51f01c075399dc9e4cb68ea2e4ffa1c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 347.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.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e04e5a2e3b3f3fbab85b143a1985abe6295882999b4a89a18ef9951104285c64
MD5 801d4dd79382f45306a1269ec3cda1a0
BLAKE2b-256 eb41807966783acbe65afbfeec09cc0c0fb9ca68d6106df2a819ee28adef6a9f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 356.6 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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6f164caeac942472d7d7adf396e7fc96b25c3ac1b849e7aa3bdb2c3f6d3fc5f2
MD5 bd98bdf81230a5fef698892013a79a84
BLAKE2b-256 0e7bee0c7615ac950eca57591bca449e4cf3152dde92c8f0ac2158d38c1bbc39

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 123f4416cbfae6be6662f0b1a961588ea9a66395776cf87f136ac537a05d9b3e
MD5 2bd346f783397c7ac6a15d2de205829a
BLAKE2b-256 79cffa9b11f82d0f0babdb8ba9248f4495caf306449f436766620ba9510be27e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4711005c20ba0d3ed171031517872ffd679da8414b0986917773b283b8d79348
MD5 abaed088f1f3f45849caa663a3563723
BLAKE2b-256 e8342f07ec9d86321e383451fbc390cdc4da208a34f10112799d5c5d14821e2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 401e40401f0d7369393c41d2aed5dfeee9f41b60a6587377ae2e5fae0623b357
MD5 776ea70ec170df1b492e79adfb72bb13
BLAKE2b-256 52fc23abd000432c800fe03598fb3177203424c5722d40949d9f19f4c5566920

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13d10b1a0f26c87317e8b1d7506b5a89dbacb6f4448758ac651cd7ef74ebb7fa
MD5 fdc19547070fccf6560ba19a20eeb729
BLAKE2b-256 668faa9c5fbb1b8ba9f3c5afeda39967142f42062421d9098bc9484d791b2ea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 133677fbf3f7a1a6ddfaacba67981cf88c3054b8469c9a738207de1b34b61f86
MD5 b4267e367cb118028074ef4b56f3399d
BLAKE2b-256 faac64aa867de38a82aecc7136c8720ebce3a410e82860ae23eebaa6dc8cc62b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46b8680bdf421686af64b0bd793a6e3b61a0aef4517d862ca1be7ebd24430c06
MD5 3bf3918430c43219f034045542012601
BLAKE2b-256 84fc567e45846dbc180c2f940e43b06536e5105028a1d9e7843d6763d4ff5e18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da6bb81a308727dbef0f32720f3a2069e2f7b280f109cbf3f2501a812cfe3508
MD5 d87dd28566af4767e0d93735a5575f72
BLAKE2b-256 e0464d3b40c4148ae787fd33139532d9e4f3336733512fd9109d8abbab6f1f73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66bd8bee7894979b494690cba986d54f49361382c563da2bd6ddd2a38723b714
MD5 bc08df684e2540e898a685d2926eb67e
BLAKE2b-256 55144ee03598858125bda6910310ea9f38c0bb00d87e6366316c90ec8be0d59e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4fecaa605fc576effa6218c6034d1798f643b523b6d93babaf69048bf08e900e
MD5 fce453e73bdd53547284c3a45f951c75
BLAKE2b-256 ba7f6d6ae758de26e53bfe26839a6bd6dba17a285c6f7ea8ff0e30bfe5f43ed5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fd2708627d554d662fd1c556d29ba39403ec1e33e3f7669b445e7e5f88931f3
MD5 8b0ead570874442aee152c1b50787c94
BLAKE2b-256 d2166401037f995d22162cc4a611fbe5d643332bbb3ed736af75e2f117e6196b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08086a397562f2eba4b4c9d8b82f489d6532d0fe15bb47e24e8ef073f6f8eab8
MD5 6ab731a38919a49aeeff20c1cdc5c1c7
BLAKE2b-256 e5abc1e9b9f05d42c507b92058747e3904ef644327bbaf67db700d1b91ce258c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 348.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.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c1b392cc02ece642ffc7a8b9ef646b841074a40e2875634fe4a9217b463bf715
MD5 97bf3f9a131bc62e82125b399e454207
BLAKE2b-256 ab0823086e0b645c0472906b81ece9eaacb9e717528f2e4deed13c998ce90cbb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 357.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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 acdc2f88e2f74f1c908d9f591f045daad3d6b5184a2bd655b4c053da83197a6e
MD5 c650b93855e4b12b7e5ee163f0c26a40
BLAKE2b-256 5d07a0c6129e73b4a76ca49a84d4abcee24a00bf4f27b8870c17ebe96c72fff5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 335.6 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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d85a9dd008adc78cf8c6b283c591475b0d030962a65abb6f043ec07842d4a236
MD5 d9176d497c9bc75f1616e484c0bd14bf
BLAKE2b-256 9b6ef8becf2fdddb308b29c8468f2afc2769f22e14a3678ec92cf37040551684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 199e51ec1f04bfa3285ef331d3653bd8298877cc4debfcc1db8a713d432d1c7b
MD5 310605c2a00fb9961ead318f3a0f53ff
BLAKE2b-256 76e4601096c1066f0be93df9d4a54d4e2532e8d4c4f731569a8ea5b43945ddff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dd56a84ba49e399c6d1219e4e0c9c3ad89ecd45c5828410158b30a8a515dc184
MD5 9607468cedf5c19a7d6d9dc6d8ffd594
BLAKE2b-256 0dcb23f084063df44b6dfb563286e8318da639d3f35c0eb7f8713a2b3b5e63be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae72d9b75153769ccfdb0742533249dc986376d50057d9bed5fd194e4b4925f9
MD5 e3f2528fe4ebe03780ee120df2597584
BLAKE2b-256 751d4aac7ade567fc1a440d5f27c718b14697b122473ed8113fb6636289ec640

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 758876943fb686e2b0eef220c991a6b260d76b08edb79b4452831546ae5fdff9
MD5 6ac249bda37ea1c419361bdb5a7059ae
BLAKE2b-256 8b69925e1ff2d45624c17a6eec01bcb2702138d8a4053220b32246fb25ef9a09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4496afc0756ee5448ddd4c1ecd068ceb87c881f87c45ea181d8499b6ca25d6c
MD5 4844a7a3a563571220931492865ddfe9
BLAKE2b-256 661d5295f16092f580cc02221f07de5ebec5db28f4edb6ff12b550ae3f333133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 381a18b3fe0180a1efe7b8d2c93344e71397d2bb1d409dd32e18133b92ab7311
MD5 3902eb91daaf93bec19d6b4e1a449b12
BLAKE2b-256 ce6b8c1e6382f6f6636dcf4a2b7636ae650101fdc2ffaa89886040ba10297145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e40d6443a7bd4009837861f12e064de3fab5a66a9f0d151c9916a89049ce042
MD5 e7486247219a2a791f07013a78d48109
BLAKE2b-256 73525bba5ca86e704173769977feabed5ad5387aa57f6985b406c155f0dbf7f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cac4386d21f9703fdf2eec70af5d9c401c742d9a249cc7ce62978eec280f4b16
MD5 3349346daf759d7ab9c2fbc064a24e98
BLAKE2b-256 741455d6f4ea02ce572afa53cafd6b157cea1a49503d8fec1225ee6ac7148ce1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0269f62d931a85ff8bdc788b94169ca59e6b228e87676ef49281abe2d531a55
MD5 c344a4017704485e4a520a2481547e0b
BLAKE2b-256 cedd1fe37f2b18e496994b2f42b5f79d83ca5683c27eee8762b44a4b9f56059d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d58f14891c9e9a93cf4e874e07e340f5d4f8fcdc601eb432f5ad8ebc97d0e0c0
MD5 9d93bc3e4cd764800c807a74b4a82f96
BLAKE2b-256 26e77feede21ac8e4b649a11a016eccb1279c62a8e58557075548c127c84d264

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 348.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.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0704edb0604730c702c92c97d4a34359de5471e30eecc30dbf0179dca7618034
MD5 a3013a1be0235a81194674bbf1316ffe
BLAKE2b-256 a38bdd4ff0ccf8a707da4d3dd0a22cdf5b02349b4a41923a013dad8ee1fccc96

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 357.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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 647bdcba2dfe15e41c1d11cf7ae12cbf644c17cd037ba440d5d68a313ea0563f
MD5 abccc81b0a2392f218841f2dbb3b2366
BLAKE2b-256 e3f4b5887fa1a038a4dc2efad3764ad927d159e71027d5b30edca373ee0d16fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 336.1 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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 380883c3624cd5253050ba73bf52e0f686857afe185d3de8a4af0c12bd1ef3a0
MD5 9152051d9a6759cab45125fe3bcbaa93
BLAKE2b-256 cbcc8bff9a270c49df68e184a026318942670f41cbeed9aecdc637e82abe6ad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1a16c40ddf7830328c60109171bb1992fc393985f14116c4788dbb41de749601
MD5 7e10380177ea384d3090b3f47ce450c2
BLAKE2b-256 da7f5eeb8effb467f078f489e0307525afae25e31294d573ea135a9be57545a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c266cd317bede6774a141bc4b4e3815216b283b304c081b5e03b86135d5a0789
MD5 ec2f9b57f97391f6d4694259ea13c220
BLAKE2b-256 7de850da66a681b1c77e77847da7416325a531c9d3af182f183f0326bbcfc20a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fa81e853b82703173b1c2d411f592dfcd2a0d3729c1a405cfac5ee0c7471218
MD5 4f17dbd23740289f3583f3637429bff3
BLAKE2b-256 c35eba0514dbdd78b78e829882614da9560de3fea0899636f0e9e0ea32d0663c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0e826466a143c106b364669708b0af32ab20a6684e01a47ea71273a051fe9b9
MD5 49e82c8ec1eb372bad63dd7035ab5e36
BLAKE2b-256 37977ecedb5ed144d782ba0ac66d04de8dacea32c2c69e6a514271086bb91c79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90977f5f2ec883de321d7cb274ebae9d5c56227e29ae2a9c746072b348374361
MD5 673c788abbc611323781c7df632ed850
BLAKE2b-256 c183fdaf3842a49cd3621657f9ee089f13f4813a8d7c01e5b3ba409e3d72ee04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11d8e2ca202dff1e9b275c7678ce02000360ea0e37d98e04a64d32cb8436359b
MD5 b2011bb15e89b32f85c2e1259f85b152
BLAKE2b-256 7fa30d62e7624ed7988de2263708184fe6babf005f9092f6cc16b2e5a95a8bb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a48d5a7836d6d37eaf7c7bf245a63cc275b280c0386cad883182ba9721994e71
MD5 020db0ba78e3e779a9f30f3facd0d0cf
BLAKE2b-256 ccce9d5f029aec9c5cf6a850112318e2e30158704c433a13b3a6f8aab57949d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b4b5dea5bcb68383adf24f7c6795fa779141e15bb62ab6cb307d8741e94e4567
MD5 7fd4c5afc521da2c64a59acf94612417
BLAKE2b-256 463c9b85334c49936ad358ee89d1e4d6cb6fec0eb7ae0be85466cc10535f3d43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25f262fb33eaa14e16a8bedfa3392a43168b05ab20d81a0d5d0607353a33dc3c
MD5 c3952d4e8f84935d7e3f3e8e43a0a969
BLAKE2b-256 ce204c7bb372658810b455b1af9f899a5dd6cbd5ee021462dab83f0f7ce7a953

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e457eaf060b5e4514cfb40b9dac33d1fa52e563c8c9794edcf343c2758c1c6fe
MD5 89ea43770cfeea2787e1e6a898ab1e3d
BLAKE2b-256 f4fd8e5720e7f037cdf7bd7b7102247261c503619e66856076649c42fb53c4b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 352.1 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.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2db627cca63857401f09225d914c84ff4614aef734e6ff07ddfdb29fd7943a0d
MD5 a134c654ea694b9a119948e781e5234b
BLAKE2b-256 6d596079a4867ac993351ed62160f1eadedc036801b68307ad205f066b9d655b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 359.3 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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e3896d52795028d901c9e634778bebe1dc69b660e4f01ac68fc2ea99fca3e1ad
MD5 e41b6298c7f42b09ef7f9876503d96fd
BLAKE2b-256 220bd227232a292ecad39cb5f7ac815852a4483bc5f9780a2e1bcb9f63875594

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2941a1a237c26053e67ebe0bddc8952f64823bee0dc550b4173c049f8d1ca29d
MD5 b79065c937a79c8a3633363723161fe1
BLAKE2b-256 c775ddf43e008e3ef5ab7c70a7e84096bc5a16aa9789afd0d71597c153c03843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b1c06e7a100cbce3b2a484d6cdf80a80f1eac95f982bbab20d726514ef97d08
MD5 947b811f93629e2659f18e801e2d3904
BLAKE2b-256 d5bf8bfa40d883b86f65328f3a02d530d68220c6ebeb78d01438af6f7e177639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7998c85b52dc03f89987ec36af04b14ea23da186fd14bd02934e9b5c56ec47d9
MD5 4da9cb5dbc4bf398d5577259b68842a2
BLAKE2b-256 520fa3f582f72ce4e59e3c17525697e6790a6cdb192d58f0f35944c8f676450e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 122aaca9591c1868efd90a994d4f67ec0b870e84c82466447942610ac5724396
MD5 febfde6e1c29eb93ad53ce58edc23859
BLAKE2b-256 ad9da8ee2948fd248a7e3d758bc26e3849c091f9fb1d9e6a2290c75a5f4f951f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 befd6762700d94500a88b3dba1423e083a240f52b4fa9c4470dce111713f231c
MD5 e5e35c36e03fc431bf272f4b15e0c6b7
BLAKE2b-256 e51908c422e09f1e9d76635af05baebad03111ff9b395772e1f1f67e77009fe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b11bf018fe73047302ea1e3600826214a9593cc322162b43d8b9ea7134c8720a
MD5 bfb9893a2a57231798d515f3387af232
BLAKE2b-256 d6b50b6e63b7c433b7f49671ecce8ef0ac3a863bbd983ea3a95fbc9034ef53f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60facc2b33437e10150093dd3babe15bda0e7b09971dd99bba737b7e65ce8e3c
MD5 c33aba3fa64b966e6d5243b0b61b5f02
BLAKE2b-256 77b2df4ec49e09f6f0d5046b07b956ecabfb9a25feec4e5c4145128f6ddd85e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c9b3a990253e74f004441aeee4cf1b874dfc9621a253b83b1667b430934aebe
MD5 b0df5d0a31194854d37a87880a99f9d3
BLAKE2b-256 a637bd9e6dfa32bed142d1157279143bc70af4a70c5953c3abdec7300e099cdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4c14aaad7aab2f4fa6604d05c51441f7fd8f54c2f313dfa0520f74fd077fcfe
MD5 dc67df9dfcf1df403b1e501c2d094de0
BLAKE2b-256 4d0d68edd905b0bfcf37607c0af11769d46c14e6e0141af9f2b1eb79c759a405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb26e648f795c5ef774b355ccf8cb438984a6053709839ca8ba5655a6b5fadb3
MD5 3f0f3a5cfdae04f853f2e89f25731a00
BLAKE2b-256 d06efaac15b7c5a9ae6be26659d2e7b3742040dbc920f681babe42c721bee3c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e429746b8c874fed9498df319862b25892a233bdd1bb4a19732f70d0644292c2
MD5 457e2d5a7b9b565d4abdd4256a71ebdc
BLAKE2b-256 862e8460cfc2d6b173419fe18dc288f6a4159b7507aaf75c80c6b5239632a413

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 351.7 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.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 37dc7167f1e3141b79a17bfea878034dce0a8da80ee309d207dc8c326e7461da
MD5 05744578e7c4731ff69e166b51a4b44d
BLAKE2b-256 bbf0d87f7608118c789d7ecdd7982c81f7692c0384779618c7354a2c6ea73169

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3b9243779db99f12c3c1e4c98eca72a7e743db18d5c3b0ccbf11ac6e18000d72
MD5 7e40df3229ad0292fbb078cd21a07dcf
BLAKE2b-256 02879e47008e2baeacfd19f59881e62be4fc481725657e1356fa72f34ff8ff5a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 341.3 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.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8f61dd39aedd12cc63a4edba20c7727fa033b24f60ec8995fafae688e14ef322
MD5 07ab46c7a1c07d322ed1a5e7788fa5e5
BLAKE2b-256 981ae91c8e1ba1da8e5717c89420bc7a25c7e00ded2b4f71d9a55eee3ff89df0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d344eb7a2c7464325f17ef484b8640c0f1f03d59ea44665e77be9608cbc7e99
MD5 13053b52b8459e53ed7989b8976c9dc4
BLAKE2b-256 2abd476661bd5488502868c9e73ee5f3e8d1b5434fac0b4b977f441dc7886644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b7d90935d5d2d92006d39c63e299fdc68bf33ea9300c90da4c5c4a51a241b634
MD5 3ca16f476ac1d53ebd28b9047ad82817
BLAKE2b-256 ed3ebe492fd194d347ccbf27901d555b400965bb48891356e1ee6b24fa6c1b33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8306eba069ee8c296c6529484106397fcd35aebdfccdd25e42fe1c7bca4f7e39
MD5 c908c94a3b501ee1af91c39713894430
BLAKE2b-256 aaf8715ec8e92d48702beaa60e143ab350e64e86027d00c97561a4f54f760d80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10b7a533bcf400af083920384aebe146439583e3e741b83e02e968b723fa8b3c
MD5 bff161dd2840fac8816b37985900943e
BLAKE2b-256 286b2c864a2c73653c992b7937ad4086d543c38c80e5ddfd78a63d7f77bf3525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8aa6285ed016115c0ed1313abc7008d522af16815f5eb991aec20266cc1db573
MD5 ffa7a3e42f4199fdc82c75aaae202be3
BLAKE2b-256 422fb1cc6cf9846364c30c67dde0a6e72585fb6966676ee008da6208f40bd60d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a55169c40816bdf7eff3a839054dc4ff6437d36e2644b46a98603e8e7b8762a
MD5 0a42f08bc26b90d93cc5692f49c91f60
BLAKE2b-256 667e912bcd9c7c31323cd8528ee5067cb0f111d33b7aa8256f7b066e895ffb7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2da5a9f6c6a0904b316cd444fc6dea059357b6968c1b1bb6c3be2ab06c76c38a
MD5 400038c4b5a67c24473a300a8db6004a
BLAKE2b-256 ee187bb98f9d9c51b02be4addcc89a20cd6ad6475d1f3a93329c6108d11af005

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ecdf691ac6956105962a5e853ad71b9399563ba376071c3f5a5db5621f9c2c9
MD5 f30e663789c879c256ad0fc80f7ff178
BLAKE2b-256 f26664f01f8c7cb08a6bf230827cc8858f97bab59b3b535338b12c4ee032560b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 181e4b8baabb9358253126c4e3c641930be27f49a15f8f9e05d214e91fa4b08c
MD5 88f3124e860ce8d29884f670f7081235
BLAKE2b-256 9df3111047af0a4830cdbaa359b33e77e039751fe72ee3f07bab00f14a2b440d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3fd437e590b66898f72432681ce7786e784aabcba9d172bc2d51ff13104dc30
MD5 42c21da6ebecf67dd74a18c60a57f6c5
BLAKE2b-256 9b65c844e2fc4d718a273810bc1d83264cf7599616148910ef25e7b91da311e9

See more details on using hashes here.

Provenance

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