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.4.tar.gz (166.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.4-cp315-abi3.abi3t-win_arm64.whl (565.5 kB view details)

Uploaded CPython 3.15CPython 3.15+Windows ARM64

tomledit-1.2.4-cp315-abi3.abi3t-win_amd64.whl (603.7 kB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86-64

tomledit-1.2.4-cp315-abi3.abi3t-win32.whl (566.0 kB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86

tomledit-1.2.4-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl (866.8 kB view details)

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

tomledit-1.2.4-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl (805.2 kB view details)

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

tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (666.3 kB view details)

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

tomledit-1.2.4-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.4-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (645.2 kB view details)

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

tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl (718.4 kB view details)

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

tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (585.7 kB view details)

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

tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (640.7 kB view details)

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

tomledit-1.2.4-cp315-abi3.abi3t-macosx_11_0_arm64.whl (635.9 kB view details)

Uploaded CPython 3.15CPython 3.15+macOS 11.0+ ARM64

tomledit-1.2.4-cp315-abi3.abi3t-macosx_10_12_x86_64.whl (662.2 kB view details)

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

tomledit-1.2.4-cp314-cp314t-win_arm64.whl (540.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

tomledit-1.2.4-cp314-cp314t-win_amd64.whl (575.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

tomledit-1.2.4-cp314-cp314t-win32.whl (545.3 kB view details)

Uploaded CPython 3.14tWindows x86

tomledit-1.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (841.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

tomledit-1.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl (783.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

tomledit-1.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (642.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

tomledit-1.2.4-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.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (623.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

tomledit-1.2.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (696.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

tomledit-1.2.4-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.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (621.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tomledit-1.2.4-cp314-cp314t-macosx_11_0_arm64.whl (618.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tomledit-1.2.4-cp314-cp314t-macosx_10_12_x86_64.whl (639.6 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

tomledit-1.2.4-cp311-abi3-win_arm64.whl (551.9 kB view details)

Uploaded CPython 3.11+Windows ARM64

tomledit-1.2.4-cp311-abi3-win_amd64.whl (590.2 kB view details)

Uploaded CPython 3.11+Windows x86-64

tomledit-1.2.4-cp311-abi3-win32.whl (550.1 kB view details)

Uploaded CPython 3.11+Windows x86

tomledit-1.2.4-cp311-abi3-musllinux_1_2_x86_64.whl (850.4 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

tomledit-1.2.4-cp311-abi3-musllinux_1_2_aarch64.whl (791.5 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

tomledit-1.2.4-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (658.4 kB view details)

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

tomledit-1.2.4-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (645.8 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ s390x

tomledit-1.2.4-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (638.4 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ppc64le

tomledit-1.2.4-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (700.6 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ i686

tomledit-1.2.4-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (578.6 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARMv7l

tomledit-1.2.4-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (634.9 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

tomledit-1.2.4-cp311-abi3-macosx_11_0_arm64.whl (632.6 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

tomledit-1.2.4-cp311-abi3-macosx_10_12_x86_64.whl (640.9 kB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tomledit-1.2.4.tar.gz
  • Upload date:
  • Size: 166.7 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.4.tar.gz
Algorithm Hash digest
SHA256 b4c399d2e10c7a9669546219a696766c9a1d6819a40b43586b9dfa94db8d2a02
MD5 e3fecdbbe18a4ce9e59b0c0a4eeed094
BLAKE2b-256 700a17703efd4a7486d86abb4e568337712714de68ef764e131a3feb793e5851

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.4-cp315-abi3.abi3t-win_arm64.whl
  • Upload date:
  • Size: 565.5 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.4-cp315-abi3.abi3t-win_arm64.whl
Algorithm Hash digest
SHA256 f15515b2397215ed6a85dc3dad9effd21679bfc391c5d941ce477b646acfc722
MD5 399947dcac84466627734e751528fb7f
BLAKE2b-256 c7e5f3f4b32053ed079fce0fb2af4b9e1b5a6502d8c50fed957a9b03e851349c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.4-cp315-abi3.abi3t-win_amd64.whl
  • Upload date:
  • Size: 603.7 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.4-cp315-abi3.abi3t-win_amd64.whl
Algorithm Hash digest
SHA256 74dd3a086028618e32fd2b4dccae7bde527a5dec6d7560aa7590fd5448839c78
MD5 54b18ef895c417009d153c9784b64ea1
BLAKE2b-256 db1ceda1bf23aa492bfe764af7dfd36c062f9289deb48f577b4a72017887ec0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.4-cp315-abi3.abi3t-win32.whl
  • Upload date:
  • Size: 566.0 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.4-cp315-abi3.abi3t-win32.whl
Algorithm Hash digest
SHA256 9425395b3929058d5b5a7e097fe5b5c04e0bd6e70c874deb6e7aee62ad20ec80
MD5 466df3d87dab29530e15a26f0e2d0664
BLAKE2b-256 f56ac80a16d2299c91ba213d5016f33b23977a96cb5373a3c6791388a57996e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-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.4-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cfe956bc543a30f5a97fc49438493b251239003df8dbb12356a32308f53ea49
MD5 08abb15f9c2cf9dcf7081b6ba13053d6
BLAKE2b-256 64b1076943ea5be82f685e0d0524fe0c608dc5d9595aeed656f180f45cfa1b49

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-cp315-abi3.abi3t-musllinux_1_2_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.4-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb6250b38ca22507df789e33b261431b8dc7587081ea2ec06c6c05f41fd65090
MD5 f5a90dd25624a27bbafd5ad6328e36e7
BLAKE2b-256 5b4aafa4e153a90c690336c629e679fd5afe36e7b15ac4a67a6fd62089231684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d76310104a54847e1e660f95d7cca66f34c6425405e7922357f383ec2131c155
MD5 f4e73ff80adcfa81cfad4102d7f9ab10
BLAKE2b-256 1580820b78eaac29bde1bbd33080b81de7777f328c36e7990316b21ab3f00241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82c0ae77e54a7dbf9fdf7bafa0ec3169f5ee91589bff79df07b8285da61a8f96
MD5 64f88e52892fbb026232aa35c4a1885f
BLAKE2b-256 2cef351a80068ecc5c7bc05880e04fdf43706b2eb66388c74a48dc7c7712bc22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9da813b8652def939e53c8e08fbb7b96c8de81fc44e77087098a86695ee4441f
MD5 5bb846b82515225a6549d6c23269de17
BLAKE2b-256 43f505bb91ce14c01e84fd2edde6f2eedbd682270d3373744d17d01613b12f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-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.4-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 99c77266084f3c49349e03b05a45faeb9b7acb3b94fac90b8309f73020d0192b
MD5 48bd30a043f122070934613c57b0264c
BLAKE2b-256 b69cab0ad75a27349aa37a96e4251bf4216d3569345858c9e4ac28feb97d997e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_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.4-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7aa66ec3be4682b904d5479a245917585b5ddb191a0cb20e88cdb99c44ca9d12
MD5 0f71cfcba207fcbb3345d1060ef88660
BLAKE2b-256 1eb1e11034d8e2e09b4111cec57a9d87e764ca6f34c6c1a4d26ebde19c21c1c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2dc80d9f339c480b569f30ede6ddc1620a0c8c2ff60ee8accbd1de29e26a59da
MD5 b34a07d11c2f70814ff0c5ba8b0b47eb
BLAKE2b-256 50e84035eb2d697dec14c84cc2a66be73bd985f9b600f9ea683a3422a3a25f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e141dfed84898533f5ae0342e824c8fd34f05669f15bce77d28e1f71c5e316c1
MD5 44baebdfd2bd36d6bf51bf74e46088e7
BLAKE2b-256 b6803381a4a4b01204e04d05693ad399f0a037a119c118bf89c1cb8d4ad27644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp315-abi3.abi3t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b61b894caa5668633b08d843405e57be0b4fb5f0a4353caa65159cd6a6dd0649
MD5 f2fce7dc85fdc13c6eb3b281abc18adc
BLAKE2b-256 ea73c28dd0d258762a3297f9122cf5125c39b32c748522d0849ef2320f4c87cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 540.9 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.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0500b22e0b0979770d7c3aa585b730b52f05bdebe61ebd70931bc9889464a775
MD5 3d456b71da8260737b60c353f2caefad
BLAKE2b-256 bd2583e9c424494d837a0d608b0a56cac5ce05f23cb1c450ac07d03493774282

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 575.4 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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2a99ca2444e269e2adbdb47ce47193f7028e90e847635cdc96493574ebae8a5a
MD5 ba6d4eabfa726580b91a0bdbbefe85e4
BLAKE2b-256 c6cc96170e8ad252435b5c0431c213161a942a3a822e2a89af575915c0f6f9d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 545.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.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7413134bedf51c3322f2bdff17ed446d4455f3ec68614a50e8cd610f980cf828
MD5 e03680b4b2018700ceee3ebc038324a2
BLAKE2b-256 d9d4b4359573f066fbc0c1e577ec21c57e7df8b1db2fad94b2f42174785d3a77

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-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.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67faf5898c86b48bf7517a40bb3e225afce01c2310c037cf4d86dcaf8fc64b39
MD5 bc1e4478320e3a90fb669360155f3944
BLAKE2b-256 63b0403d519cb6fcf0658cbaa45a8bb3c439c5143814de6d156d6be0bbbec98e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-cp314-cp314t-musllinux_1_2_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.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6771d1e9cdf70688926d8b0e3040fff7ea710366a8989697552c708704ec1ca4
MD5 91e3a48a0247ea2640d67541f5294b6a
BLAKE2b-256 142c567cd79c952385cbecc7528e0106a06b08beab57b8d1eb7461fcb1292dbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52697e5937687c6129b576bb2005103d2e2a0e3d214f0801c1a51c18d280ad42
MD5 fb42808583bd001bfb9f6c10ae9c3eb4
BLAKE2b-256 bab695d686152d749a345e06d5f595ae930f8aca424308c4e37c439c10d63f36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f931ace3c43af7a713228112acb8130520fe9fab3ba88bc5c16f669d97fa426a
MD5 717c4707c7c489b39cbce5813627d8d2
BLAKE2b-256 d9cab8f9edbf65c6a70d52a7e85125c360e34f0d0899520e993df12e952b0a21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcb8642ca08cab7d6512c238050df27d2b22c8e372134d48a0bf1adc1e8fac5c
MD5 f6c918423282ffb4f1823fc8afd873d9
BLAKE2b-256 df0a01cabbc008a3f5faccd4906c7d23782cf7bdaa81fd9f3e6ecc589ec6b8ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-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.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a5d9cfe4f6023a3fb639760ef5e5a08b8cef5ec7613c30a014294eeb6cf46891
MD5 42518f60f039268386f740ad4bf6f0eb
BLAKE2b-256 feeb459f3111196643cd4a0d499d7b6a5999b46142d75951ea6056bf614ca931

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_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.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a852284f657442114c12a23b2ba0370d2dd21e8cf4c7de22fda576bfbee189a6
MD5 98c83b96c8b94059a622048c3c23bcd9
BLAKE2b-256 9ef6fc3be0e8bb6f24b1055fe4926be09bbef6b3241a81b012865b01520d498e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a7febab6d9e027018ddf1fd642d59efe5ab580066c0542556e98310aea76e44
MD5 2a79438fd68624704026254ec1c965c2
BLAKE2b-256 0b285f9b8cb6bd95724dcb1526f4726af97421529787fa9e0a81e367477a67d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 658a6477d63e454976ee4ee2a16c335ef651b470b332d106315d9026520d6f2d
MD5 9220107ded18855af4851f86317c59e7
BLAKE2b-256 2eb03d44faf48d6080eb6ac184440ef0debaf16873e93ab66c975c3760c36642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6996fadea1ad2cebef5b0055228d0499a96f3381260f1b80a7235e4ef5c38084
MD5 81d1f5593d64ea2af70398336d199aa8
BLAKE2b-256 12ee610a904f8b4bdc65627862f98538a375c372d3cff4e5d96ce0d21a897cf0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.4-cp311-abi3-win_arm64.whl
  • Upload date:
  • Size: 551.9 kB
  • Tags: CPython 3.11+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 aa3e829b634ec81b70b55abf0f7774939140989422e6426b3fead3f1e2df6f35
MD5 b103e44a22285547934105f906753e1b
BLAKE2b-256 c03fce0b2ece801d608123f4cc1ff4b06329c53867fce9c0787edd2a33dd6220

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.4-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 590.2 kB
  • Tags: CPython 3.11+, 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.4-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 be38e21ee3ab7fd00c488d62166085c9cc3b775de096a0ae783a2ea4d1a237ee
MD5 3bee2c940aa039c08b67f816f8c56c4b
BLAKE2b-256 557994b6e60213ccc6c2ed3b0b8e1ee6a6d431390a43eeba1cf1f5246dd38066

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.4-cp311-abi3-win32.whl
  • Upload date:
  • Size: 550.1 kB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 1c55754a2dcd56fc9f3a560fa11af6be4bf65720055188a95bfe7e132cb1455d
MD5 8ca2efe4b61ec9566b3b2fb9349ade59
BLAKE2b-256 d3b9a5b417fa78788278c00f747c7b73d067bf31538ef88e183f2bd645fdc3e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-cp311-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.4-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 421c3fb836fcfbd8a59a87acb72ef6119d8373988e5de9f548e47227d3f60a3b
MD5 f1ddb0623680695c3bf76013634334e8
BLAKE2b-256 a760f26987f9cd60ddf1982b7f2f70574ff35ecaba792e7037ad343be205ed7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-cp311-abi3-musllinux_1_2_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.4-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9824aa6ec18a76f57ece16b307a63b440110f7f3d0957953bb0bac24132c26b
MD5 7dfca428b85b4cba08b492cc9acc014b
BLAKE2b-256 12f0ff6773a68fedf4207bce6c6cbcb4d9f38196cf3efb2241d073265a5ff172

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-cp311-abi3-musllinux_1_2_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.4-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04e5f8bee162e325ab8fbe0f17bfb65a4051a15634e776962a82926de1a5f2f5
MD5 968ec1d64acbef30304f165df622953a
BLAKE2b-256 e5a4a362f23b9fb05fbef7b4ac84f25a32d90793851e51191f167efab56b7638

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07d7c09fb54c9619694a16ddb49b68f683c4a4ba5b1383ecc240d72fd238fe6c
MD5 0218afe065ffcbf4af395e58e8a4cdb6
BLAKE2b-256 0db4af576fd83ae9edc56535d4f007006ff6e02841bfac06dee58bce9386b024

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae989a88c3f1fe9ba87c21dc62703a6a9fc02817cf14cacc62483727604b9cd6
MD5 e74669d9b1cd709404a5edee0eb07d24
BLAKE2b-256 04bc60552c463c9f1c645c93d4b630da3f94c4415692f9c8a959486c725a0e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-cp311-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.4-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7444d42b879f573aa9fb33e01239a5ae144134c869ae42caa36906194ede8c9d
MD5 a8feeddff6b65ca0f0ac47eed3492b27
BLAKE2b-256 1452389b511c2769613e216224f4954fdcca62bb218dda1465890a33bc419c50

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.4-cp311-abi3-manylinux_2_17_i686.manylinux2014_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.4-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41042ceb1fca2e959b0e78ee2de8263acb1ab4ce01c090ee9d53fe9b9e7dc339
MD5 32d59e541fa76c08f0309e0badfd9988
BLAKE2b-256 d42b24de1545ab2ae1d9273721fdc6994bf261443eb765cae05d7be1a47e9f15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2fc2483d977b1a7609fa5e2c8faeea53ae1c61fb28c7aa3786a39aecf4bfc2b
MD5 822925ae291d6b5fa5b4d4961eb182b0
BLAKE2b-256 67a3534596b58a413a85477b6059513912dcb32f110ad146a2a2d0176530a66c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45c57316b2fd28014f01f284a9f8a5017218387989d062652f92c4135c01aad5
MD5 1a91bc8880a923f2306e3f6fd441aef4
BLAKE2b-256 a4a49f8f510901d72b0933d2709fb36205f9d5e621faeabf00a364a8e063efab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.4-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c4d43f31d77f94e6d59c06b8e7220c87fed9a31f5389a5c22ebf7de3f5e9007
MD5 6cce7f7850e581e58a48a71759eb700d
BLAKE2b-256 eb663fcfa66775da648d54ee4237cd6ba898c682ce3756a4bc34dbb814a88836

See more details on using hashes here.

Provenance

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

This release

1.2.4 This release

40 files

1.2.3

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