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.1.tar.gz (153.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.1-cp314-cp314t-win_arm64.whl (521.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

tomledit-1.2.1-cp314-cp314t-win_amd64.whl (535.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

tomledit-1.2.1-cp314-cp314t-win32.whl (498.4 kB view details)

Uploaded CPython 3.14tWindows x86

tomledit-1.2.1-cp314-cp314t-musllinux_1_1_x86_64.whl (924.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

tomledit-1.2.1-cp314-cp314t-musllinux_1_1_aarch64.whl (888.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

tomledit-1.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (714.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

tomledit-1.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (737.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

tomledit-1.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (862.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

tomledit-1.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (711.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

tomledit-1.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (713.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tomledit-1.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (784.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

tomledit-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl (674.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tomledit-1.2.1-cp314-cp314t-macosx_10_12_x86_64.whl (690.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

tomledit-1.2.1-cp310-abi3-win_arm64.whl (543.0 kB view details)

Uploaded CPython 3.10+Windows ARM64

tomledit-1.2.1-cp310-abi3-win_amd64.whl (558.0 kB view details)

Uploaded CPython 3.10+Windows x86-64

tomledit-1.2.1-cp310-abi3-win32.whl (521.5 kB view details)

Uploaded CPython 3.10+Windows x86

tomledit-1.2.1-cp310-abi3-musllinux_1_1_x86_64.whl (947.0 kB view details)

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

tomledit-1.2.1-cp310-abi3-musllinux_1_1_aarch64.whl (909.1 kB view details)

Uploaded CPython 3.10+musllinux: musl 1.1+ ARM64

tomledit-1.2.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (737.0 kB view details)

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

tomledit-1.2.1-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (755.3 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ s390x

tomledit-1.2.1-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (883.9 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ppc64le

tomledit-1.2.1-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (735.1 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARMv7l

tomledit-1.2.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (734.2 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

tomledit-1.2.1-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl (810.3 kB view details)

Uploaded CPython 3.10+manylinux: glibc 2.5+ i686

tomledit-1.2.1-cp310-abi3-macosx_11_0_arm64.whl (692.9 kB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

tomledit-1.2.1-cp310-abi3-macosx_10_12_x86_64.whl (692.7 kB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tomledit-1.2.1.tar.gz
  • Upload date:
  • Size: 153.3 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.1.tar.gz
Algorithm Hash digest
SHA256 a9601c15c85ae49ffd480028baea0cc5a16431f0fd6150ea4cd0539ffb4a42f3
MD5 4a7599d59e260889238850df23e4c4e4
BLAKE2b-256 0cbabfe49d8c795b473f5a975e40697617555cdbcd425708e34886669df490b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 521.3 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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f8e5e5feac3ee69ca8db945392872f92e37a08fe18b02754240a7cda28d52184
MD5 1dccf732420fa6a91b8d01e4eafcfcf9
BLAKE2b-256 0481c78eee964c9dc98261311033ec8653a6da51dbe202d5eb4ce8835345502a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 535.2 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cbb1e14f4d6dcf55ab77b48744faa1ab254fcbddde791140c45e32d831230631
MD5 d3b778ec20b128c52e247643d24654b0
BLAKE2b-256 57fceaa5cd17222158e0ede32d78983df9dfb8526b81b5c4862c5380ed4ff58a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 498.4 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9331bf2a17548ff72e05cc19172e6a8b140ce5c09367998388db1fa957ab46a2
MD5 2a7992d5c1e3fdd87483b86041eab571
BLAKE2b-256 d3088dbc072912e2cf79ea6d2a814fc2f79a4a2e87404e357b36d8ed3fd16be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 961ae4397d7527eabd5b861dc478484f6f6c11553e2fed6c4c67d9ee5bdaf72a
MD5 a590210c289951773df0cc550ff39172
BLAKE2b-256 344004d610ce87973ef7ba696c14ebb74f5ab093b6a4c09c0ab63d91a50b1c98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2106ae1853b09c3f75caf13b97a445cce9f1c708fa7cf771f67cdc30e11206d7
MD5 c80033b564537b8a74103508047aa341
BLAKE2b-256 72584efb2ba3d10d4647dc8b0f9ab678b46b0e0bcf7f5f6479d9f8911b98d38b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 195042c270d897a208c3186b2cd852ca82b57be59d2a3a746a33f60e31fd8f75
MD5 3344fb5f8f082d9b9a6b4bf3f776eca1
BLAKE2b-256 c23a721a0c49f499c64c4b93acc6357611267d6fa7bbdb4f31f2b709e226451e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21d96960e5d89d731701bcf711bd53978b2bfccc44fe14961bad16c090d60560
MD5 98d558134a2fca73e662bb90ebb741bb
BLAKE2b-256 83c64eee4a4aae86d441530232365bdc485a1e5828cbbcf5a6128ece77e70215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33953970c8a1aad46da0cbd8cba45d9d4d371e645c6e752642f76477415d875c
MD5 b9cfc2eaa8068815f1c70bc82361955a
BLAKE2b-256 3cb2fcc54faeccce4f1b954c6b6a180b1a1a5c4968aa395f7943c678af776f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc3107ff5564af1387f1f6070552acbd8c2b6245327aa81b604f4c84e19e222c
MD5 c0265117c67c92a07c76d046c62f2cf7
BLAKE2b-256 996aa4598c80307586625d4e5d570b86ce4f88e77baadd02f54096421ff14ba0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6975cc854f29fe2a86f1e94e11cfd63fef2149232e723b85ac7f4427790bc908
MD5 4fdbbeb01d46af17a0efeafb6850d219
BLAKE2b-256 16641dc12256fe82a3b9eb4416137be3cb53fd0f211e527db10134e1638c1981

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 55c14ce02b0a0bf980097b12f5de7b18412f1f20db48301898b20baec293b181
MD5 da41693161fd0947401b817ee8fd3961
BLAKE2b-256 7ba76fcde1f78d4c9b370a3547d6140c34f4a195f4c6fc77825ff10a44a54b12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ffd1aef945ba31e60bd38130b24bb9ebfd8196b6647117595adf4a7122ec360
MD5 34866f532aca8bf85e93ea9ee8ab0385
BLAKE2b-256 62b5b406b41cc41f845467532b7a6b51974fc3617a80e8b4315f4f4c2b2f0f66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d12f0fb9584211976f5b957e4361348a3ccb2f13c433c819fc6b3ec2de1fdda0
MD5 5a9bdc6cc918217f46f39a0b04595a95
BLAKE2b-256 e04e59fae3a7e55c5b797223297842866de90bfb20cc36b3d4b20f5a48f04344

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.1-cp310-abi3-win_arm64.whl
  • Upload date:
  • Size: 543.0 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.1-cp310-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 296683f68aab037ace92fa6417a4d2c6cb4bc2359746fcf1b072539540792843
MD5 def3d639ce279a87a4867f4fbe01823d
BLAKE2b-256 1c1a1db0bbfd2ee6cf3d45d3181bf5a541737de34ad1b6b76845dda61ba0c8bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.1-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 558.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.1-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4e5c3473b402586b7c9a38b0029dbc00348de711209eb487216ca7e3b72244ac
MD5 544b5ccf3889203f24cf3ea630532cf4
BLAKE2b-256 ee7fca41979e2f2f0bc963aba880c961c072f27862b5f63e854c56b8842859f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.1-cp310-abi3-win32.whl
  • Upload date:
  • Size: 521.5 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.1-cp310-abi3-win32.whl
Algorithm Hash digest
SHA256 b4274f0a5e01517ff1b2b87684853e295f6ab68ca32804c32b59cea5bf0ea852
MD5 6172e2b1c2b2b5e9859a55881fa5ed10
BLAKE2b-256 fa73fa7a03fa99528f269c38ec1f7e6eaa824a6e27d9b3b453a73e16eabe0556

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 898f05ee68af1d148b26de0ecf39b9d9ba0e50cdc3df4eff027c392fea956956
MD5 bf782077d08c33401b75727808225a91
BLAKE2b-256 2a9a118ba6f2cb1046abff29106fd8e39277b5f5bb13321f246ff783c6b7aa9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 448ff3827e94c31e180893731b3065ef395f0fc4acd8aee914dcee1ee08d86dc
MD5 f9f9c790076e0e7c816f2c422a8486e0
BLAKE2b-256 0f13401609e3e4e2700aee5c910bfc5960703bec1d8b324bfd305d4908af2afe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f42837420bd49ab776819b0c2d04a9c711391bafba46e152f1507ed4fffb01ff
MD5 025cfc98e65ffaa80d24462b327623fd
BLAKE2b-256 5ff9aa7f8cf8471c5369367c52095223b78485a15aa40308d31e5dca9d413e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1820a6bdf53a0fd26fe4b9e30a127bf38d7d6909ed4d986bade082b6a0786324
MD5 20d3d03ac8b296b7869cdcd2a44b0cef
BLAKE2b-256 cb58ee00a9cbc77c5593f3c63c1e0d789eeadd2e85131925a1a27914d5fb7cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c02809beabada8a87e1f3a548c7f22bfaa96bdbba83bf53ca50c12786a7e4a7c
MD5 51f121c7f5c0f579a02985915dbd4264
BLAKE2b-256 957afbafe3d051a8de6adabf715bce262e63463124e3f062aee1ad240daaf17a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa47b1fde74609b55aded2116e20e9dc410dcd89af1bf94df10bcede64db5fee
MD5 84326e380658ba8f3deb5d3f8c73bb4d
BLAKE2b-256 28bd0973c7e925f3dfc1c6ee95e9e57d1d64115c3945d1d73b91af89026a60ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56201a491c52944f6376269cb6c9e57b998120816fc3cc781acf051f76a56c5c
MD5 5b82c539b2dc4b8aafa585c6b1e6dec1
BLAKE2b-256 70f5ec4a72953d00ece1bc6afe7e97bda13cf38d0a0a3f5672b8231512734cee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d28d219c6b4fd96ec25467783e89c1ffef9e9452499df729f14e26d448b454b2
MD5 e1be0f7726feac8fb5615c29541231b0
BLAKE2b-256 acf782d9d1b8d2acd852554673c72d52b34ff1d1773377d18e761db96b0f5fae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ecae649582055b081b535f0a4b76f94630a53c800868e3afbfce7b012d43c5b
MD5 a8fd7677bb791ec45832ed851c359b09
BLAKE2b-256 f43bb8b2778c6eb2c275b3cac9346a0fa5f87adc6b4ecdeae76a58ffa92b8bc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.1-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad71f3e53cf6f3a2b0ea62fcfadc27a61f85c76e72b22909e30677f40e40779b
MD5 96ef8147d7ad0a9732c9677541e74cd2
BLAKE2b-256 6cdb2d9e9a3292f39a6fe18d09bed7c199529d3f85d028aae64714069a6d0b1f

See more details on using hashes here.

Provenance

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