Skip to main content

Format-preserving TOML parser

Project description

tomledit

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

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

Quick start

Given a TOML file like this:

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

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

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

from pathlib import Path

from tomledit import Document

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

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

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

The result:

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

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

Truth in advertising

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

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

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

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

The item that performs the mutation stays valid, so chaining works fine:

arr = doc["arr"]
arr.append("c")
arr.append("d")   # 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.5.0.tar.gz (46.5 kB view details)

Uploaded Source

Built Distributions

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

tomledit-0.5.0-cp314-cp314-win_arm64.whl (353.7 kB view details)

Uploaded CPython 3.14Windows ARM64

tomledit-0.5.0-cp314-cp314-win_amd64.whl (363.3 kB view details)

Uploaded CPython 3.14Windows x86-64

tomledit-0.5.0-cp314-cp314-win32.whl (339.4 kB view details)

Uploaded CPython 3.14Windows x86

tomledit-0.5.0-cp314-cp314-musllinux_1_1_x86_64.whl (739.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tomledit-0.5.0-cp314-cp314-musllinux_1_1_aarch64.whl (703.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tomledit-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tomledit-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (565.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

tomledit-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (678.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

tomledit-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

tomledit-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (527.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

tomledit-0.5.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (574.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

tomledit-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (485.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tomledit-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tomledit-0.5.0-cp313-cp313-win_arm64.whl (354.2 kB view details)

Uploaded CPython 3.13Windows ARM64

tomledit-0.5.0-cp313-cp313-win_amd64.whl (364.5 kB view details)

Uploaded CPython 3.13Windows x86-64

tomledit-0.5.0-cp313-cp313-win32.whl (341.0 kB view details)

Uploaded CPython 3.13Windows x86

tomledit-0.5.0-cp313-cp313-musllinux_1_1_x86_64.whl (741.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tomledit-0.5.0-cp313-cp313-musllinux_1_1_aarch64.whl (704.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tomledit-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tomledit-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (565.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

tomledit-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

tomledit-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

tomledit-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

tomledit-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (575.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

tomledit-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (486.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tomledit-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl (492.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tomledit-0.5.0-cp312-cp312-win_arm64.whl (354.7 kB view details)

Uploaded CPython 3.12Windows ARM64

tomledit-0.5.0-cp312-cp312-win_amd64.whl (364.8 kB view details)

Uploaded CPython 3.12Windows x86-64

tomledit-0.5.0-cp312-cp312-win32.whl (341.4 kB view details)

Uploaded CPython 3.12Windows x86

tomledit-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl (741.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tomledit-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl (705.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tomledit-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tomledit-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (566.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tomledit-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (678.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tomledit-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (533.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tomledit-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (529.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tomledit-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (575.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tomledit-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (487.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tomledit-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (493.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tomledit-0.5.0-cp311-cp311-win_arm64.whl (356.9 kB view details)

Uploaded CPython 3.11Windows ARM64

tomledit-0.5.0-cp311-cp311-win_amd64.whl (366.2 kB view details)

Uploaded CPython 3.11Windows x86-64

tomledit-0.5.0-cp311-cp311-win32.whl (346.9 kB view details)

Uploaded CPython 3.11Windows x86

tomledit-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl (745.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tomledit-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl (709.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tomledit-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tomledit-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (568.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tomledit-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (682.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tomledit-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (537.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tomledit-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tomledit-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (584.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tomledit-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (493.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tomledit-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (499.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tomledit-0.5.0-cp310-cp310-win_arm64.whl (356.7 kB view details)

Uploaded CPython 3.10Windows ARM64

tomledit-0.5.0-cp310-cp310-win_amd64.whl (365.9 kB view details)

Uploaded CPython 3.10Windows x86-64

tomledit-0.5.0-cp310-cp310-win32.whl (346.7 kB view details)

Uploaded CPython 3.10Windows x86

tomledit-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl (745.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tomledit-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl (709.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tomledit-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tomledit-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (568.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tomledit-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (681.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tomledit-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (537.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tomledit-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (532.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tomledit-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (584.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tomledit-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (493.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tomledit-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl (499.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-0.5.0.tar.gz
Algorithm Hash digest
SHA256 e49bd238790d41251d76f4c7929c72822d0dc227549d2886273035d77e84eee8
MD5 d7d6d9122de8b490fe36d43d6acc4877
BLAKE2b-256 f140ed3dea985909631db26a6d9c20a762bfbd3c4c7c5494de5bf16c6435c33a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1605eff8142bddc57e0ab8b49cc30626a30be3aa16751de49782290b630b0e14
MD5 441c8fa990192aefe26a2f248d738e09
BLAKE2b-256 4f86dbe488a3fb25fa7b715710f922ca7c19b3e1cd871c680068db3df05abf6a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 363.3 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.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 435e16404a39ae8df08159311be0551a5d709cc4f07a2fb568a55ca84d1630da
MD5 3e2f239bca54a54355c2766e2684a800
BLAKE2b-256 16b263fa004314d12a46778a60bede087fc977ebbf9915d1bb63f18d112b4ab7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 339.4 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.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7fb9442956cfa2ca6fec6dee79b0fe9892775a5590bd9b3d19cf79dd2775adf0
MD5 d300c9c616ee9580645eaf4bc8349247
BLAKE2b-256 0d414013e61a21d6f46014a2cc2de62083f6b5fea64284e4dfe1947d06e78ed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8101b59d316875c1e9d8aa0476a431c446d0c42bd9fe9da647cd1c90498a468b
MD5 6eecd4219621f40f57c7a1a926f1735b
BLAKE2b-256 6914b988b76bfbcdf00ff07dcd2ee211cf33cf653a5a05f3f8d7100b8a63e7bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 df00941766ed5e4a92360bcffdce48da15c19e8caf2041df2d08ea49db4bd831
MD5 1b23393a9691d05cf75f5b6a5d91cfef
BLAKE2b-256 5b4bc3f3736114480dbe7a549510cdf3a86481494777a348a4371cccf98f9493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc59223027f5dc5e5687807ccc7165bb932a777c9cba831ba665085fec468698
MD5 43c0b5d89c74647351b454a13538b989
BLAKE2b-256 97424fc228ba66fb9e44bf249d643d09e071a69376b1a809fc7b5fccc41107dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 168d35900335a6f3ee018b27e73f9023bf1bcaa97465bb19f22ca84f7b109c8c
MD5 7348ce41f06c580976121ec46a37bf99
BLAKE2b-256 45523ec9fb455265da12f13dcdeb65129c00eea0964c408f2742226d4f4cdab2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a13fa88f520bec2f62c830aaab2b67c9261728c99c473c15615c454268bf1752
MD5 c38e5a83aeff492ad142c9cf18e30408
BLAKE2b-256 58c836e09226d6f9d5f988c0aa4bdf1ad569df290894dcb578ece6a0d575d369

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de639ee02a022c995d6dba283fc4eedfb7147efff36525f5ac39d971c46c7a3d
MD5 bc453f8b9dab811e712f7dcd72c8993f
BLAKE2b-256 bb889df88432b388a088ef52611f282f902c0c76f1543ce28d1fe6abe5ecb2e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ba30934e957796346f22d3328dd6067abb562877418b0af2859532c5a6501a6
MD5 94063eb75cd47e024e1c4d5cf3294e5a
BLAKE2b-256 b178fb44b6b95de97cf7462efdbe0357131d0843ce8e838fd94fe6992c6b000a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d416e25e0577dd5e008c793d245cf88322940b5d50e7af2c2ed7251bc442ffaf
MD5 e1315c9d8383337c493e430d6f677877
BLAKE2b-256 72a9f9afe10e2ff8b12e74db27e988b7c9fc683717752625110706cdd6e3ca31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f87504f719d1a16c51ad9d5224172767a7993bc7a3f32b05ab8ba1b4ab7c72df
MD5 0f60419eeba00c263c49398dba6bf697
BLAKE2b-256 35297b7cbb4785610ac250a203bee997ceaeb1ce05c50ff07823d3b9767cf222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 233ebb4f347ec5a3c9fc16f05cd8a63ea09978744819538795d9d11d5e892f44
MD5 fdb9ea3e76fb5a0cda3e8aaffa194bf0
BLAKE2b-256 4f840febc1ff9625028621fe7c2167e538c9edb75a86034e44747af4f9ff7152

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 354.2 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.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6d2b9ede0480750ab355bbb28eeac51c41e48967af1095bedc0c66707420462d
MD5 0aa38289fe8db910b4f728ca32b5e704
BLAKE2b-256 226e87e22352f24db9240bd8f51414936626222f0f31c0e56e1ffe334764591a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 364.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.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c6f15aa845b1552a0d491c04fc5975911ec853a56620b22b95b8766c79655599
MD5 27dcd77c4a638cb840b860b75a643984
BLAKE2b-256 37622555e0bb7a88abf704cbdb19aa93b8b145b064797cb65bb50c03d28da329

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 341.0 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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 82943e377272f875010d73e12b49ecc65254ce2c2a155d6e8e6c17e8a2b112a3
MD5 782fdc0b0ec2720e42c23c469125a6d8
BLAKE2b-256 4fc28b3070f809c71da01f10021a3428eda488ca483991ade8f6af4f05286383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 91bedc56a0d802b27e0114f8eeb5c46ab656e51ccb26d85064b84d1c685ff112
MD5 0e5bd8a787d3be3d79c4f6ffb7992e24
BLAKE2b-256 8cb3eaf621a12b2a6397d80f605db2732340e8cc19621d1e45aeabc8df1ed6d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 29d2153fc36a0da831f3ae814912744427dfa20ea36b6d66f5460572a511db4d
MD5 1095c12794d49ca2275e35d441be34d4
BLAKE2b-256 ab6145f4658579fe68d49d1bf12c44898ec3552c9e82e5b83a719ac80a0b5807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c85f98824d79d0300b03fc077bcdfc952599e96099fbe2e72b8dae6afec9d537
MD5 8d1db18940dbb5fa1a896f1df1bab391
BLAKE2b-256 3334a1804fd8348cad9d9ae264ac36247e0734286bd2ab86e966fe9a76b92d0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 015af6299c6af52ed5874af02c70251fa3c8eaeb194837af6ac8ee81487b4a13
MD5 6c679c6bfde59e88775c9c5c56ac7c50
BLAKE2b-256 a72031387a90983a1e962b08744aa2e2df02573685120cf29293f71d3300c5ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74106748538e2ac5bfe518153805ecfe1517e09cbd89c016bc20c6b2f9868c2c
MD5 f7f358ac4d228a92be97b985d0663b6f
BLAKE2b-256 b5e5645c2dab0cf2d11baf8d5c82798160da3256c35fb228417dd157e60db00b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab608f9c0f08f8b84cac3da436fe453d451a0a55283fb71f8a9737cdbebcc48f
MD5 14c0d75efc908d8e6e87e40c77608978
BLAKE2b-256 0108369e013c2d555f893b4e7e22647ef961f781eb361d0fd4c487fa262ba2f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79b2947c25aafffa3b08437e70c41c06cec1a8615014bbdcd32e929cbd5ea985
MD5 bd0cb51a4e706b911dedf5f9814d0db9
BLAKE2b-256 d1e48a690369629507aba537ad672e18ecf95ebbbc3392d8bf4d5efd8f33936a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af37827020419bd4dab6655d49492bf5945cef7e43c40c61063906256c7d5f5f
MD5 58950c14f34f74ea20c42c0fc8f2e3b3
BLAKE2b-256 c6b1df70c81283ad857d04dd9ea38e5b35f1915afa87ea38e939d26812949989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7cac3db632218bcaabeb7306134f46122ddeaa7821c9deb2dfb50875cb8e5bb
MD5 d03e80abfce9c391d4952c1feebd76d7
BLAKE2b-256 c7e6401a428697189a1d578f73e8e41d80a16674e81a29b7c0f1896c48e47357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9d1ee479555060a1f94ad29c3e619be620e386d99add64d1a825e3dd56d95c5
MD5 888d4d688dd21417b84b1908cbe0e89f
BLAKE2b-256 87ffd9f99eabf3f010be38b66c537cf97e1c132cafc869b3f755a0edf47dbb78

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 354.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.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b58ed6a0669d7762165891a7a8d909d926b369a8ac82129371aa6653da527641
MD5 09ca3e291defaf1d2c9fe5317ce85571
BLAKE2b-256 5065a91b8d43145a22b234b0565d1a8397e28563b823d26174a53e648732ba09

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 364.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.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1300265909a73f932e06a10692a0e243f30af78756fa2d7c1171e9491cc424a8
MD5 810ba6deaa23ac6aa841eb19e12efabe
BLAKE2b-256 6278d72e412797926389b7e4bd66e25159a61de52492196cc53d1a9e3f2a72f9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 051345f199abd8df982be2abe5a8e80086c3b4be35cc1e061859e5ebce345cd9
MD5 32e08b364a400b1ace9fb8fba55f4c7e
BLAKE2b-256 543a24b7ae62df0ac48edda271f3bd7810aa6e5b762325bd1f9ed40b9a4f45dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 13dfc7f2f918ff943059c595ef49e0732f97abff404b598c4eaaa04ac4e8ab38
MD5 86e27b6aaf1b2a8b173428cfaeae9774
BLAKE2b-256 889b15e95c27be4fb373347b444c33c628e8e6b0ebd7383fea425766c3a7a24b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 643074c8b68d6fa469329ccbead7a10d3db847ab87cba3dbd68c95886e09f267
MD5 0f81e16632d10b6433f6df7b6c010177
BLAKE2b-256 9f4256421bb75611014c704918136cdadaa990b75757fad2e690591b06780bc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28c75ac575c2cf9ff05ceaa09c1b788c8158e5baa2cb67b146a81e25f893d2d5
MD5 40bbae863a0877d1aac9a24cc7f8c2b8
BLAKE2b-256 e2828582ee60ea6638f40bf908320e532898ac828a0e5219b702fb298e9a3b67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c47913e2430a1ed7e670c4c82194c9f51026b7e29bdf5c94c421ca6f58442da
MD5 cd2a0ebbc935d8f60fe8f5f27bb9b40b
BLAKE2b-256 f3de864e64da3418da63e076e0ba0adb43cb166c093492ec04dc7f136045a92f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c502c4bf766b9d88d427ac55387eb92d248a8c537588572b2dd2c1f18561d297
MD5 6e066e6dc61b614594762faec7254d42
BLAKE2b-256 aba4c1d035e47a39b9ab86f534fa563ff08c64e356440497b1685f9a7d125aab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0dc004bf3227976920eb7fc75aaea74fbc55b16047640799c1d2e2637e00240d
MD5 2ff2f3da52a720c83ba20235e674af08
BLAKE2b-256 54cad097338f9ef1a6ee693c62547994828d95967ec0d6a8c2f0c6a74e322c53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6a63ea0a15c88fd194a2bd2d2cc8527dfda1e988eddd299533e287af6ef5c8c
MD5 836e2ac4ac51eaf9d70faf55f308bd6b
BLAKE2b-256 070380641d707a03b3761aa9d38dbd355a09cf059023eb2275eb04893506476c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0113f28811d7a7c6c5b23b3a90efd31efbbb63d41a955bbde57c3b9d8e80d3f
MD5 8c0096bae1d70bd1f24c4cbb5146d842
BLAKE2b-256 b525be68bbb57bcd1a24c3d518e8ac3f5211002e4244b726d79f49d3c3e7c359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8224880ebde651b433e96bb4dfba6e544aecb2ad596f1311f93ac282ca21feb
MD5 466dbb954bcf1bffcc5a3057312d3863
BLAKE2b-256 659a0da8333653da211f4188e685e21c5852c395ec33d5e9b09ecf0a280ea8f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18aa33c309fb09337bca2757903cbc9476bdc7a8cb70d81360c03a365be8c7db
MD5 ef9bdaf26db796f25db043798242a4f4
BLAKE2b-256 1b19196d6b371d3def78db3ddb2c4849723be3f8b360d3fc7e8841c211ca6d97

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 356.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.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6075a742652b6a9518e8664e6f7dce70a6eb85f371640825ac07e12d80690b1c
MD5 c0918cfbd64864891f1ba39dfa44d796
BLAKE2b-256 7b98639cc02d6bd08ad72aa2c82816b022d67a8449f1caac8d5a0ad52aaeac0b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 366.2 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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bace899b915b6a6a8640b7e27196202dd4ccf81047f312b887422dd7b636b5a
MD5 7b3d6856a150893df5089b8e065c013b
BLAKE2b-256 b3e486d5ec5824a9f5f4063b39f469080744a99283cfb35a690e776bbba2ed8e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 346.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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3a7de4bdf06f13b155a3f1c1a7e491630f2efafdf2ed46aedaf32b82301f5999
MD5 f7fc79e137f48b5bb1ede8b81455e619
BLAKE2b-256 c2c63eef80efde7a90363cdfc406a935af7a456bf413062fb496019054885686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 620bc78a7566f64a489831719a390e3141932ee12aa94925d9fdc011e5570a2d
MD5 650246b4fa7415fc18fe1bdf9af9294e
BLAKE2b-256 7f7ed584439d1607c5be7da80e3144d6981ca350e701d5f510360e01929d2f27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d93c01c7b6b6f5a6124abdb78b3cdacbcb128be7630656295ee24e6bf5cb4643
MD5 fb889c6442b78c27224c4f6eb8d358da
BLAKE2b-256 e6cd12fbf246238f1267983e5e99dd61900eb4916c15e407bf0f8591734b0c36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf5e581a7f57cdae5b965c5b329cdd72b0e3982d79f251f576bad4313448e8c2
MD5 81a1bb24ade45852fa92a7c36b8f5fee
BLAKE2b-256 94be186fbf1732c811352100900aaff16640f729af3fc2096f4a4762f2c76d1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7410caad548d1103e113d2e6f117fc47b36737f852e6a37d8731015e778c051
MD5 fedbbcbc4ae588ff9327c28bb83c4839
BLAKE2b-256 6a28f0d112f13831b5a71ed88239956962467e6abd06b3593b8835a06c988817

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a47086a89b4546c4b6eefad52bd3e756eb505cde6384125c18fef182bec4aaf2
MD5 e0689425e2fcba0ab223ea01921f7d45
BLAKE2b-256 d29143fcbe59f2b65f16141357e5256472e1646370c9c69d5df84d1e85adfe49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 703f0acdbcc7113b3da353f3473dc71b6940955d28e7f0e65bcb2759899b04c7
MD5 688b38d1315acefac8ed6bafe82deced
BLAKE2b-256 48429fd4d79986dee728821091cce3b01a1687207d8494dae08cf884194bd752

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c3a0c61c0a29143117d9b90ab4ce4f9fe1a0b941db37f22f5ed8372763bee38
MD5 a20d0f93081a28fcae876c23e936b999
BLAKE2b-256 c43c009e22348a2fb476adf46dd9817030d1cd9690d2c2b847cb14bd2023b75b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6080b118897082cf4610673788c5e75f7de2fc3e4aca9d8d17bcce8dddd83ea5
MD5 b023b83320c099adb3e79794a45934fc
BLAKE2b-256 4ee688d63bbdb3af5c13108593699754c3040db4a70aaee7dcca2d313e433571

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b55ea017faf2ed2683ed563bbed825093ac203fa628ee8c97eecfbf9103a93e
MD5 b4a0f62ea0cc3d3b9116e4e7967e9601
BLAKE2b-256 8dc21c4cb60939a9171e8b5e9532244909184ddb17deb661d70438c730136e55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac37304193db46f7ce80a5ec332587e613589260e67936b5f4434f2f4fdd46a1
MD5 1e202e0cece00505d4c49c1be29f4cfa
BLAKE2b-256 b13689dc860269980157bb5f7c93e74a75be19fdc8b5d7589739ca66b1842377

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 356.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.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 726316610cf997ab2636fd925b9e4c972f20ef453ef253b63f658fa4f7ece26f
MD5 16985a1cae8b91fada652947a2486cd8
BLAKE2b-256 0f5ad430035d7f43f2a79469f57b9afd4c6b1f6e309cdf5070b8620d4e12bbe9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 365.9 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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 061c7bdd81f4b5dc4d5db671df05934956cd7921629791f33aaa99cbc3c9a5c5
MD5 38b9bc1419a1ec31dbb757d0fc1d338b
BLAKE2b-256 2479a2f582c48eb9231c9ffa44b7586603f391775590148b3c76187e426a8747

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 15f3bae413f3988f6741d35c106d23b2658607bdfe93f4b6b34e38e654db4834
MD5 36f8b933de3662bf749de77f9bd84477
BLAKE2b-256 b42497c3675c4c0f99dd198553927bcef367cca455f9372311ebcda33766821a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7ff53dc9a58afa10ff6bbe9de0b2bcabef73d5e5b31bd0a683de0121a5467efd
MD5 44349a1d327a7cbc91ee6f85b0bdb683
BLAKE2b-256 b7afe6457ee3bee2628355560a40902dea53a4eef918c919f374c17907f83104

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9157b19f5f01afee0559d9c139f1d2d84f83b8ab704b3a93fcffff890272954
MD5 5c0e3d8f860f9229e06710c50de4e590
BLAKE2b-256 caa77dfb338c695ab2e918a5fd2be87f439d07b139a9e200bfb3fb2c3af5b8aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a89724da7244b7a884eec15c5ebf930da20ecb71857b6b9d6754c79018bc898d
MD5 0315af14d42267fac685e7e2e7fc466c
BLAKE2b-256 11afbbb1ad90ae3ac0aa7b8460914ec44305bc321d46f8c866793dc0a82002a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 abb02529835f0234ef18fc9574ed02a332068e8bc457a45f2388eb6647691097
MD5 8af1039295ba3c4277a7b96bf7ce4863
BLAKE2b-256 7138579c22c95d8c7abe1fe5eb40ba09789455f72f68122d9494b520456bde34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f21148347c1f120ba961039710d14ca1c00b3e692eb88759837630d075bdf07
MD5 e627ac9fdd6f9010ec6ac8f624272ffb
BLAKE2b-256 4dd290de9dfb16c2e6f1169c4af604f11458f16b9b7ffb760af80becfecf64b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d91ec899c02dfefa128bf1b7e1c242eabc6d5154da1f878711f53af4aad03d4
MD5 b231b2b31b173fbbf549b0a6278e07ed
BLAKE2b-256 7eacf8d4eeed6f2af1f4e993cffc4c20d33525d003116473df5c94ed2f8fa6ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16997c0b09351f4e1b21aa8d4c95349b11ea4007f864f85966045d2397e77e48
MD5 5be105d4e7842986dd936585f83aa69f
BLAKE2b-256 01c018d9a1712bb10f541e2bb68409e307724be4e067e3a63118adba86d64d8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5e2569c73d574062b004c922683960fc71b22ea1003e68f27c76f31fb9512db
MD5 492f1feca284fbf2a7088e6d40ef6af6
BLAKE2b-256 21807932fa99059369e49b6eaa9c390fd1e1d8fd527e1340b3ab706bce106108

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c265afddeaac41a02f64edabae3cb602d6a771b0695ff030aacfa8cf8fb91ac
MD5 6d7f74790b6b2149b9e8ff0a136df9e3
BLAKE2b-256 22bc451eeee46cdc7a6f3d31e5dd428fed1c650bbc3ade337868b0b6f603a56a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 75072790eb18fb644152da7de70909561fdfe8913d6893db1013f69127531858
MD5 3e7f837ae87b83ec3535859c93c88692
BLAKE2b-256 a0753548b9604293032ac582fde1cda99e8e7ef35fcf206338aa4a3760d4bb37

See more details on using hashes here.

Provenance

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