Skip to main content

Format-preserving TOML parser

Project description

tomledit

PyPI

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

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

Quick start

Given a TOML file like this:

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

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

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

from pathlib import Path

from tomledit import Document

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

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

Path("pyproject.toml").write_text(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.

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-1.2.0.tar.gz (148.7 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.0-cp314-cp314t-win_arm64.whl (518.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

tomledit-1.2.0-cp314-cp314t-win_amd64.whl (532.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

tomledit-1.2.0-cp314-cp314t-win32.whl (496.8 kB view details)

Uploaded CPython 3.14tWindows x86

tomledit-1.2.0-cp314-cp314t-musllinux_1_1_x86_64.whl (918.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

tomledit-1.2.0-cp314-cp314t-musllinux_1_1_aarch64.whl (886.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

tomledit-1.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (709.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

tomledit-1.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (732.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

tomledit-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (858.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

tomledit-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (704.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

tomledit-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (709.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tomledit-1.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (780.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

tomledit-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl (673.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tomledit-1.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (686.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

tomledit-1.2.0-cp310-abi3-win_arm64.whl (540.4 kB view details)

Uploaded CPython 3.10+Windows ARM64

tomledit-1.2.0-cp310-abi3-win_amd64.whl (556.0 kB view details)

Uploaded CPython 3.10+Windows x86-64

tomledit-1.2.0-cp310-abi3-win32.whl (516.8 kB view details)

Uploaded CPython 3.10+Windows x86

tomledit-1.2.0-cp310-abi3-musllinux_1_1_x86_64.whl (943.0 kB view details)

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

tomledit-1.2.0-cp310-abi3-musllinux_1_1_aarch64.whl (906.4 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.1+ ARM64

tomledit-1.2.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (733.7 kB view details)

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

tomledit-1.2.0-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (750.0 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ s390x

tomledit-1.2.0-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (879.8 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ppc64le

tomledit-1.2.0-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (729.0 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARMv7l

tomledit-1.2.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (731.0 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

tomledit-1.2.0-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl (808.0 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.5+ i686

tomledit-1.2.0-cp310-abi3-macosx_11_0_arm64.whl (692.0 kB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

tomledit-1.2.0-cp310-abi3-macosx_10_12_x86_64.whl (687.5 kB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for tomledit-1.2.0.tar.gz
Algorithm Hash digest
SHA256 e2f3cf8f20d1656d065a43d548e67cafa9ba16dbec75e90f8f895d8429ff75a1
MD5 1b79a0aa53f295b456c8fda7d5cad719
BLAKE2b-256 69649393ff6a4cc49ef8b2ce8e97dbaa8e44dd77bca9f83ec4c5233016961f45

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 518.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 968845cf639b18ff501b6edd39a3173ec9ddebb2f4c14f853b72ab6974b96d01
MD5 40e6708c94a979a5c3ae9590c3d84594
BLAKE2b-256 dca61319911ef50b7036b25d751699d7a92c751e5cdf34f5edb212364afc2b0a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ed33a9fcb1dc59bf547108bcfaafc545917f25841a47a25513b147ea15ef095e
MD5 9b06c2921a696a362d3339d81b81d33f
BLAKE2b-256 4efcffc1eb040ac129e4b05344e09fcdbfe74d1b9c1b74691dcbe2830dd66834

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 496.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6d61a59327dabe09a4f28b14275783a844586fc505fd143060cccb5da7ccf494
MD5 8ca4e2738e5528d9601bf696048c2ee2
BLAKE2b-256 29d765e5b29bce0c8bf9b3c563a8e3154a6e6a1795b784b062807e37c12484dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fade7fdefb52e6bc1b11bd9625d31aef3b402e6b0bb2c499a6efa0e1c39dedc6
MD5 a803cbff1bdb6a7f2300aeeba1ab9a3b
BLAKE2b-256 5c194136a19708a057b1dc85c7732ebdcb462493bfb342fa21c216ff2cfe19a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad2b54583f3e8f6928add5a38f8f94e10903a240dd99c5c473abb0c92fba46eb
MD5 c179240e79de7cc464a13284869b1224
BLAKE2b-256 d6ea02e5742d27aa06f1a1b64c89244725a5df0f4e237e8bc58f8e238e79e1f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3078c146c08eec8a903a45fa19aed26ff85cf53afbbd02b95dd6f62e0e592e16
MD5 f340fbddac29dc25a63510a68f1742d2
BLAKE2b-256 be4ce3f3f459b579c864c032a72935235a389a0386f7e0d6428d88858fc207b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 151fe0358e475426fb9f7ec26e16719b24e8135fa0d5581a41fb786f406cd4cd
MD5 eb2a72d81015631368f705fc01b516e8
BLAKE2b-256 86d964b37274432dcf9f836c7b40c1ffa2e269ee596a56be5409f4068be09872

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f9a0846c5c1d344add314d74ddc68dbcefc0c2f283c817619e6efc73cf60d99
MD5 3071db2b613d4e5bd17428835fda8a2f
BLAKE2b-256 e93b1a16dd4cb64c993c28511f626203ad4aabf21c5a5e311c21e6e1de955548

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6868b4cfcde6d270aa6d3db6566a60970aebfe731123c5a2b2ff350d8691e4c1
MD5 736b44d9f69cd5d78eb12897682fc5b3
BLAKE2b-256 aef0f3a03e1a43e3c8697b0d5aed166a3fe212e2746f910c32fd7e1131570fad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 199f1afb58986e2f13d53ee2ef8d79fcb37d5fccedd69a8bdff5d36ba7d58f05
MD5 8f1a01f76d0d54d5af9357a46bfc3fe8
BLAKE2b-256 e11819d3280c124ef7d2833ad18f780d05c66e8c1b81385a87b0c9062c8c15e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7deabaaab4f3a03a7f7954c16ccaf3f2be6697d99538666442e57f7d67cad9e8
MD5 71e1999f0710bdae43d2582da4574990
BLAKE2b-256 935ca27d796aa1ce35190e2897f648ec249cb9423a96423749e72cf7654d0b1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dc52429f81913e4398f21b6e2c3a2c3e10758eedaa669d126d7f3794d79baa5
MD5 0f73d57124869250e0177a9f04bd7462
BLAKE2b-256 9913309992f21ebe0e8fa047435855d4b3657f83181e268b358ed5027ada1008

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb3e042ea1611fea897cb1d21c57dcd893755f73e09dafa81a98a7676236fabb
MD5 c2b77603a7e72a713d38e94edcddbd3f
BLAKE2b-256 a4ab607296579ef56e350b35434cbfd4f8abbfae1cbc24edbd153c4e0003b10a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.0-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 540.4 kB
  • Tags: CPython 3.10+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 df37079e7790e8bd9e2335c94d871a0b8dde48b9e3e4035a29d32860dbb7f576
MD5 86e27b7792f1c1ee4372f6940cfcb31b
BLAKE2b-256 a0c420c94f959db6c364bb0387e57ac6c50173f9b4cbfe944916c8fcdf3210a9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 099765f0d8f5e2f536dbf3fecff6449d513e5f22d85478b10c25942a971dd5fd
MD5 d85c70ca73af89b97be306e6a4517afd
BLAKE2b-256 7a2c4d0fe4a57f8460d0c4a4a700b5637ea1cbab775369fd4229de54fce10560

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.0-cp310-abi3-win32.whl
  • Upload date:
  • Size: 516.8 kB
  • Tags: CPython 3.10+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-win32.whl
Algorithm Hash digest
SHA256 7a380767e104298fd060a3a50d959ded26dfa4cf8f1c9c3fb49351d197f103ac
MD5 5a2ae9c2c1c83c8d24414b54e66fb079
BLAKE2b-256 681431d518ee2c2bd37bb295b10d5e0aa9ce19d14e1b9b968a4e40731c5fd5bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 88b5a64e0d10156519a329071c332a3a94a59c5222693ac60921de059c414cb2
MD5 94544b8f76d75c04cd752e86e8607227
BLAKE2b-256 1bed1186327810ffdae54213f1f1562f964e2ed9f3d134b99fc6e907bfe140bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d998668419a9d60fa70649d93d51578fa3b2eb2daaf17b4363a0ba2694ac47ac
MD5 1bdac0ae54eff91837a0cbb4549ded91
BLAKE2b-256 6725909716423b3ea6b79ff212c597c590c92b031fbed7c08d4ba71783126326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb344536580340ac2c6d95e096bcc4c60d6dc97bf6b7b9363eb4d2c564fe9774
MD5 c6c1bb1620d84291b8d09d59abf1cc6c
BLAKE2b-256 09e1811c49bbb1bcb2f09f4947cfed6c9890c9550e6b54475364d0bf2b09e4ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a07a9b277f6ef051a54e2269b996d7e01616f4ca4854b016a95772351bd3c35b
MD5 fc03d5c1f52813f81cf9bb820b0bbd0e
BLAKE2b-256 f82cd7074a0e64c3a3731bac313031d8cc793bd231cd3917925b8b5b61f11d07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c67bbc7931ec983335a583155d4c4f1952771cadfb5aae6ed9dfea932db25d7a
MD5 fa2cfd03fc65f6fc1bda06c8320399a3
BLAKE2b-256 e298866d935594801f14f6b2af8eaa3dabc52f4436554b2c98b0878cd138f49e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d162faaf585f28c6bf98e7380763645514c363c758c6bfc2349c5d9bb5962d4
MD5 5157062624a576bdd126255392740ce9
BLAKE2b-256 44520bbe9fa499b76e2de9888574845c1e95963da5339b5dae33f4db12f62aaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 179cc21d5a6ab36e31ead57c0388f281db93b3b8a331e03a271136be3096c8f9
MD5 1c4ccbd683d3629b7bdaa904a4ee0520
BLAKE2b-256 2dcc030619d8f7ad7ab9afc0e5425a1b1ad877409cd380098d3b016f38aa947c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 db315bba92746631ea6d339e8a0e6db0e270715ec5e29783e072ccf68b818376
MD5 8ff682ca7a03a2ec5b0c97f7d42baa19
BLAKE2b-256 29eda0135c38fb800c47f60c5435b076f244fc1b0885e75526656bd7941f65e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7ebeb5fb3cb39afcab3dcd5b899c5dacedeeacc8b270f655b394e38338e56b7
MD5 1c25fa96440bbb510df15505354c735c
BLAKE2b-256 ad0ce032aeb699d408086b0b274c5c7a9279d6171f9548fc56b2eaaa9c6238f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.0-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59ef22efa6435d35d5b1f69cce6fbea78d5000e087318851248bc7b32f1351d7
MD5 9322541ab100f8aaa40dd5b2038dac36
BLAKE2b-256 044b4a22bba65c42ede8a9204d74fad29a936db4a199b7a0a25dda77677d9e6b

See more details on using hashes here.

Provenance

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

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