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.3.tar.gz (171.3 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.3-cp315-abi3.abi3t-win_arm64.whl (518.7 kB view details)

Uploaded CPython 3.15CPython 3.15+Windows ARM64

tomledit-1.2.3-cp315-abi3.abi3t-win_amd64.whl (540.4 kB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86-64

tomledit-1.2.3-cp315-abi3.abi3t-win32.whl (500.9 kB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86

tomledit-1.2.3-cp315-abi3.abi3t-musllinux_1_1_x86_64.whl (814.1 kB view details)

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

tomledit-1.2.3-cp315-abi3.abi3t-musllinux_1_1_aarch64.whl (749.3 kB view details)

Uploaded CPython 3.15CPython 3.15+musllinux: musl 1.1+ ARM64

tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (600.0 kB view details)

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

tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl (662.0 kB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ s390x

tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (645.6 kB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ ppc64le

tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (585.6 kB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ ARMv7l

tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.3 kB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.17+ ARM64

tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_5_i686.manylinux1_i686.whl (633.3 kB view details)

Uploaded CPython 3.15CPython 3.15+manylinux: glibc 2.5+ i686

tomledit-1.2.3-cp315-abi3.abi3t-macosx_11_0_arm64.whl (557.8 kB view details)

Uploaded CPython 3.15CPython 3.15+macOS 11.0+ ARM64

tomledit-1.2.3-cp315-abi3.abi3t-macosx_10_12_x86_64.whl (593.1 kB view details)

Uploaded CPython 3.15CPython 3.15+macOS 10.12+ x86-64

tomledit-1.2.3-cp314-cp314t-win_arm64.whl (495.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

tomledit-1.2.3-cp314-cp314t-win_amd64.whl (513.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

tomledit-1.2.3-cp314-cp314t-win32.whl (480.3 kB view details)

Uploaded CPython 3.14tWindows x86

tomledit-1.2.3-cp314-cp314t-musllinux_1_1_x86_64.whl (787.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

tomledit-1.2.3-cp314-cp314t-musllinux_1_1_aarch64.whl (727.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

tomledit-1.2.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (574.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

tomledit-1.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

tomledit-1.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (624.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

tomledit-1.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (562.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

tomledit-1.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (548.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tomledit-1.2.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (612.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

tomledit-1.2.3-cp314-cp314t-macosx_11_0_arm64.whl (533.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tomledit-1.2.3-cp314-cp314t-macosx_10_12_x86_64.whl (567.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

tomledit-1.2.3-cp310-abi3-win_arm64.whl (511.9 kB view details)

Uploaded CPython 3.10+Windows ARM64

tomledit-1.2.3-cp310-abi3-win_amd64.whl (532.0 kB view details)

Uploaded CPython 3.10+Windows x86-64

tomledit-1.2.3-cp310-abi3-win32.whl (502.0 kB view details)

Uploaded CPython 3.10+Windows x86

tomledit-1.2.3-cp310-abi3-musllinux_1_1_x86_64.whl (800.7 kB view details)

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

tomledit-1.2.3-cp310-abi3-musllinux_1_1_aarch64.whl (737.6 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.1+ ARM64

tomledit-1.2.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (587.4 kB view details)

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

tomledit-1.2.3-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (650.6 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ s390x

tomledit-1.2.3-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (640.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ppc64le

tomledit-1.2.3-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (580.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARMv7l

tomledit-1.2.3-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

tomledit-1.2.3-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl (630.5 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.5+ i686

tomledit-1.2.3-cp310-abi3-macosx_11_0_arm64.whl (551.6 kB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

tomledit-1.2.3-cp310-abi3-macosx_10_12_x86_64.whl (570.2 kB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tomledit-1.2.3.tar.gz
  • Upload date:
  • Size: 171.3 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.3.tar.gz
Algorithm Hash digest
SHA256 ec62ba73349a57adac5ad276d4598de49e9ae1dd19b5a197e12134edbd2abab1
MD5 3d8700eb012279176643f59186206807
BLAKE2b-256 9507e2afed23adc73384f2b23f0d070f541be87dee770613d8985dbd9abf4136

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3.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.3-cp315-abi3.abi3t-win_arm64.whl.

File metadata

  • Download URL: tomledit-1.2.3-cp315-abi3.abi3t-win_arm64.whl
  • Upload date:
  • Size: 518.7 kB
  • Tags: CPython 3.15, CPython 3.15+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-win_arm64.whl
Algorithm Hash digest
SHA256 571c0f684e93e34ca536be91956d427269299625dc5d4b5194c7b80ec8edc90a
MD5 41b7f721fd2f999c69062f6a7d9634f3
BLAKE2b-256 18edbb61a98fde380636f3e7aa438b14e073734dd5a0cd346ad2ca8c88ff612d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-win_amd64.whl.

File metadata

  • Download URL: tomledit-1.2.3-cp315-abi3.abi3t-win_amd64.whl
  • Upload date:
  • Size: 540.4 kB
  • Tags: CPython 3.15, CPython 3.15+, 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.3-cp315-abi3.abi3t-win_amd64.whl
Algorithm Hash digest
SHA256 cf60e5c2d1067041967b9f8f2e78f2cbb3522c2f0c924413391c68e093d72bf2
MD5 4e385466ac3c823dab76a2a7cc6c72fe
BLAKE2b-256 a81f17f41829eb7910ac50033fb0756e7ecf1081307f9b170d09000582ffbfd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-win32.whl.

File metadata

  • Download URL: tomledit-1.2.3-cp315-abi3.abi3t-win32.whl
  • Upload date:
  • Size: 500.9 kB
  • Tags: CPython 3.15, CPython 3.15+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-win32.whl
Algorithm Hash digest
SHA256 1c710a5fcade5d25412dabd5f9fafdb324987cee813b5e9dc668bb98cd93a3a7
MD5 12d7f621d70adb5a667603cebc6f9b36
BLAKE2b-256 d2ce173d167d645ba31b03983132db1425e0212494a667692f32c9684c38a5c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b6b8641b72e175ee7ecc8e6097059679ee4b2cfb809492a9b17dbacbcb09ae68
MD5 bbe8487aa7b419b6ca7d8dc8b64dce57
BLAKE2b-256 d415413dc64246a3dbd9ddbdf68c6b66228a07997b1002dbf392f88bc37265c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 363f021e7ad60194588e3e8636949b4cff3c903bf446d2eb658e04cd28dc2240
MD5 35f0273e23a3074926bdfa26caa42cba
BLAKE2b-256 ec5f7be3a3272625dfdc13dd7dffa83be4f26ab0c4427345509403ef048b4bcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef4ac83592a2a5851fe0532eed091d67bfac1b51c60a3c6c9715739d15459acb
MD5 75449c5ed2c43b4b8e9a84627e3ef1a1
BLAKE2b-256 e63828ff698a10ddad238760bc48726ee767ba617152d9bcafba5c458cbef818

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87215b54adad59ce9e34f85820382f6c8c61e87bb4455efde7edf14c8661d6bc
MD5 6e62a16352fc4a6b68c89ad7ee4548c3
BLAKE2b-256 bd53850f87cad9be5fafb6aafcc016a17d13bcc648f559088e1e0a757aeffc1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fcb0fcf39c2d20a38bf1f0c92006fec8190d2bbfdb0d772469571a8486364b8
MD5 ef955f0d7e1bee80c2b5a60bc33994c6
BLAKE2b-256 9b4e881a8cfb908480a4a1e918e065f6b72c808989f971a84b856f2dbe3c4dea

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ce5c6d052ea009b3a1646490698824a8c05314262f8a89213291f5a309c9f51
MD5 dea745f6854fbf8f1d624026b13f0ad1
BLAKE2b-256 4c3c101420f847d771a5c239cad30913eaca98dc7103533e455aac3e0dd580be

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0a62c72a7d98a6445257f8940ac41f061df82b2239302ce0ef79978812a1c1c
MD5 92fb40d37099ddaafba8de3e6ce57256
BLAKE2b-256 dfa48d8bd1fdd09349eb37edc75344c3d66755734c299a83b6d7960551d0e8e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 261261cb26756ea3148e0d9a2c8338b73499588346cd360bb74f57e614dd5db0
MD5 19dfc45222868923e7ce2c6d45d1f3f6
BLAKE2b-256 eeaf4017855edcc3de5ab54f338ff8281558533d2066bd7c8e5abd1b414d2141

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4ae7854f30808683fda043c67f533f382bf0630e2ecb0913fa86e1c7d72c1fc
MD5 c240a4ed918e05322c9bad65255c1de0
BLAKE2b-256 b4c4d6fba9fee7a1d938edcc1245aa84881418cefdad9ddf261b70fb329b6b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp315-abi3.abi3t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.3-cp315-abi3.abi3t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 355458c65955999d7724b72873ff98ddf79f050df69c94f2231baaa1fef9d124
MD5 9a1ec802a9089f0c4266b64286414bec
BLAKE2b-256 3fc8b44d24b62245289ca512d89638fa73c6edfd85865d04fec9ce1df546da99

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.3-cp315-abi3.abi3t-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.3-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: tomledit-1.2.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 495.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.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 de1af04430abbf0cef7c33f2db26cfcd6988b8f416f4680be0ea4cbca34deffc
MD5 906d7a432d63a04f09328a003e54b567
BLAKE2b-256 ab3f3f11d1b4e0cd6c2eb33bd4825ad39ac50ae4dc07cd7a5c0789437948c5fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 513.6 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8f1f394ed268fe2c4292a5d4af7d56c55b39bd1a21f723f9b7d33c7824905972
MD5 39cbe4d5967812dcd4f67fcd9f20cc25
BLAKE2b-256 db2d759157ead7fe12accac9b072e6036cf2e265d155961c384797417385b0ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 480.3 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.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 fb823526a3bd3c937054bd818dd33e9b18e4879034439964137a33aea0f90649
MD5 00f36c71ecabcca21f64c2a0dc875823
BLAKE2b-256 31c9a6f4218b058d5f9b4a609bcdb3eeeee3759693630518f144564eb04d3c4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6238e6514664c90499afe4abd5b46af27d20f26b43efd46fd19d911ff6ea452f
MD5 8cec7e43f26a3512224b0394e24a522a
BLAKE2b-256 dc9b1c5169a865c1ef9fbca1a30424bdb4f5989a12a031f1afa005d3964982d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8f870c50fe4002276802a5be4b7c145454f7506cd49a2953f647b0803935443e
MD5 e526649fa52c3d7bed21ed38b6d9740e
BLAKE2b-256 61ad54986c7d369ee178f1d11cd6bcb795a80fa0b972d80fe8d64f50557e244c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ed0657a555996430cf80428574341221a0138dd6103406374f076caf2fb4f44
MD5 64335ec77b72575483720c09052c7bd0
BLAKE2b-256 00f2d4fc7d89ca67b41c6807834771452b7c32235fa7cab14ab2efbab65be610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9500431ee5123c38340e739e06bc835d021b67539623871e7020ffd998d51b62
MD5 1563a0c88e29a6aa9e35503f3b2cf6f7
BLAKE2b-256 5e797a94b169f6f0988f8ba64c63a6a3324482f8658a51f63bfabd251489f0ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 275ae9da2c4f85ccbe26232b686958cde8112aaab4349d389bef8b29bbc1ffca
MD5 ef730e8420b0082842dba1f05af26559
BLAKE2b-256 2b8818cadf4e24c01755250e16bd96cc465323371f3c02f4e02c5bfd1b0b4370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1e28848bc1f52c1ae7bfc95e0a9f2dc7caedc48524ef28997d1cc069889c7f2
MD5 bac42627435f41bbc5b6f7c720cac0a9
BLAKE2b-256 017788cf9f3469364decde269f6f43dee460c37c12e9152607192a0bfefae423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2bb15dd5f93a718886e771d7c3ddace480b9d15d80c58802cc9ad3d143e2b322
MD5 8798b11dd0d52d78d2119bdb71ec2830
BLAKE2b-256 fdef583b0ed03dba20bec4293708e1a4263679d2a60866b57ac5998c4a72a1a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7557a1514f9cf8aef452489adc319095f0840a61b00f8b1318599f7b3f55acb0
MD5 6971614ee3ff5b7418e9540d4a5fbd64
BLAKE2b-256 36c7809639090aa5291a5a5294ac8030edeedf96d9193c033e018422641e3b5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a592b76fbd6f56bbd775c31496496e206a0984c7c956ee3d194b45b57f2c69f1
MD5 8cfcd890e281ff2a1b4b1249ffa97015
BLAKE2b-256 d6a9f995343e99a2882ff5233f1f06de677ef79a9ca03e69b65cce5ac87070e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4b204d0356857050710d67b0af5b1dcdefddd479817909beb2556e15a08a0a4
MD5 20427b699f5a3aa718bab739cee63088
BLAKE2b-256 83d554512ddb622c0bf496ee0e57407dbc0789eb90a793631a80df4aa1faca7d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.3-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 511.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.3-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 66aa7f16934fd0b23ef912337cfe236b5a262f7da6764f5c82f1608fe26f88d1
MD5 c4307ce62d4c80226280e124212d3c7e
BLAKE2b-256 465deca035b24f4bb53678a4526ec87796ddfa24b80e6d9cabbd3c401de33f6a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.3-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 532.0 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.3-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 b212eeb550038e97c33a120754a135b8ae028515f6cf75cc50d31a14a0891df0
MD5 391670e60b0c04cb1eeb184204ddecf8
BLAKE2b-256 0df84eb150a58c2953a02047163537bde18ef927341abb64ff6b6f76b1213fe0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.3-cp310-abi3-win32.whl
  • Upload date:
  • Size: 502.0 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.3-cp310-abi3-win32.whl
Algorithm Hash digest
SHA256 daaeb8c99b2ff747942ba8189c4b00ed1c20ad7aeea8f012ce5fdec8fca60f30
MD5 3a2551ad4f225d40293b4c81538adb3c
BLAKE2b-256 eb9c31cded0560c2808b4c89d7df98a2fe81b7a692db1d4cdacd29e0ace531b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b8c8f2660c5d22dcf11863740198bc6c7ad1a8c8e5f3a2fa5eddae35b1976e9b
MD5 54bf338b3a1e126613615907a8f9fdea
BLAKE2b-256 ae8e6640b81dc382ca1f51f75077adbed92755e547f0ec5f10b319bd811b3c5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0d019239f8344e41527f06d76b6c67aef46b419b85401dbda31e01be276d3a0e
MD5 b8b26ed6a1e3a309541527e6e4fe0e82
BLAKE2b-256 79e52819873782d19ad23532d674d9a7e62c3266dbf3e97a31f2f19553beb77a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4b6faf43b16a13606060e30209a597e4ad73b4223d5e50304867332e87b2997
MD5 0d4b7e153b3565fdc8fb5fab5b6e8796
BLAKE2b-256 df1576c821f7c75fd46b7c22a13cb9b2c67469aafe2d9cfa44f16b878d757f31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3d4eb3e41cb35873380faf3abf0d2b449894ed678010ff57f62c0edf8f575e7
MD5 756db45fcb762291d4370930c1496f58
BLAKE2b-256 1a6ef014e2b832c1fedd49b56689ada8ad4985d591439a13a33597c3497f2411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1d044373853990c0e33bba70293eeb5300d43fbb571ea35b0b66d4073b16091
MD5 f7fc67f14933a246b8e2f73c121233e2
BLAKE2b-256 cd8febb718b1e3ac511dd481dc44d6de16a42829e6c103beceef7b6492d52b74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4000164e03f9a17671a15706f5057a41192709e86dbc024c65bd5c78e48d77c7
MD5 54dc0718078020c855f3369d606c5655
BLAKE2b-256 7af6d0519fc590ea85edafcdb00174c57f8d8ab06d74e3d9b8836a92d7a6762b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cebdf9ea6c23cef5060cde269a101867fe14e17add1a0e36fca2bf2a498cdefd
MD5 3d8c52daedf5021f6a20314fa736fa8d
BLAKE2b-256 14bf2716984593eabb2d812a181f0f34cfaae27e0ac4d817ce552ec9d2cc858f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 672f5ce9bfee51479d53283af2f1b55259ed1b2f08023c394d7532d299c7f962
MD5 86b1bb725cff3d9c4b7f6f582855a73e
BLAKE2b-256 ff1516c9d35731621ca8604dcaece38d97236656983300c7789d6990a3dc175d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95ad828e34557f34dd8ac03b348df4f358fd26e835358e5d224824176938bc60
MD5 20f534999053a0e1814320b1bb987a97
BLAKE2b-256 87dbec6abe4c335c9eb3146d6cdbb1c8f0d2e672444245a6ad88cec691875303

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.3-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f472d06665d2c7aec3b34b9dce6619a0066a96385c31d71140d0525d4a2fb99a
MD5 9652d345bb6feb046dc1b97606b9f2da
BLAKE2b-256 7a2453ab8cde3da160a4135859d9dcc6fba71b5d66f207b98fb2d707a2e2483a

See more details on using hashes here.

Provenance

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

This release

1.2.3 This release

40 files

1.2.2

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