Skip to main content

tomledit

PyPI

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

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

Quick start

Given a TOML file like this:

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

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

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

from pathlib import Path

from tomledit import Document

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

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

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

The result:

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

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

Truth in advertising

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

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

This is mostly invisible, but sometimes the implementation leaks out. Because items are paths, a mutation to the Document can invalidate or change the value being pointed at. In such cases the Item is made stale:

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

Changes in unrelated parts of the document are no problem:

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

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

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

For many usage patterns, stale Items will never be an issue. If they become a problem for you, you might prefer tomlrt.

Download files

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

Source Distribution

tomledit-1.2.2.tar.gz (162.2 kB view details)

Uploaded Source

Built Distributions

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

tomledit-1.2.2-cp314-cp314t-win_arm64.whl (517.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

tomledit-1.2.2-cp314-cp314t-win_amd64.whl (537.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

tomledit-1.2.2-cp314-cp314t-win32.whl (500.8 kB view details)

Uploaded CPython 3.14tWindows x86

tomledit-1.2.2-cp314-cp314t-musllinux_1_1_x86_64.whl (923.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

tomledit-1.2.2-cp314-cp314t-musllinux_1_1_aarch64.whl (888.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

tomledit-1.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (707.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

tomledit-1.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (735.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

tomledit-1.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (858.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

tomledit-1.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (713.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

tomledit-1.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (712.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tomledit-1.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (788.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

tomledit-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl (672.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tomledit-1.2.2-cp314-cp314t-macosx_10_12_x86_64.whl (687.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

tomledit-1.2.2-cp310-abi3-win_arm64.whl (537.9 kB view details)

Uploaded CPython 3.10+Windows ARM64

tomledit-1.2.2-cp310-abi3-win_amd64.whl (553.7 kB view details)

Uploaded CPython 3.10+Windows x86-64

tomledit-1.2.2-cp310-abi3-win32.whl (517.3 kB view details)

Uploaded CPython 3.10+Windows x86

tomledit-1.2.2-cp310-abi3-musllinux_1_1_x86_64.whl (941.2 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.1+ x86-64

tomledit-1.2.2-cp310-abi3-musllinux_1_1_aarch64.whl (905.8 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.1+ ARM64

tomledit-1.2.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (725.5 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ x86-64

tomledit-1.2.2-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (750.6 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ s390x

tomledit-1.2.2-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (877.6 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ppc64le

tomledit-1.2.2-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (728.2 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARMv7l

tomledit-1.2.2-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (730.1 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

tomledit-1.2.2-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl (811.7 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.5+ i686

tomledit-1.2.2-cp310-abi3-macosx_11_0_arm64.whl (683.0 kB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

tomledit-1.2.2-cp310-abi3-macosx_10_12_x86_64.whl (681.7 kB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tomledit-1.2.2.tar.gz
  • Upload date:
  • Size: 162.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.2.tar.gz
Algorithm Hash digest
SHA256 e36b5134a7311c5d4bcfd1c8132571b7146f7cc245f3e5c2bcb68b4d2ee6b124
MD5 c287352fb4a1dfba47796bb98510dead
BLAKE2b-256 79f827c58927ecc4fc31f23b4a71e73f2ca8ee3a32ec2153193de270bfd0b433

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2.tar.gz:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: tomledit-1.2.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 517.3 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 dd68a2bf4feb747726fcfb643835fc3bf1b9e1c393bd4e55427abe18c22734af
MD5 43837f74eca1360c48a8bc91816eec63
BLAKE2b-256 149e5fb7b41c518b680d4d961811f36175128ce6e84886a949be3deb5c337de5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ca959e3c51b800471554f7039e91e8801f7a8ebe263bbf5ba0243622af0f889c
MD5 b4495b4873deed98a52a3600365a4ff2
BLAKE2b-256 2d19abb89cc6a9ecf62a60a7a69b7679386f4902830d15de113f95f94c239dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: tomledit-1.2.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 500.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a0bc4c379697539aafc51568bdb0449d4c4da46ff5b18c353fced7bfeba8e35f
MD5 f2965b001be0104f9703778ffd10ab97
BLAKE2b-256 0cd0fcac329ade048061bc87dfcebcc3685cdc71a42b43c576156b2feb524093

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d1d42cbf172a82481260f9423a1a4cda519d24a85dc24d38ddaabee1c3622146
MD5 dd1a4f92c9feb48687a01070622c3d1d
BLAKE2b-256 681a9a2fbcdc7645372947082911c8b3f1246d64be5e69d5eca61c2cad8d2ff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eb5e879c9a9147f0530d231dfbe0fd8e72c05ccedf8f5283ea6a5272fa09b845
MD5 4a99423a87c5d2c037f8a022981393a0
BLAKE2b-256 35ea5820594010830ce7f2e0856381d60223b097c5500f2384e7e259a9978554

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 138da69d8b026b1c9410e2db061a933c02bc99a599186d749a05a06f2c7eb6b5
MD5 eb22b6229260a82bd048111206b36582
BLAKE2b-256 09a76940765073a19ec50e720dd9b6a691de176b9ed673d1bb26d770eba86a84

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 416bc744b66e3d2fc5b837fcf493ba7cadd6e05152adac1004c79307f484f1ed
MD5 bb29d93776680008dc65ac16650a2386
BLAKE2b-256 c41a89e1cd88e3b2e7a73df677a28f4ac6870692129cfb4a9199bfb9ce4e0597

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f1e0b7402ed77cc55ebdfe65fb3f4850a9e971e1590763c562ea1f6c37874ce
MD5 a73152b1ba29e6967c0f0a0827803bd2
BLAKE2b-256 f196f7c2999772612529c8ff4439c6b6b0f4b6555fade2805e86f9d4dfcb89c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6dbfbff2b0d43ddcb9637fe9e5178e0894c664072b99a83be5e37aa2e9898184
MD5 7074ebce558fb09f52913788dc71906f
BLAKE2b-256 804e56114f3f316beca7f2bc53d70991cf6831bae66f5629ff920ffa4bb1df6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7780edb3f367ef280586496aacf4b13de3e1073f16ed0ffa0e345dec764c6c1
MD5 156bc8608ee48fea435413f3e80cdd37
BLAKE2b-256 a7af83556b5089e058938aa96582ffb3b06e88304273aa44edbfcf5b38cd7f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9068d60e2fbbecbf7f7aa8efbc0428ba5679a5de4ed5554724da19cd6a4f9df7
MD5 cef7cc857cb07a40e0040e5a01aa7932
BLAKE2b-256 13bb8b2e01a41fb9f40dbcde32a6b2d4335477e90037a8edc43a60183c588868

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bb6243a67dc0e39fe7de9d65e86fc515d3947966dd7dec9d047c4588029a3bc
MD5 2d67c2265704152dbd0cb2a3fdbe4ad5
BLAKE2b-256 a2e431f9504966e1cbcc2c7b029923336e05c49061183259c8b265982a30ced0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b139c5f43c407ce2edc3dbf8936a7c1f807b0ca1c9792f7ff483a2cca3e3510b
MD5 c1e752a855e8aac5ce8c3bf288ef89d2
BLAKE2b-256 37ab7621e046dc36c25604346c5be60aeb55fb55aa551087e98cae860df85c4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-win_arm64.whl.

File metadata

  • Download URL: tomledit-1.2.2-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 537.9 kB
  • Tags: CPython 3.10+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 e7b62a7d1e35132caef7572db2a80bb519422f2704225c3fc5f8469a6f38896f
MD5 c77cfcfa33f2e11620a4898ad7b7b78d
BLAKE2b-256 fd7a7b97671801e54b2bb19f020c69a50191aa8a568166ba5c990675e88089ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-win_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: tomledit-1.2.2-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 553.7 kB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 121eb268a238a4bfc10a1e7fe81c347bd8f175fa309a3b4d796001bcbd78111b
MD5 ae5225d0ef4eb81ce78d31ebdb9ce979
BLAKE2b-256 e360b355f307aa1c9b9f26803c7051bdfa209ec75aed40c91605d36cb5625c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-win_amd64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-win32.whl.

File metadata

  • Download URL: tomledit-1.2.2-cp310-abi3-win32.whl
  • Upload date:
  • Size: 517.3 kB
  • Tags: CPython 3.10+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-win32.whl
Algorithm Hash digest
SHA256 df77b10c5c78d2609722e308c7e66924fd374421497d01d7c5e5f8fdc2d6811c
MD5 bdf81d4b15d8873a8090c0586db3d3c4
BLAKE2b-256 f51b6b8e7984c93fd583df5d1f22e52a1b52f0a20aa9a41d84e4f06d829aa740

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-win32.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a6efe14791bdc512f153306eb70eeb66c0d6383d6cdf7fba3a7c9d553d0fd2d
MD5 d0adebef25801df4be23e2fab47f84cd
BLAKE2b-256 694ef1c534fb89cc26dee240330dcaabf487a926c4e71f1a8cb16c2eea4d24c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-musllinux_1_1_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b3ff16883fa9321877fbd756950804fdcdb2c386ce72265da76a986b178cfadb
MD5 402acc337386d6fbc8c8f7bdef2dc020
BLAKE2b-256 f74b6133e0d5b2b33da6608bcdaa7b52b148533c01cd2a492e23c300dd78532b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-musllinux_1_1_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e66a4d89865d12a9c9003afb59f5d90c0aae853f1bf32e990522b53a0deeec0d
MD5 8908eb2f3accafc526d1ab4c27d84c49
BLAKE2b-256 795d52fc461ae39323219db44666ad477a99e4f9ab41828349c911d3a0b58c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51ecc08b7147b69ab68839dc7ce686eed3059c45cbf8c44268df88a0cad6de24
MD5 c632bc7792b4bd3ae3877280784ede23
BLAKE2b-256 8641a1e3abc84d5346f91f0c7f04ad149b9bd97149314e24bf7cada8cb13d15b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c826c80f9af8cd2ca60ae4151de14c94ec26316440d2f10b523f82d5fa9d0b7
MD5 c308a82310c3f27b11e572213bcc5912
BLAKE2b-256 fcabe52e3e9d6b0f95438546da9ffba496ace9b71496e3a6bd412f7b8c971054

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da6bd043ea874595e32cd46ed780a040712674ec2a87fa3a383ce649336fb133
MD5 76f709a51a72dbfa13bd7a6ca2eb3420
BLAKE2b-256 14b0cc07297e06569b069eb4a4d5ed6e4a833773f50f535b114d62f81b822637

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57ff813df4dc847184febf4bb8f07d277580f4170edca734c49a0044d7594d9c
MD5 30f80ecc1ff8c515a93589ac643776d2
BLAKE2b-256 56c6db4804f43bde2510991c2cae36e80bbd53cf3396d376dd74048f1a3b9eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c277a7d6704e3a90a4c4f50a842014a010e6dbcdb84f188ed4ddab8f8e9c208b
MD5 ec8099a94149b9b6515bd65b3aad4421
BLAKE2b-256 1cbab5af7c514ec64ad87aeae68cc46a56f72256c424f3ab3b071ed73f345e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92b25713949b10e16b30bc50554e7265307df40159a9a5177cc5195f63674d1d
MD5 c1337ec44c3d3aa83c8e2366733db31b
BLAKE2b-256 2ee6fcefa33aa85649eb4a579660ae1eb5afa82e16a6455d6271efc3342e81ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.2-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: publish.yml on dimbleby/tomledit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tomledit-1.2.2-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.2-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b569fd510ae291cae373f50f0fe9342fa5330380330aa7125a45ada4079b150b
MD5 af7a4c0908e13ef6f5cda67127965aa1
BLAKE2b-256 e128fb8f1ba84b18c13a5c1a3b3b308d5789e844c869f05f689d9640a7816ba2

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

1.2.5

40 files

1.2.4

40 files

1.2.3

40 files

This release

1.2.2 This release

27 files

1.2.1

27 files

1.2.0

27 files

1.1.4

40 files

1.1.3

40 files

1.1.2

40 files

1.1.1

40 files

1.1.0

40 files

1.0.0

92 files

0.12.1

66 files

0.12.0

66 files

0.11.0

66 files

0.10.0

66 files

0.9.5

66 files

0.9.4

66 files

0.9.3

66 files

0.9.2

66 files

0.9.1

66 files

0.9.0

66 files

0.8.0

66 files

0.7.2

66 files

0.7.1

66 files

0.7.0

66 files

0.6.0

66 files

0.5.0

66 files

0.4.0

66 files

0.3.0

66 files

0.2.0

66 files

0.1.1

66 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page