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.5.tar.gz (108.5 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.5-pp310-pypy310_pp73-win_amd64.whl (680.5 kB view details)

Uploaded PyPyWindows x86-64

pytoml11-0.0.5-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.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pytoml11-0.0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl (987.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pytoml11-0.0.5-pp39-pypy39_pp73-win_amd64.whl (680.5 kB view details)

Uploaded PyPyWindows x86-64

pytoml11-0.0.5-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.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pytoml11-0.0.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl (987.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pytoml11-0.0.5-cp313-cp313-win_arm64.whl (697.3 kB view details)

Uploaded CPython 3.13Windows ARM64

pytoml11-0.0.5-cp313-cp313-win_amd64.whl (684.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pytoml11-0.0.5-cp313-cp313-win32.whl (624.5 kB view details)

Uploaded CPython 3.13Windows x86

pytoml11-0.0.5-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.5-cp313-cp313-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pytoml11-0.0.5-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.5-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.5-cp313-cp313-macosx_11_0_arm64.whl (985.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pytoml11-0.0.5-cp312-cp312-win_arm64.whl (697.3 kB view details)

Uploaded CPython 3.12Windows ARM64

pytoml11-0.0.5-cp312-cp312-win_amd64.whl (685.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pytoml11-0.0.5-cp312-cp312-win32.whl (624.4 kB view details)

Uploaded CPython 3.12Windows x86

pytoml11-0.0.5-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.5-cp312-cp312-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pytoml11-0.0.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (985.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytoml11-0.0.5-cp311-cp311-win_arm64.whl (697.4 kB view details)

Uploaded CPython 3.11Windows ARM64

pytoml11-0.0.5-cp311-cp311-win_amd64.whl (684.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pytoml11-0.0.5-cp311-cp311-win32.whl (624.3 kB view details)

Uploaded CPython 3.11Windows x86

pytoml11-0.0.5-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.5-cp311-cp311-musllinux_1_2_i686.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pytoml11-0.0.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (989.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pytoml11-0.0.5-cp310-cp310-win_arm64.whl (695.3 kB view details)

Uploaded CPython 3.10Windows ARM64

pytoml11-0.0.5-cp310-cp310-win_amd64.whl (683.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pytoml11-0.0.5-cp310-cp310-win32.whl (622.1 kB view details)

Uploaded CPython 3.10Windows x86

pytoml11-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pytoml11-0.0.5-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.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (988.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pytoml11-0.0.5-cp39-cp39-win_arm64.whl (695.9 kB view details)

Uploaded CPython 3.9Windows ARM64

pytoml11-0.0.5-cp39-cp39-win_amd64.whl (683.8 kB view details)

Uploaded CPython 3.9Windows x86-64

pytoml11-0.0.5-cp39-cp39-win32.whl (622.8 kB view details)

Uploaded CPython 3.9Windows x86

pytoml11-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pytoml11-0.0.5-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.5-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.5-cp39-cp39-macosx_11_0_arm64.whl (988.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pytoml11-0.0.5.tar.gz
Algorithm Hash digest
SHA256 22ee71a9094052cd3b049e787709ba807646fdd02a1447782cdd23d40b0c5af9
MD5 07b3da8ef7f50d0a857e6128096de8bd
BLAKE2b-256 5c9fdc10a6e1a64e54e9a4f7ab57125fd7cf5671124f5c0a14e21f9beb50cb13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5.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.5-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f8ae85374e9a970d05b8abaf73c74fa50963c768fdc6d346d2781e4e4ea6856c
MD5 0a3e84e40ff8262fbc9badf5081bda14
BLAKE2b-256 fe9556019207d1232e9eec50d16df3ee0fe538b6c8e1315298cd27eb14e36c73

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3d097987294421844872df6e89b0b522f1f582b851eb2279974d3fe00528837
MD5 9639ce141a597fb24e6789c88065c151
BLAKE2b-256 8977ed64f63a6f70ade991e0183cf7c9bd9986580ac171b5b267bcd986ff4b94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8dc6c452f6006e956ba1fc486d57e66b048575b314208b88d5bc4804bbe63ba
MD5 c61df527a942d9d3cd245a435b94ef1c
BLAKE2b-256 558501e053455db16ff8f21bd29122ae09df52e1af111ca542f17d292e11d909

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7487f61e6d02566d17da3bfed6a97de46a0d282517e7d0e9782d6aad3a80ed2f
MD5 0e7ca73d20cbd9d5ba709296dbad3433
BLAKE2b-256 b5f85cad1c6ae1b969c9916378635c3ee9f3051a9e4c41e4cf90ac02a9d051ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dc0c0daa1a32885f65d0c96d575f994c13932458a3cd7ea14d300fae82bc2336
MD5 4cdda1d326dd225f5aac5d853c18de80
BLAKE2b-256 f31e6a41a11100204cc0c0dde15368e5c01be6150e652bcf860ee85a353eb44e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9c1c67170d4bcad8e742e5fd1596a9b35cb9ae73c2647af2fb29614a906cb09
MD5 96176a7ccf34e0ebf284562415134bec
BLAKE2b-256 ea210662eba93aaf1d3933c0c27961d613cf093511b4aea18b486c70e1546b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5418d3ad860980031687f859c9584273051df1d55fdb034c6eb2f4f07d97af4
MD5 935ac5b396ce16426b67194a11ef4449
BLAKE2b-256 7d7b540cd774846d1af0d8e2688d304e48d46bb63fe5d9ecfe9f0b08ae942958

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16827675cf44087f8c8c5254fbba317db8dc08b3352f7cd6836b4d8035c67af1
MD5 7b50b7a37ed990a4d352acb2e13d4914
BLAKE2b-256 e27e52080ba27bc02f1898f7ad1cfa6caa7d516e023730ef247711d612964bc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 64815d956f0a95d86683a4f3ebb84c9e399e5e7fa505235c5b22e0d94952f6f1
MD5 4072f8c0a74d5add4470e478b5429f0e
BLAKE2b-256 8b6c6d4d09ba3c064b2d0725fbe015e1a4987326fe2aa6e92c58a077036ba4f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5748ba24ff4c216c9f18d1f42c6ec713427ec2b69069377c20292b189f4e3cbf
MD5 ead56312e9dd7febb6662633496cb990
BLAKE2b-256 38435b7e377440d325e038349d8e1ac11532c0aa374621fc3218f6b9c59d6c70

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 605562e4fdd219a5018431e8dc70cdf233456e3b05774b1b47deedb893836ad4
MD5 8b90878615ae330fea51de7251919737
BLAKE2b-256 151955f5707e97c3cf2df0a9aedd1db67a797bdc121363821341627e9c920a5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b59970f3d726eb9d44da25d5471df4410e38c2a399d43f282c0e4b529f26e91d
MD5 86ded0a00a46765adbdbf7d1aaf15cfa
BLAKE2b-256 2c070bb00732c65661a5082da5c00cb6c7a4379e83cf328f84330ca05d383009

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1fb6cd639af9be25cbe79d6bbd42d4c70d12b843597c757db29ad4063d831cd
MD5 3f1b58a0ef7206b9cab46f9fc564a95e
BLAKE2b-256 a0ce3eada23fac03bb6d8d8a4eb02c6022f3c83c86335fdacecc53a36843c6c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 172ffc15d0a2a83c5eb3af8af18c42e75bde2fdcf3128bff0b94e99002a3aecc
MD5 2b0a4f11eee8527b72f2ca5d07dd9b21
BLAKE2b-256 10f25bd1682e84895793ece83303a4a0a7cd03f464c8d9119d4dcb3b3565e5a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7f33c6efca21bafab79795901e43d6eb2e1ff73cbf2f22261af07203d0eeb1f
MD5 1ee32a5231e5e75c74b1b2d47cb759db
BLAKE2b-256 ab92a8475f60da4aa9eecbc7e672501bbb24d6e1e40c4683c0b36274c9ec2c4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33ba57315fca69411120bfe6df3519a5a20ffe4b43b285532539b8f37b4d681f
MD5 2771b46a190cdb1aec989d845533ec3e
BLAKE2b-256 a4250f89b75ffeedeb7f7a4495d9b1eb20db1232d70038901ad25a619a271a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a6e99476530a1a65f4c5536a410515868070c5ea62416f72b56657cbe680f058
MD5 a3c91d7e758b35aaac571409d60ecaf8
BLAKE2b-256 0e6f2816425ee343cc6d0d40218a58ec50f783ea8cee2b29075edf19d82ab2d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 92de338fd6281ff0976524e9a53a63ccc132c2ddac73bd55063ee71862232bb3
MD5 bba2a10b9013e6476d81d2b08f6b613a
BLAKE2b-256 46648055ea827796004023a824bfa502560e8fe6bd0b1cacb85dfd0a9865d85e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 935e220aea15fe01c3d17e17d8f8e450b9c5ca4997c1c23a70cbadb934cd6c09
MD5 9f0c52cca1a49ddd0d9e5a32eec9a14f
BLAKE2b-256 44fcb9d2cffe14236eeb9965b55386c39dc2de88e86a45be6b1b338e74d5b3ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eca03ba29dc59f22b7382a6d8751a6db28ce966e3c7349b77aa4e4858c3ccf02
MD5 de4f29d5ce3192d3b225b05d278bf9b5
BLAKE2b-256 9d8fff537e0b1bc8dbe9288c99e96e7e45c35d2156b770c67befd041407c0725

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 394313389080192d5370847bf8d59139e6193a97bfa626fffb9e027de7c20323
MD5 4da3e417eecce173d90c7ea2b0ab6af0
BLAKE2b-256 b20388feef427c851e806cccd163bbdb11723e5166e9cbc6815d806fc9be4c0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cfb89a34e30b90dd292c7c69968a4f2ee9e1b3e988759c17711df3fe15a9967
MD5 06f864c10255d08c4289f4798797ac17
BLAKE2b-256 406290d5736c175496c1d1fc5a5f0b7b2074ce6697c1446cc72cbc9d498ea6a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43c2aa54dcef959f54296eceef8cc2373f8ab175c3f198c7ac6a8f8ac9a16242
MD5 ec3718b8b2fcb48901526d2e7934f2b8
BLAKE2b-256 8b8976ab3679c3ff68eab4a2bb14ba54e3199b9516ff19956399b65cf1bc6b61

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a51efb439f031b916cdc4ed5615c21618c8100ae8975fadb5723e2fb13fb46d6
MD5 3be5a1ba0d1dc734e7aa73ec1a1eee0d
BLAKE2b-256 468d0cf11d140c3087977b4d24b2a621e30b900483759b4d287a4e641955d206

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b47544be8747d87200db0b3f7da21ce9057f1c32a35c1b140108089f891183b3
MD5 d05ce52b959559b788b01ad082a498df
BLAKE2b-256 fc6415fd5fc2cab490c72fe7d17e9c54d1dd870de1f70c9dd653e11d47e6b1fd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 55bb8274e4afcc6b55bb964fb31e9f080f2c7bd6232aa937bc81810670b84fec
MD5 e064f3da30e197ed9df60e8b87b218a5
BLAKE2b-256 256cf13c2e0c498ac7408e5b32e3bc85c291417ca5665f059f21ebce66104eb1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 039c5a5e895bdb2a9ff752df6876f82134e225542d0fb7ffedeb1a375c6eedf7
MD5 5f66f304e062bb2346fa74aef881dae9
BLAKE2b-256 4e12040602c40762ee022b6fa7e15039dd684f8aebbe0427d291d6d458f52990

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54ff3c258715363e58cd068cb25aa2f1e682b7c77b7f68c6c2a0705665f4278e
MD5 9dd99a69df1295946b05ccde1f7883dd
BLAKE2b-256 f3b04320d364a33bd05ee570b0e655c05762a31c1d8a1a2a30edd8d81c4a55dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 def72c349ff62a9a0aa54c99e948b34c186d7ad603daa43b46fbacb65153f1ef
MD5 418556fd104f9d2828a720ec548ba804
BLAKE2b-256 3a1ef3936bcaf373a5db32bc1593c46ccee9715fa2a720e2039f0394e7424324

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8122c23baf989b5112fef4a8134fec77adf2354198d3fbef68217ecb3d432012
MD5 1312d20b3d6232e848d7395c6c7f67c2
BLAKE2b-256 8ea8af71bf49983cb81a07592aa9e161c13d255713f0e37920319d72e0e919e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66a282a49f818b385e7fe12b7f09f1df6c144c3cc8693e26b7bab64576b07952
MD5 a7e4f51b0052eaf909174c66a37c675e
BLAKE2b-256 61ff42439ef4d18a21d40e234892af8c7f794f2de177998504250b17d3b1e128

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9edfa882e8a0486d112a2be3e732fe0df864cc67ff688373afa4599094c8998
MD5 58bfb9fca25c0e279eb61154f89c31fb
BLAKE2b-256 2974ba165344ffa5fe7611ca71c9fabd0d685095993329d0aa44cb1241729403

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 13fea9bcdb9c12d52ee1e52a9ec988d7945d804e633487791f1d46c83475120b
MD5 e2236ccfbf9428a502d94bb3d52caedf
BLAKE2b-256 dbac3d68bd7d474d328c4fb453577f38f54f99bcf096ff7b2bd47e1314ea11ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 16e84beb93d7b187438741d8e96b1a489be75eb5c447894dfa69e9e592362fdd
MD5 b319c087a1b7580efd101cd0dd93a226
BLAKE2b-256 8c000a9bce3a587c2f72b0166f0b0269c933e4e3a5c829b06006a58101daad5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3781fe187b3637942b7286540c17cab7ba94f3b0fc9fb9dea20ebd0f2e626fe8
MD5 ed1066d9de38a1895019b258534179f9
BLAKE2b-256 82377393d02d98d4d92045f5bfb6e70948c60c8c5ad1f0826c3eb4db95ec2724

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d369621d2b80561225e805bf5ba3a53def17843948716e83a1b2d6ce178cd38
MD5 d5357a8148530efced09e7f03993b392
BLAKE2b-256 d2587f098ce4342a034869308cf80795f05a759eb8f23e16619ad4fcd44dfbeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e2b6f7236d6bfe939743e364bebbfa523733bb3d4a9bd57371d5ee64f9443767
MD5 1f0f59e784c2f6d2cfadf2eaf503d60c
BLAKE2b-256 3655871ad3ee6a99769ad3cc57c1042b39596c685a92b471f7fe11361093c305

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c0da4aa855e7abeae7340ee4b707371c01fe8e8454683dc693e8ac52e4ca304
MD5 478b2a0ff5d2e671324763c678b5333d
BLAKE2b-256 efd839cfb3b1939b301b2355e9603611458aefe8e812ea5465b9679799488842

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee9b6c987d5d49018169fad38ecc9c5d10ce1343dc8c4cd11c1a6936a0304f75
MD5 4119ea72440d400c770f06af950676ec
BLAKE2b-256 3af4da49c0fd0e8bb7631e2e4de285a641c99f088e37a21647fec55a63e27c59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 078355f2524095103326fc7fdb83a4c603f0622fc491b403818d43481fb6b29f
MD5 60f41b75902ce47d2885c4bbf13ce93b
BLAKE2b-256 e3513493a527e3554c3009d8262fa0140f82c7306d9d017747304b467e56d717

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 fa5ecf9f2589a13bf16e58c18c34b6f5027176465d3d317e453a7f93f72674b9
MD5 055c993e581443514ccb05f8839182d0
BLAKE2b-256 3487251979fb0fe9e2f362158ab914b020fca1ca646a9e080d3c949a8825a878

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 17201f2e89f65bbea58106c08f0044cfd00778d6c82287e211b66166342a4f0e
MD5 d6ce202ad628dd6ac64c9a752f5d446a
BLAKE2b-256 7f307cae7c64d0a6dc588cfca61d4fe87a897cfe55ad67a07d8c2833d46866e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for pytoml11-0.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7e94b3e51d083f0d7a77a1503b4a7e12353c13a129ed9407bcd56917f52e91ae
MD5 ca7c517013aac2dbedfbac164b673f08
BLAKE2b-256 6b8279259aa8e07aa18d21e4e13ce3d359a9611c01be967eb36a96ef8e0f00aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea1efaacd328905cffb3edeb7e28f6ad773e6aedf7a9f892ae198916323dc70d
MD5 930d9ab1970ac0ba1308f9024a074611
BLAKE2b-256 534dff45c956ca3fcde86a661f7fb0df1a0708e5a73addbcbc953f1e285403d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9264c74354b3c531e901be0ec7fa53cd3039560c76cca6f59586eda8a0276895
MD5 fd6f21b4fcb10d9ba6a5fc2b281cc5fc
BLAKE2b-256 4da71f819156bc7bc0e96354f503c96a01c5b03a2b5c9699cab2b87dd59702a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa85d7a32c8cacb4ab4d676ab47697369300091f602710b0f51b6b2737cbf727
MD5 e329affbc2eb6fa5321abc32680bf0f1
BLAKE2b-256 9defa109eee0947155a9f3407fa49eebad9344b41b02ed85da97d5062da31eee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4f043e3935333171a82e948002633ec67bbeae3f88d56377f9bccfb080e60ea
MD5 e6424cd63b45e3b959994aeb86e02875
BLAKE2b-256 754a31035b5385016a46ddf5a12e0d69da045fe281193526b25bf7ca617367a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pytoml11-0.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccf977e0275ed1b963708e17dee735c3f0082dd47cf0ebdde74a56c0fc9485a3
MD5 c8eabe0fc24785641935a2ff7122a785
BLAKE2b-256 3c92664db662d7c022766b4fd877b5c70734fb9cd84075f6c92ecfd2057cbf9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pytoml11-0.0.5-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