Skip to main content

Bindings for toml11

Project description

pytoml11

image image image Actions status

pytoml11 is a Python binding for the toml11 C++ library, designed to provide a consistant API for editing TOML files with an emphasis on preserving comments and delivering well-formatted output. Just parsing TOML files? Then opt for tomllib in the standard library, or rtoml if you want that Rusty speed.

Why pytoml11?

While tomlkit focuses on preserving both formatting and comments, its API can be inconsistent, and it occasionally exhibits weird edge case behavior. On the other hand, pytoml11, by using toml11:

  • Does not retain whitespace but ensures clean, order-retaining output.
  • Always preserves comments.
  • Offers a simple, reliable, and predictable interface.

This makes pytoml11 a strong choice for tools or systems that need to edit TOML files without compromising on structure or comments.

Installation

Install pytoml11 using your favourite package manager:

uv add pytoml11
poetry add pytoml11
pip install pytoml11

Usage

Here’s a basic example of how to use pytoml11 to modify a TOML file:

import pytoml11

# Load a TOML file
toml_data = pytoml11.load("example.toml")

# Modify a value
toml_data["database"]["port"] = pytoml11.Integer(3306)

# Write back to the file, preserving comments and order
pytoml11.dump(toml_data, "example.toml")

Parsing and Serialization

You can also parse TOML strings or serialize Python objects back into TOML while ensuring comments are preserved:

# Parse a TOML string
toml_string = """
# Database configuration
[database]
server = "192.168.1.1"  # Server address
port = 8000
"""
data = pytoml11.loads(toml_string)

# Modify and serialize back
value = pytoml11.Integer(3306)
value.comments = ["# Better port"]
data["database"]["port"] = value
new_toml_string = pytoml11.dumps(data)
print(new_toml_string)

Alternatives

  • tomli: Part of Python's standard library (since Python 3.11), optimized for fast parsing to Python dictionaries but does not preserve comments or formatting.
  • rtoml: A high-performance TOML library implemented in Rust, focused on parsing and serialization, not editing.
  • tomlkit: Retains both comments and formatting but has known edge case issues and an inconsistent API.

pytoml11 provides a middle ground by prioritizing comment and order preservation plus API reliability.

Contributing

Contributions are welcome! If you'd like to contribute:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Commit your changes with a descriptive message.
  4. Push to your fork and open a pull request.

License

This project is licensed under the MIT License.

Acknowledgements

pytoml11 utilizes:

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

pytoml11-0.0.4.tar.gz (107.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pytoml11-0.0.4-pp310-pypy310_pp73-win_amd64.whl (680.2 kB view details)

Uploaded PyPyWindows x86-64

pytoml11-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytoml11-0.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pytoml11-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (986.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pytoml11-0.0.4-pp39-pypy39_pp73-win_amd64.whl (679.9 kB view details)

Uploaded PyPyWindows x86-64

pytoml11-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pytoml11-0.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pytoml11-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (985.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pytoml11-0.0.4-cp313-cp313-win_arm64.whl (696.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pytoml11-0.0.4-cp313-cp313-win_amd64.whl (684.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pytoml11-0.0.4-cp313-cp313-win32.whl (624.2 kB view details)

Uploaded CPython 3.13Windows x86

pytoml11-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pytoml11-0.0.4-cp313-cp313-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pytoml11-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pytoml11-0.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pytoml11-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (983.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pytoml11-0.0.4-cp312-cp312-win_arm64.whl (696.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pytoml11-0.0.4-cp312-cp312-win_amd64.whl (684.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pytoml11-0.0.4-cp312-cp312-win32.whl (624.1 kB view details)

Uploaded CPython 3.12Windows x86

pytoml11-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pytoml11-0.0.4-cp312-cp312-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pytoml11-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pytoml11-0.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pytoml11-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (983.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytoml11-0.0.4-cp311-cp311-win_arm64.whl (696.6 kB view details)

Uploaded CPython 3.11Windows ARM64

pytoml11-0.0.4-cp311-cp311-win_amd64.whl (684.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pytoml11-0.0.4-cp311-cp311-win32.whl (624.0 kB view details)

Uploaded CPython 3.11Windows x86

pytoml11-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pytoml11-0.0.4-cp311-cp311-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pytoml11-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pytoml11-0.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pytoml11-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (988.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pytoml11-0.0.4-cp310-cp310-win_arm64.whl (694.7 kB view details)

Uploaded CPython 3.10Windows ARM64

pytoml11-0.0.4-cp310-cp310-win_amd64.whl (682.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pytoml11-0.0.4-cp310-cp310-win32.whl (621.5 kB view details)

Uploaded CPython 3.10Windows x86

pytoml11-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pytoml11-0.0.4-cp310-cp310-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pytoml11-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pytoml11-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pytoml11-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (987.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pytoml11-0.0.4-cp39-cp39-win_arm64.whl (695.5 kB view details)

Uploaded CPython 3.9Windows ARM64

pytoml11-0.0.4-cp39-cp39-win_amd64.whl (683.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pytoml11-0.0.4-cp39-cp39-win32.whl (622.4 kB view details)

Uploaded CPython 3.9Windows x86

pytoml11-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pytoml11-0.0.4-cp39-cp39-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pytoml11-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pytoml11-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pytoml11-0.0.4-cp39-cp39-macosx_11_0_arm64.whl (987.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file pytoml11-0.0.4.tar.gz.

File metadata

  • Download URL: pytoml11-0.0.4.tar.gz
  • Upload date:
  • Size: 107.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4.tar.gz
Algorithm Hash digest
SHA256 eb4369ecf5df6d166bc2e5cfe7a47034ceb9e857c7be3031e8bb310499096e9e
MD5 d0e5495975ee36f93cd6a7b4281696e8
BLAKE2b-256 e67b1d68734ded107c89b3f838add33f3f6da6ca1f7f0cb66ad19b0184fc99f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4.tar.gz:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4eeb9cd01e6dd9e081033a5f898478cb71b13938e75ae21ba5ece35644668812
MD5 bd869607ed1eb19b430789fc938aaeb6
BLAKE2b-256 72d508ef6cc063a152feb3641af17dc28a17fd797ac17360f11b14290969a9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-pp310-pypy310_pp73-win_amd64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 096c5da976f20cffea5fd736615f04e509e3bc1669291bc388df20dc575ec7e6
MD5 66eb08cc15634b756af6744cb5047540
BLAKE2b-256 d2cbc54ef3d51ba891b8e3cb85eccd0f7a743a7ef6e5e99571c4c41d6e758550

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fcb6767e026c461b93dcc95c0a561b782553d2169950d4b2a32a85825512f244
MD5 b29322e9e8408b3b133758fdc2f14c52
BLAKE2b-256 d71c084530a4f8acc53e3bbf4c3c07d1680540c0bfd44def87e31cf27e184f21

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01bc10292dfa8d66d05ec50442c48831208effb0a662d1362a635c1772178f3b
MD5 3db1386eb74a1bb6452a83d94bf08ad0
BLAKE2b-256 9c5661f20c35d688a254ef8c7e2598b19485c4a8cfb07c634445bc767c71c94a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ece6a73a4c6a5cefa562831351ca9758da3b039f0854764e374c20c45b4693de
MD5 800ba7c13fafc64fd2216715ef38c06b
BLAKE2b-256 a0448372c6a7fd2088be26a730f19254440532dd855ed356e5a56917a5acbc52

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-pp39-pypy39_pp73-win_amd64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 627ac17fc6fe4d93754afadb8bb4929ccb42abfcbf00252a6c606125ba8dc594
MD5 2dc636c6c11a750c3dcc2d0b37ed353b
BLAKE2b-256 a5f491a84502651c9e733b48167c13691846a6f0fb32bc23821562b20a5c440d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6fc560b8b7d894644f3699090a253836579ff19cd5f7679107f72ad2cf5a255
MD5 8e7ecf354358a7fc7e8a525b8bb5c00a
BLAKE2b-256 f5fa531eb73e69e14f66648ab2a79a3747ccd7281875f3f2150a7896fef4f045

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82f9bf9808a0dd9217442ba1cdf3084eb392f6c39189d15d2a1672861fa7b040
MD5 64794e6b7182cf253e18d8d47faf08ec
BLAKE2b-256 1880f92f99eed12f96313d499a3ee475a61d081aa6b2254ceb9feeaf48480c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 696.5 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c1ce731c69af0ab18358fd7c62298baab3e3ef4c5f89121d184e07997d5dc782
MD5 a124571e870e160f41c3a42d2e7cc56e
BLAKE2b-256 b050daaa0a381f237cc08aad6df4996aef05cdd3c2ccc0d8d1dd179c403adc51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 684.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 48ace60079ac4bf6a3a3d94822325aad405258ac68d27a53f990bfbfa155a968
MD5 853a58c61e22245aac80fc5a33e8a345
BLAKE2b-256 c70586c22bd4281461d2747306742d406e4b09c99cdcc54a05066a374f981ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 624.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c6b613145463769e7a9f309f9c4ca4e477ecb7173f8aa46ab10e8fcd78f7a638
MD5 0c6456aeacbaa2b3901633d6efa56a41
BLAKE2b-256 13dd7ab32265815656432fbc0b7090310c412e9c7adc096c3230248bd15ecaed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp313-cp313-win32.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95efb32345555055f6414b3d3ed50b4566a461a35df94c8839e9a7aaaf0506c4
MD5 279229707126c1270e0a45fb52ea7dfc
BLAKE2b-256 a16d788d1bf03332bfc46137a08628fd7606d7db107c343072f4d1d94829af3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 43f27c1928057f7482494ddc8d9f2ab4504a7066e363e5a713a0a99842600989
MD5 26bab4a87d0a88ce10d8afd2792b02e8
BLAKE2b-256 4172a07381d615d81f071a99ea8b7882ee336cd045de356d4e82040596ade8a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b0757068f90f207ae2d6212c9bb6c9cb90162e206b56d6f49a62e4eeeab0dff
MD5 103a9b529899cc6f830eecff1a9d8a5d
BLAKE2b-256 a9e266309e06ca782dbcc0d0abc50d057af354e75ad98bc3a6003966808d21d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 341349dff4c2f0a02359a61df29e3df11bafa4a2b556f72e2fb5aa2d2ced3d0a
MD5 6aa1108d814e87909d03c2a5cf6a3b22
BLAKE2b-256 83d93143499be5de6e99c5a874b19ddf2f6ce355f2f971094ecb969c8a546127

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d036f50b0af56600a36a382aee4a8d429d22422c8c82bab8ad3e3334e8bb0fa
MD5 058fc8b140a00fedc54c654b40220be5
BLAKE2b-256 3cb12d997fe7f46a868ebb57c8fa13659125ea7ca5b4638784cf6a7fe8089e70

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 696.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0e9c2ce0d00a734c774549a0f26ed18e776263f511a0ab483b725f5aaf88673b
MD5 1ab8730aec07c50211d15f43fddf9725
BLAKE2b-256 60682db49814a3c2dde34e611d3b7e7a5bbb24a3a63136381400f13fc82b312b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 684.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f397c31cbe95bd2b5f84747bf70a42b775059f370cf01f02dd1d867b6ccdfc57
MD5 df762e4330eb4436025019906a1bae13
BLAKE2b-256 86e976d8f149b19df3bbda624e6eb6e977ac7c3c57fd3f2f65717b46619f0d4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 624.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1cb98c9f498b96d0133b65c3fdc5c4b3bd975baa24822c64d39846cb262e3223
MD5 8e858918969fb38ab73dbe1c1ce4877c
BLAKE2b-256 3a4f2153446b959e045f67f72d95f0334eb44369e2f7a86bcb724ff6e59d21ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp312-cp312-win32.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66d1a6340ff5885d878cd48ff4e5efcffd1dd506b9ba75254322ff9e96815812
MD5 260051495f61934280bf2fb6593830b2
BLAKE2b-256 c88e427e7a77d0eebc2d5d2d1d5d5a8227559b42ee46a2bc19ffe47bc4bd5c68

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59e044cc5167f5f524e554cd8c30bbb487178804540d1d20a393ab1539b50cfa
MD5 8a040f3429d0b572d97f9b026fcc3879
BLAKE2b-256 37142f19a8657ca2a48f192a1caf1fad0517a64a633d190b10c0ebc90cd1133c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f67fcaa15822e41a7e19750202e34915b22ff188c2443eb6d561b8b9ab22a4e8
MD5 8134ac3f95efd1342127538f4a5bc748
BLAKE2b-256 b4cacee1fc0381b53ebcc5a422dd5da5da9968c65fa11a78dc859b7fbafd1115

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21db5e0bd200aa3dc28b5769f8bba9aa0c7a78954587c22f1f7cdcd6d4dbe950
MD5 aa13c6d668cfe600a07bd52a9aff37ca
BLAKE2b-256 4aa4a42a164a648a1d44791c871f2e3343f4092e16fca20d9fc13b5b700a9503

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b4f6ab08dcf06e204749379b91943e53831fea2cbcca80fc53d40494da91540
MD5 bc87e923f1edfe343d802b5e03dbe9f2
BLAKE2b-256 ba38d7eccdb20d2b623056b5d56aac1351caa34f3e5111013f3c18d194b936d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 696.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 576d9a4a35870ad40a7121ac237c55c0706a43528614f934aa4d249931429721
MD5 cf070af12c435a221cad35bd433fdb08
BLAKE2b-256 e1dec425961033370f8e7e15e3cc902ecbd4f674e012e107e70ca8843cb3ac38

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 684.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 59c5cd000ced64b3dedc6a078d2d2cc46a0edcc4da66a3466f5923092db4c8b9
MD5 54badd6647c4ceeae57ddcda36d65a53
BLAKE2b-256 2c243f3cc008b96533e267f5d4a88a67abd2c33809a1b5743c012515069c4f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 624.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 75a827c85e70fa263c35d849ca57e2bf874014f4f60c5367e3a5757941972d02
MD5 15cef2e2de8a74b2c5a41abb05c9dfff
BLAKE2b-256 b8444f3b95fd293bf31741bbda22b2e19c665f31f97baee3c643c2ae8884b27d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp311-cp311-win32.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f94f66ce8185a7a57378160b01a1842e5fe2f0db51cda8041f5340e82db17f2
MD5 2a692bd921c91ba88fd710be544cabe9
BLAKE2b-256 f85570efd0a70e6d8276a53d57b430aea32a613eaad467620eb0a6a1b2de5709

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b78e6e8187bfd223637ce64fad8e869db59234bae0817c4f88e88cab171399b
MD5 ac0380a0a295da9d8f7055025c2400a1
BLAKE2b-256 3b93bcfe872c6d40e17837d02f0949f2bfd5f2c96b0691c970e1caf2fe1ab423

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d830311101ae7dcbe901fa64c0773dca79605bf19334a693f3ba4ef968b7d29
MD5 29f0763a12aa40b447c635ca0caa8664
BLAKE2b-256 75a274c8889c1f5f51248b945406e1d92fae2ce6864327137ee7e69f66d326b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af4623eeb07c34bce6c976c1f4e80a0bd46fb720d1e6cc2f715ad983d8bf4805
MD5 0513c429b70606b244bba84fc7f299d5
BLAKE2b-256 8504caff004a8a36e6dcfb48c1a3f4952adb01ab8d7a5386570ffbad8dc65ae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5201056e882186b8d4ca637aed4ee031b1e3f7c442a51d3904a65d46694bbac
MD5 09d7810efd882f349e8abf6145bfc409
BLAKE2b-256 036a049d821e532a8ee2e1f43fcf9e88284866dcc2979365c4220504575c3d64

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 694.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3d6ecc5e3e8f728f964d14d87e1afb6025f954123f10ad7422c7576338afba22
MD5 06c753ddeb7c0b138555fba73a73c357
BLAKE2b-256 1a9c06cad50a9f0117ecc5dc98bd694334f7323399978b21a7a8d3b3b7a25fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp310-cp310-win_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 682.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20912bd8df6812a8eda0308406027bf1f64f3987f2d8675e2f023a9d2a52ecbd
MD5 708d767632ee83a31113bf210b070e94
BLAKE2b-256 641818763a2f2317588fad30d7eb4b8b2bfdc9356d6e7e887bc107173d5f4078

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 621.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c79750eaa91214db9bf5e39634c4b9592b1607a6b88d9d2ae2c64c5a9ce9fad6
MD5 badcfba930bfe15a9e68dd99cda09b54
BLAKE2b-256 cb0aaf8b0771571de7c117457268daf96b75140c4f5ebabdd9bff2f7d8a95d22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp310-cp310-win32.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2093e328102bb731767614139edca8bf9020462226c3481590dbbab1aadcee6f
MD5 e5d9f31574d2011c45d4d8e04434ba36
BLAKE2b-256 e4b1eee9be33b2a98b033633dcd8f1c1a9fe97b8602967178e2016c486496ea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ada10e3ca2e9f92ae296188526b2b6270dbfc12dbdd9145fddc4be93be550ced
MD5 dafc380d879bee33fe557986586b95df
BLAKE2b-256 ee1f040bb1d7bbb228d9f3b02a4ae9225835cff43141c8383bc42fd2412f9d51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26066547fe6a67853eab201dbced4d0a7a1659c38e24d8071fd5bb1a0e90752c
MD5 e2a7d4740409ce03d46c98dec9bd604f
BLAKE2b-256 818e0d9b63f5cd65537c486f0a76ddc1771b63b1816b4d1c5cf8d646d6ccf8b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e0b47ea02b3430c770e9b63fdfd95a139f704b62842edd94f6fbc2cfb4ec505
MD5 8812babf9396ac165ff87bad8117f02f
BLAKE2b-256 0d6e8b47de4e51fc381da6019d773a755b82220ba6bcb732be756787a45f2132

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2cd595a34ffe78211ed0c95c4791c46d1e6b792648756ce32f4126570515812
MD5 59f918f5f871a97e4dfe12f6cc7607eb
BLAKE2b-256 78b70e22eac351a0454c13f0b6c4fe97a692ac7ab142d439297df8091d2ff166

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 695.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 0fef4840363dce19ef734a72b160252be105b4629bab20b4b161450cd782ceaf
MD5 a0e9a7873ac691ca94f2046984746f9a
BLAKE2b-256 e94d9727413791c9d48280b24b9e22e375f00159901427a7b2ce554ecb69ed6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp39-cp39-win_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 683.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2604d9cb496a36f982d80edbe46615231d87446368217afb85099fa7f9a4f16b
MD5 20b3d4f2a94057f6caa738a8dae7d9d1
BLAKE2b-256 20dd6cbdb789599c9e8b1ab636b24b17177fe03624adf259f04c3cd7f5dc709f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: pytoml11-0.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 622.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for pytoml11-0.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d024c2f11448973f6dfd00dfb43f95aec24da4f27881484f353ec01cde3aa8d9
MD5 ba646a6ba1df14b0395b335f5eeae375
BLAKE2b-256 dda9b2d81f038ca1458e89ba2e9d296be0fba07c33ad12e0bdc13d7c3ebc10a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp39-cp39-win32.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b8e8b11d6cff71eb12de7c519d7865325bbe83eb130a5ba08b098b3e061f3df
MD5 e3902be1009e2b70e238dacd692d0ddb
BLAKE2b-256 4141863be2157c3990efd180b7967c3bf457793c9c7554c567a8347e91b78ab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d20dd86510bb9366419ef4c3fc25c59a01c4ab6afa16172c58f091edf13eb07
MD5 3a32e4d829e0b190c22e0644f86f0a6c
BLAKE2b-256 9e4ca30c5e65a5c54d5aa7bb070551dc7342bf2ba4a2b97348a185ea8d466436

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13655c8cd5cabfc2d1b2b6a700e224bd1b471812c5cb71fc7ef3c0d2b813b3cb
MD5 560160c12e8b63098daf09629d84e287
BLAKE2b-256 cf3c9cdbdfbe8778b36236019a4089f157c05527e76f7196ea504a79467fc671

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9ad4068b0f23fb1a4ed09bff6321ae8da9d862c50c91ff2e19992fb2844e11d
MD5 b73fceef19365ccee4eb30869bd22d74
BLAKE2b-256 f971d223906d2e428172500c4747c763b8b913b731838b70687b4f51635c56de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on thijsmie/pytoml11

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pytoml11-0.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27e9c72557edc5ae498c7d2036ed9384ac7f14538bbc6b51a6d616939b9190b8
MD5 cc51ed4aa11072cee402743484cade02
BLAKE2b-256 8cf333a39ff5e5ab7df6510e3ced3a93648649619279df1036047858371a546a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on thijsmie/pytoml11

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