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.5.tar.gz (167.4 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.5-cp315-abi3.abi3t-win_arm64.whl (563.8 kB view details)

Uploaded CPython 3.15CPython 3.15+Windows ARM64

tomledit-1.2.5-cp315-abi3.abi3t-win_amd64.whl (611.3 kB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86-64

tomledit-1.2.5-cp315-abi3.abi3t-win32.whl (577.8 kB view details)

Uploaded CPython 3.15CPython 3.15+Windows x86

tomledit-1.2.5-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl (865.8 kB view details)

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

tomledit-1.2.5-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl (803.0 kB view details)

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

tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (676.0 kB view details)

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

tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.9 kB view details)

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

tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (644.7 kB view details)

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

tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl (732.9 kB view details)

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

tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (585.0 kB view details)

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

tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (650.7 kB view details)

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

tomledit-1.2.5-cp315-abi3.abi3t-macosx_11_0_arm64.whl (641.6 kB view details)

Uploaded CPython 3.15CPython 3.15+macOS 11.0+ ARM64

tomledit-1.2.5-cp315-abi3.abi3t-macosx_10_12_x86_64.whl (667.1 kB view details)

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

tomledit-1.2.5-cp314-cp314t-win_arm64.whl (539.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

tomledit-1.2.5-cp314-cp314t-win_amd64.whl (585.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

tomledit-1.2.5-cp314-cp314t-win32.whl (557.5 kB view details)

Uploaded CPython 3.14tWindows x86

tomledit-1.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl (840.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

tomledit-1.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl (781.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

tomledit-1.2.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (654.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

tomledit-1.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (639.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

tomledit-1.2.5-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.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (711.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

tomledit-1.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (560.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

tomledit-1.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (632.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

tomledit-1.2.5-cp314-cp314t-macosx_11_0_arm64.whl (622.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

tomledit-1.2.5-cp314-cp314t-macosx_10_12_x86_64.whl (644.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

tomledit-1.2.5-cp311-abi3-win_arm64.whl (550.4 kB view details)

Uploaded CPython 3.11+Windows ARM64

tomledit-1.2.5-cp311-abi3-win_amd64.whl (600.6 kB view details)

Uploaded CPython 3.11+Windows x86-64

tomledit-1.2.5-cp311-abi3-win32.whl (563.5 kB view details)

Uploaded CPython 3.11+Windows x86

tomledit-1.2.5-cp311-abi3-musllinux_1_2_x86_64.whl (849.0 kB view details)

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

tomledit-1.2.5-cp311-abi3-musllinux_1_2_aarch64.whl (789.4 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

tomledit-1.2.5-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (668.0 kB view details)

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

tomledit-1.2.5-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (644.6 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ s390x

tomledit-1.2.5-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (638.5 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ppc64le

tomledit-1.2.5-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (715.3 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ i686

tomledit-1.2.5-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (577.5 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARMv7l

tomledit-1.2.5-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.6 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

tomledit-1.2.5-cp311-abi3-macosx_11_0_arm64.whl (638.3 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

tomledit-1.2.5-cp311-abi3-macosx_10_12_x86_64.whl (646.9 kB view details)

Uploaded CPython 3.11+macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tomledit-1.2.5.tar.gz
  • Upload date:
  • Size: 167.4 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.5.tar.gz
Algorithm Hash digest
SHA256 e68c790e44870962579c11a327ab5d3559d19473f8abb710f421f16b06346e75
MD5 785b1323ea12e675fb7039d4b29ea956
BLAKE2b-256 6c6361a051aaeb528a36e331caddba3433f7a84db2ccfd90a586c6425eb058b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.5-cp315-abi3.abi3t-win_arm64.whl
  • Upload date:
  • Size: 563.8 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.5-cp315-abi3.abi3t-win_arm64.whl
Algorithm Hash digest
SHA256 d1a6c6d2d9b8a2901a4c35a3800df4c8c08318bfae293fdde7db8d46d1e6d9df
MD5 8bf1eb7fbc42b8823fa6f364ea518972
BLAKE2b-256 2f94fe23d7e107b93571d642e3f3dd91fcec974f566d4391963cf8a3d8c42b14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.5-cp315-abi3.abi3t-win_amd64.whl
  • Upload date:
  • Size: 611.3 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.5-cp315-abi3.abi3t-win_amd64.whl
Algorithm Hash digest
SHA256 aeac895e0928f7c4c702f46498bb13de42812464a5e6b791e551fe9f4eede721
MD5 10ffdc89c2676425f6e9792108cdf8ee
BLAKE2b-256 14f8cc1133406f7aeeb5a2bcdbf57f366ba00278f8914d7274e512707df1bb4c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.5-cp315-abi3.abi3t-win32.whl
  • Upload date:
  • Size: 577.8 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.5-cp315-abi3.abi3t-win32.whl
Algorithm Hash digest
SHA256 1ceb8340c3d02d45317dbdbbb784c695d8fc76e94a461b32c9d6a0f3d37180ef
MD5 14f1151b58e685f00a62faab2c4f8826
BLAKE2b-256 34fccbe112ecdc4620945a0c1fca6d9fa97f684133388fafa8df75e323cbcb45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 103886c276f5cc6adbd6f74763fa75c4eefe77bef7ac6f1b25a2d7d69e1316f4
MD5 0be81e9f67f295408c39a6a7b20694bc
BLAKE2b-256 9f8965e11da82cc78bbfadbe8211ab1bcbaf321bba2cc1dbad0e18545f10816f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bc4bd7249f0671be3afb3d4dbee4311ed5b577e941bef5fc5fd6e778f37cbcf
MD5 12c8e9938f1146c6711dee41a038f1d3
BLAKE2b-256 c75b37cda2e0ed3c6d52e98750bc5bca114a568da782373d004aad5abe351f19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a692162a395aa3d1e13d07310a47eb17c891e02fdd37ce49549f63b85778aa3d
MD5 c950b305dc0a7d4e4ecbab61b7442b74
BLAKE2b-256 33f47ac4149759b01e3528d7f8d5fce8b3ba8ed887d8f7446862d69316634acf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d5c8d1c632dae25449e5655efd873e64931b701208c9ee43e56bb0df9722b70
MD5 97356f4f8900aadc8e802ca226ff16e2
BLAKE2b-256 b220c03e9730fba00d3f4846c27b694272758bd91c617e3707f4f6f7790bfca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d24a150b627591a02332db1afd536f93f29b00f51758cca76e952b3b4fc5dbc4
MD5 dd57ac2bfbcbf45822d8781c32689901
BLAKE2b-256 61466f4e8c21803f5eab447a6f7a862dd428f60788cece11e62001864fef3368

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b9d4e332a4f35dd2ba67cabeda334aaf198f75c9f25896fb9a7b4c3f4f1369e
MD5 37ae68ed1a00b28ad75d850c8b027ef5
BLAKE2b-256 3660c5316c13a46ca4a1b5e6fd654c6b8dd2f3a26c54c15e30a0e35355c29158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ffd8d493e1c2fd89481f8666d491773f538cc2ec68d748b99296d557ba302d4
MD5 7bfd4f2701a40096451dcb5b76da6f18
BLAKE2b-256 f3761c274efaed747f9ce667e6f9428c5c6682f4d979704b66bb1b31cb95aa5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea1f6c5ee0ad6aa83389b417c85155794ffff57624bc5fa2c529f8ed77457456
MD5 cf1d441433fe4416ee9f4b48bea6924d
BLAKE2b-256 51f657eac9c8e6d7637de33ac337ef939472170e8f84b191d4824ae6c289e897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bd0cb256a5f41eb97d1300b71386aa9cf8da310b57af775acc991010a62cb12
MD5 b3a442e8c3ad7c551b68b93674cffbfb
BLAKE2b-256 1b4401125b7fc699023652e7e69aa302d307ade5aa5c8c0f08b13961c9ac5307

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp315-abi3.abi3t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f198551fbaff2ab7c7d125285a873d8af0d6345d031db98691c2049aaf6f3fbd
MD5 9812e1eb4f195e0e229e1c641a3ab76a
BLAKE2b-256 86b178262c92029d963f00dc43598428cc5446029750e4f66deea17d9081e17e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.5-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 539.1 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.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b41bd44111b477ffa1a485415925b6f088a2bc28214855786ee2344547cc1e70
MD5 726d06d508929078f129b32a220d91a4
BLAKE2b-256 26c3da35b96e75865b9dfff728efe850075b2822022d5fadbbae4370a2695eb8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 585.0 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.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0d44834a6255576f6af5f8c63f957f417f389f74f4d807ebe62903c0d7da5519
MD5 1ea4fd67b52a92c269426bac6fc09adc
BLAKE2b-256 1d982a241af4f43d5f6aeb6be86634975e7f6b8dff72b43e290a21e934319e51

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 557.5 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.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d8fb24ff6fb75f0603b0df5fecc38dda9e1e75dbcdab3b7df2d3c8a160c1a6f5
MD5 63e7beed2b03279af7af4a17b10fdbca
BLAKE2b-256 a7563c68140fab665ba37428ce1337d94e7bf1265fa2d68eb05d96019797173c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c21ee94b12443cf4dc6ea1697a03f705b5244052e6946cb12b013418fedcbeca
MD5 cf7f756990c12386ce2b70ecb31f0c02
BLAKE2b-256 5980bf218b4d3d2826806f23cc7d12ffd27c7bd5890efaccc5a00dba837f0a1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccaa040c7f5fc1aeeb1cac7292eee9981773499e0786218b08dac8d719688d52
MD5 af6b79192e1936eeb6f7500543834a55
BLAKE2b-256 46fff174f7a2102265244d66efd6f5c8c67805368a98066f4b85cfbcb30a5113

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e57da1bed19a3c3e318b6de58181d20156e5e7350a8ed587b086ae94d5a2f7a4
MD5 7705be3bb7169e6aa35757d827e5678c
BLAKE2b-256 fe403ab85fdf4e63ff5d979453bd9e96fc4c5695443ce4920e328326084d9faf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1279425875c8a65cd75dc5108c1528a157bda7db6ddd799b5887d42a15a3f22
MD5 2e1dbcc024c74fdd336bea893b0a090f
BLAKE2b-256 1b38ce7a277577ccf45b348d65ec3fa55cbbd1926f056f59523f91fa9d819fa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 362c0bb96be865124cbe52554e45c45f81072a6fb43f10ace27f415badc09d4b
MD5 1e39324a2c3ec6817cfdabd48f2150bc
BLAKE2b-256 86ad1ed7065f0baa3d6c03931bad0b2f270bb7a92ff0c0f34c15d82d981c012a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dad90c490cd53e89076a64898ed475b7ff7719a6fbe510beaa9f27218a37bfaf
MD5 4a1542f45447c7700d84aa3a03d5fb03
BLAKE2b-256 bc8df93c2594587e01b85ccd2c46470e753e23eef200355120abc3001ec456ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d25fcf0b37cfb1e349f99da8a7397fde2bbb98cb4b51d3c56522127e2d798171
MD5 828f6af122957ed44f1ff4dd77af4275
BLAKE2b-256 2e6e482f65f1cae524b8d0d5dc8294ec4bdb54fe3c0e6a0891fc5efade5112fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0a08a1571be38d6d1b1561cd054f9538d8b6a55d5ca58f53c65178c5aa03652
MD5 497858fdfba1261cfbedff1d2cc4316c
BLAKE2b-256 e429d5ab8b93f634feaf3a884b7e8004d66f94aedb437bf1557ee857810e1459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 814d4f51a23a377f0aef865f5f57bde7270003d5acff1681448d2e1334abba13
MD5 9c5b4293c807a0b8e2bd07dedbd3ae66
BLAKE2b-256 1f8302c27a16e488e49dfc728cf613326f6506ac8a9a4883892d6b80a50cc5c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8aca2d895c316e132160acc1db9345bbb5249cc07db5feac7fce7b0afd4fb92b
MD5 1ce42ed2e4d108de7be17d29a3849c5e
BLAKE2b-256 b139c14142d7c8f84a3715049b4e0f2928249ea25e7b399298295428288584c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.5-cp311-abi3-win_arm64.whl
  • Upload date:
  • Size: 550.4 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.5-cp311-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 08cbaf9ef1dedaddfab0b430fc8bc6c3f7b4250143973a3c30eedf03abeb8789
MD5 bb58e0c797af9b29f532e2712db0512d
BLAKE2b-256 07349a344e430efafd404d4b114ad5f428af963867568f7ed5924c002c6cd6ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.5-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 600.6 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.5-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 bf34e35fcf6efb6ec191578a1631bf86a08a0455ae6cf943388c8fdd6c555163
MD5 1cce9ed3d8b2200835115e4c048b5182
BLAKE2b-256 eac9095ac915ce3c3b8175ac404980e3caec451148bda46a61316719f6e58de7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: tomledit-1.2.5-cp311-abi3-win32.whl
  • Upload date:
  • Size: 563.5 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.5-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 12ac27cbda95f2d2cae8415897c849e717c24a4cdf586ca7e2e1cde7d98b5f1d
MD5 379bafd19b17500377380d58bc93df47
BLAKE2b-256 0f59dabd6e8694aaeff3300d07b283fe0da23fc5f82386d73a7ad6656f478ce6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eafd958cfde6c37f9edf02018ea0c1f46bbf5394888f0293f9ec031c4e6b94f3
MD5 c75712b6ae5bedb9ac0ec98d96bacec9
BLAKE2b-256 5d009fd5c1d76c2c41c11011f57b82b0796aca1c2a05e26b4365bbd0d14b2853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79a274cd6173dea20283265ffd9197d9f2c304f17555307179ce95eed513ba5f
MD5 d57d543b4bace3bc6373622b3fe7a1ad
BLAKE2b-256 35efb5eefa596090d1e7d2f1433934aa3d40dfc4f36d24e578b2a1c744162c2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92cbe9d1b274082f3de938448076417f1114ca48fff4d887b1978a1942375f19
MD5 7e74a4d939a1e8a00b4bf8d004aea992
BLAKE2b-256 87a14f058f5327646377c7e6e05fe9a35bdfb3a37646955698d89280d8e6c41f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91f7a0f6e4813045fbb36d45d621307750131593c13493fe4cfe46efffa3e352
MD5 ff009efa2f315c468925d222eec1eaea
BLAKE2b-256 23bc40efb4de9e3c89977e64854cb38fbbc5c3af5237d27c5eeb621f4d089326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c52623670872f5266ea9923c28d7567d0ef675854ad088178c03ee52c417eced
MD5 88f319c36ecfc7a637c0870890209964
BLAKE2b-256 f2ce360a2fce348abad2d1c0f2ec313660132cc932094adab90a4d10bda59165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c605c6ec60da003fdb06d58f16d79bf78d619460d569eaec71a01d782be9809
MD5 056018600d938dfe2c2f8bc8f0279ad4
BLAKE2b-256 acb7825019562ae96a8632b6fd0778081afe3e81f59aa9fdee28d6d4d2002f34

See more details on using hashes here.

Provenance

The following attestation bundles were made for tomledit-1.2.5-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.5-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afbdc35a6d251165bdbad969f9b36d9cb20b091d774eaa3ab93b3b13c6b2070e
MD5 b3347941e8273b4a1b9e4187b8376218
BLAKE2b-256 17779dc1990b4c7c59aeebbf4ec67c9d0f953bc65727b958772c53c3b268bb2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57379914f83ebf49f61a75bfe7561dca5b07808dc92fbdd41996d9a3ca230299
MD5 defa4da75506e74c95acb93ff887534a
BLAKE2b-256 cd38c3571414baa7808163b223ef797bb555a9ac0331eb2e46c15d0d13732150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26f6a0074748ef4094d638188dde8a3814e4915246a86b62c8a9ac9dc119837c
MD5 123b489fca1eae8ca88a05beee7eac36
BLAKE2b-256 78c0cb0117af89cc18a7dce44d64c0b6ea3f6ed2d7594ac711c3de4ce76c62fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tomledit-1.2.5-cp311-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5462fb22a7bda34e6a174f08c936fb5aee3f4a1396b92411fe4811230569d18
MD5 1461cdb79efeb955146903c3d1455d7e
BLAKE2b-256 80444117ce5315a5c26a4669b29d6c334f9b0766962bd98ae5ec8097a9e0fe55

See more details on using hashes here.

Provenance

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

This release

1.2.5 This release

40 files

1.2.4

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