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.3.tar.gz (107.1 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.3-pp310-pypy310_pp73-win_amd64.whl (673.4 kB view details)

Uploaded PyPyWindows x86-64

pytoml11-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

pytoml11-0.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (974.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pytoml11-0.0.3-pp39-pypy39_pp73-win_amd64.whl (673.0 kB view details)

Uploaded PyPyWindows x86-64

pytoml11-0.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

pytoml11-0.0.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl (974.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pytoml11-0.0.3-cp313-cp313-win_arm64.whl (686.6 kB view details)

Uploaded CPython 3.13Windows ARM64

pytoml11-0.0.3-cp313-cp313-win_amd64.whl (676.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pytoml11-0.0.3-cp313-cp313-win32.whl (617.8 kB view details)

Uploaded CPython 3.13Windows x86

pytoml11-0.0.3-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.3-cp313-cp313-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pytoml11-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pytoml11-0.0.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (973.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pytoml11-0.0.3-cp312-cp312-win_arm64.whl (686.4 kB view details)

Uploaded CPython 3.12Windows ARM64

pytoml11-0.0.3-cp312-cp312-win_amd64.whl (676.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pytoml11-0.0.3-cp312-cp312-win32.whl (617.3 kB view details)

Uploaded CPython 3.12Windows x86

pytoml11-0.0.3-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.3-cp312-cp312-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pytoml11-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pytoml11-0.0.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (973.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytoml11-0.0.3-cp311-cp311-win_arm64.whl (686.2 kB view details)

Uploaded CPython 3.11Windows ARM64

pytoml11-0.0.3-cp311-cp311-win_amd64.whl (676.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pytoml11-0.0.3-cp311-cp311-win32.whl (617.5 kB view details)

Uploaded CPython 3.11Windows x86

pytoml11-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pytoml11-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pytoml11-0.0.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (977.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pytoml11-0.0.3-cp310-cp310-win_arm64.whl (684.4 kB view details)

Uploaded CPython 3.10Windows ARM64

pytoml11-0.0.3-cp310-cp310-win_amd64.whl (675.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pytoml11-0.0.3-cp310-cp310-win32.whl (615.1 kB view details)

Uploaded CPython 3.10Windows x86

pytoml11-0.0.3-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.3-cp310-cp310-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pytoml11-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pytoml11-0.0.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (976.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pytoml11-0.0.3-cp39-cp39-win_arm64.whl (685.2 kB view details)

Uploaded CPython 3.9Windows ARM64

pytoml11-0.0.3-cp39-cp39-win_amd64.whl (675.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pytoml11-0.0.3-cp39-cp39-win32.whl (615.5 kB view details)

Uploaded CPython 3.9Windows x86

pytoml11-0.0.3-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.3-cp39-cp39-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pytoml11-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pytoml11-0.0.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (976.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pytoml11-0.0.3.tar.gz
  • Upload date:
  • Size: 107.1 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.3.tar.gz
Algorithm Hash digest
SHA256 7180e803aae1aeba325a7e2bb4db14fb687bac46a1c7316234f81324c41a74ea
MD5 3b70894671c2545a6aeb19598a84d6ca
BLAKE2b-256 e1e37efa29e19e4da32bb11b40eae2b815c62a9a083ce9209e2466adb0b3ab00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c49b6e1d4725656eb146e9b5d2943302eb885f895da7ab3334fcb76ab2d734ec
MD5 4ee81068db6ade4ded1923c8e3b44496
BLAKE2b-256 607cc0bd176e675c7213bba1394cc0ffabead891b00c2bff4fff13ebd21f4c06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7777fad4c969d35cdd6b6dd73d04d4edd04736031f2fd899dc6946cb99dea68
MD5 5487806cdfaac3be187d2916ff8422a8
BLAKE2b-256 2999f8026507ea5ff2fac86e8e8b565abb00a0961e321039c1b0e2adec59c412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04581e4de3aa71ca4eb0d8c7862148e1e72f5e1d920cc372454f74f438f750aa
MD5 563e02e23a75dca47ea99c093e88b0fd
BLAKE2b-256 b2b9c68f63c96f42e934dbb9e9cc2eb33a97de78d1df3142ffaf53d106164e55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4ff109807754bab88391ed6e253e43c53d35313867b8432dfa65a1b67fccc07
MD5 c1dcbef5e5e731e994e0a48ad4472b3b
BLAKE2b-256 406a90fdfecd4bc990eef78bbce3102d8982f9dbf85226c3f72b7852d073e9bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9e2ab35d316d968e32b8d37f27c6e016191636ee5768adc729fcdeaf45b3ac23
MD5 d99bda4bf803fcd62057d600d2750dc6
BLAKE2b-256 916deb38aae55609815163983977dbf558f20f335cd70cf14d485af3ec250d59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e0b430ad3e0523bd49a9aa833b3962779de8e16fcf60bf577f4966b8f227ada
MD5 6f1e1739753f30388d67b73369e81239
BLAKE2b-256 db08ff20bd0c87ac5f3234ba373c0651e85032c6292964c4f0be836f884f2f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20845d94368905a045c5f49ecf4627c6e92ea6ae8c88d4586f8f82865ead0652
MD5 e08b4fd750baf1259addc4c988a174f7
BLAKE2b-256 7444ce77d134c2f0ddf494c114d2f80e0efd0f579424fa08d6e1ffb6de253d7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9783c80aed12f2c40a1cec023d316cd19c86cfdb820974bcc70da79eb6a5a50b
MD5 4454c620863ee7e79a48f9a6dbc50c02
BLAKE2b-256 2f929ff666dba86b4854b590a0eb7ba5f0bb8898590fb20a55a3e7ea6a098f89

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 686.6 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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3c9c0c00a04e1e92a38cbadcdf479924e1d6db14e5f4574061b867003b608998
MD5 c53f50491ef46215f38ddf538118f2c5
BLAKE2b-256 3c9fd6af399224ac55a1ed0c30cc7dca082a3350730f65e2aea53e5c0c8763c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 676.8 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 27b432166617b3ada8e1573312ef5af0d2a2ed3f8bd8088cf74b57c6d681e970
MD5 7f6beaefeb9132624df521ba7b050c88
BLAKE2b-256 5356dc04e4a15be179b08fa8e4b3e726cbac5f600d0f4fd5eebaa7aa00087b9a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 617.8 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 527e2c6a42e63422a57a5c808ea5e4f3e461099d7604fbbb66836818c3dbaacb
MD5 96efdee95324057a79df5fe47efad4c1
BLAKE2b-256 d9e08ee1edcf06c63df326f72cf03074f1fbbf136d68c70eeb7d002b12d91c3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e759966bfe5bfef0b0711ca3d0c802c96b2b33412331957e89894a05b852a9c2
MD5 0aed6076cc0c8c115f09d984e007e3fb
BLAKE2b-256 b3c362b4739b05ae65f4b2f97c13ce0eb563a83b2ff3db13cd596339124799ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5300b7a84916fcf97fb704dc90904277aa37cf412803be79091e1b9a0e11c4ef
MD5 b252d007b0936609dce1452cefaae6eb
BLAKE2b-256 066017fce04a9fd43b0103de9397ec06003b6c97beb349d719ad2ff87a90a3a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 235c0f46461b4887f0e2555406b0ca018a104efafc1532dea7dbeafcd0c9d6af
MD5 5488658a07d334fa4cf46c8c91a67a76
BLAKE2b-256 26cf34d9b255b2cc110eb8dc25e7f799141da2d42332cc204210d4349f357038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c671cbb8e7fa6936ee097940f6b2555fddcb7581fa3e361821a3eb4a85589fd
MD5 44ec7781c157743eed2e474abcfcfe1a
BLAKE2b-256 6d9dc380cc89b3bf323870d40955e964294b06c437b5928581ce9dbc28bdf676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc8f5ce8fd831bf99d0af302fa118d8566e9df976f6aa8d814df2e6f7bfeb4e8
MD5 fe10cc21edee375538d6ce1973e81d00
BLAKE2b-256 b8cc824ee960d169d6f4410b2454c37bf653096066669eaec3f59d445a99cfea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 686.4 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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9f535726134d5cf6c41eb74440f655e888d669f3d1da37a1167fd61b4fcb60a3
MD5 80d93a9732ed6979ed0d2d45da83ce7d
BLAKE2b-256 690d40520a7c7344f79a0bb037a616b9d62e3f890f5185790fed631ef4be3dea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 676.7 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d17de3017ba976d76684dfa87433c5e1234e34ed4c420fd8ce289290f19df468
MD5 f761e444b77789cf11a6e5272c10ea38
BLAKE2b-256 152a8a6c1699d21dad8f16b15c6f7f34437a3a094faad9d0a7742e6b0c3f7b35

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 617.3 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 35a34b28895255bee85f8e58e8ba5e7f70030d148bbc6943f5f87f2fb8ac4220
MD5 eaf8736fb9ffedd71eb151f977fe9a36
BLAKE2b-256 ecabdfa4f6dc210fa8083794b1ff65a4cf79706a16dd0d599813845b24feaafd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7468c00bfa73578174f150df6711967f08914c21665388809893818c5a0b202
MD5 cf34edf242b0a45bbd09ba872acafd39
BLAKE2b-256 4c94244e708dd080af685e7a028274e0c4aed448aafadfe1f40840281a6191b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9669f902f0a34d40334f74ec06df93a6f94da8595287a92a9cd4e87a2229bb29
MD5 80c5bd7e3dea3539f9fa3e355d79937c
BLAKE2b-256 5e83ee473d5e483360aaf8dd4be44d97d4dd99309bf1412323637f078c869bf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a43f1668148c7badcb1a8d99481fd4139abe3ad277a24c7e4b9d20ea08041fb0
MD5 cc71f98d5976ab311e4511fcfa710f61
BLAKE2b-256 36f768073f62ba84f4745fadfd00e531f76ab0019007fbb9d7e00654cee9fcc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2cda05170bd88c999edf549bb6bcb6cbe4d9d29c148a3b7c90804257df7e3263
MD5 3c47a51fb994d459f057c6570b534fa9
BLAKE2b-256 5a2f1c4daaa52122138208a19f65dc3fad40f8d71689b280ed95ed173e490a29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc9897c0b645bf1f31df8721f9c02283458f2e32fd114e7d5c44d6a3a817e16b
MD5 3a6a5a62aef649732e9eee3e47980997
BLAKE2b-256 97f2e064d3e9571b02dc87fe9f161c282b29d56e022d480ce038d32a94a52e62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 686.2 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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0454183cb42adf50bafcf06e30c4e5499ce8f1611abd52aaf5f57edaa0df7029
MD5 ad56de3d1b5e3e4ca5cfdd7f68caaef3
BLAKE2b-256 7e0af531747faed24c076963bfa5b0e597e94498a866d3927aa1cb38de04447b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 676.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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bd25c960732488204da4efdcda5e2c5b97100b0f28104192814c075ca7d77387
MD5 855196c49bd6c77ad66ca5067225c1b1
BLAKE2b-256 c97ecc6395ab4ca73d347451630dc3b71d2285996a18fd0966eb3e9db08121f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 617.5 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e58720feb823f4a9ee32444eb77be138bd17c9f64c6699f5a578e1d7b498d8ea
MD5 fb57f1f10374c8fdf1b8f4e07ce3156a
BLAKE2b-256 6e881079a6db44b780888c003c81af997ee5fab0c1cddfbc4e00f4a1c2a6df0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6eed6295f86d4b9da1debd3b147392484fb2f18f32d2c0639553f801fd1f71cd
MD5 1cfb30c104458e49fc9d6a12fbf3057b
BLAKE2b-256 807698ca6060d99a0a6b2b71532decd02294c2ed27ef78ac79eb6be9dbfd156e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1da42c74cc2e282f5842f329017258aa0f8ab2dcd870cebbc381daee34c933a9
MD5 904fc234c51cdd1e2edaf22d619046f8
BLAKE2b-256 7fdf67c963d1f72d61cb9f50ccc76c42081eec4f7866abc2e4500c7784d5ccb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d47d77a08ad492e45b07de6715e259e9361d1103c7e634454d28fa7fea2452bc
MD5 8a64e9733ce59c4c10f43919d5f9d50e
BLAKE2b-256 c9ac916813e176c951eb0db48cb585032bef50dc1132d8af264aed1634cad4c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b249bc92ca7a654829cac5e40ec8d78c934b5d3e119625be7ffc564ab658971a
MD5 65cbd8e5e240c58b67c1632583dc25ac
BLAKE2b-256 5d495cb5e6cb6e635579136dcb5b4ab45e1d5e31fb283f1f1f45ac210ae34a6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10caf29f9c2894bb9757e498b328196f3cfc0c7c31b7f142bf555c338c6182fc
MD5 6847b01e6f7f6a996dd4fbba472b0383
BLAKE2b-256 69dde5b20c9c9bf96fa5bd769b7a7a5f97424a48bc1bd5a48986b744b27981fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 684.4 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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0c663eeaaa105de2a6772e5f3853d929f63e4439250e2419790eab8d944bbdc1
MD5 b254801a0d0e3d01bdbf3669472e8fbf
BLAKE2b-256 90a2490cdbaba9270e75b6fb6a2a9bde482cb9652c318ed9c4a1da53b637d08b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 675.0 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bfe671ed076ee9e6ca0a8750f331032708f415ce38ad1d98daf0d7abce8900b5
MD5 b851b8ca35c519250de5aab74aa04bf6
BLAKE2b-256 44f5193416426086ffeb5be805ab294a07fae4c11d73bff810929c2bd6479071

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 615.1 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b8cd14e293e6d18f5ae2462ad44c3f336ab8107166e51c6192268b9e0bfbfba0
MD5 8878b33d7cdd507e95840fd0a251c676
BLAKE2b-256 e3b7c85c058e5c27cb156cd4399b338a58cce6359c34376698bf934584d5d21a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c86ae74ff73f99c2ccd867384ffd7872e3f3104d046a33ce9ace5c813c3352e
MD5 11747844d95b6e571e992d24538ad5fc
BLAKE2b-256 4dadb29d8bc343fa05b1b449cfda90abd041a67215d43a144d340cbed25f4dde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b79e8514d942389848a2f3f20bf1ac71b9cb651583b17948e4d2774d725a06c
MD5 7d53d0e6c9b75bf0eb227701ec8ec139
BLAKE2b-256 875bece4c7e9c1489f326bfae57a0e2c6f89aa77750a901529b496bbe48464b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1b648e8f8d8fc22bb1946c871a62b44ff22274fe31ed51c97d86043bbbbaefe
MD5 bd7179882fe030cc1a00b93e41db4fa8
BLAKE2b-256 12674101176ca5f59ec7779654dc3d7d678e27cd88e851e6a3cd1c2f1e744a75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6290dfd4bffb1a15fe73ca3867c8ae5aaf61c7e2a41a7a6c18996b26e1504ed
MD5 82a51a29f1ea990158558ef3aaa75bad
BLAKE2b-256 02391616d008f47b55083216309c2813002dffe843d9688a9e00b010a11bc337

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e4a8785ad91bed8733ad802831c6383355839a699f040f32f1588fbd40bb6ae
MD5 755b9ee741aeed135d9681fa619ab35c
BLAKE2b-256 fcf55f29fb15760c77344fc2fb49a1427680f14990bf06aa4164200673f7b1b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 685.2 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.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 42f9495c768c2dfbbe0f13a06de4a151cd1ae6518daa17f0e158572c05ea5d89
MD5 b775c76a3dbf93a677ad63deef426e81
BLAKE2b-256 19600bbac2153f1cf18ddf21036c8e1e369af590959e97beb32a9d4793cdafe9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 675.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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5866c3b809962fb4e8988194534cba6a86ac5eabd555ad24bfefe72a974aa0de
MD5 9bffba7ad2c6cfb4a5b64ada0ee7efd0
BLAKE2b-256 d476ac05318c5a241964045eeebf44b4c5bb513f20c0a5edddd29aa7f3d36e3a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 615.5 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8ab8fbaae543d25fe9d5bc2d75d21ee70d97cc02685926e67b6022e091db4c14
MD5 ecb6591293d8b915021ec529b1ec7951
BLAKE2b-256 6300bc0d5ca9e83e2f39ab3e343d241f8b7f7c4d8dc4a6321d08b955a9a13fc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ec22bafccb3da9b566dd4a2a0e08c8e3d7f313845ea86b1b24070c7a1df99d7
MD5 88870b4c205a911661ff9e09a2505a3b
BLAKE2b-256 8941a2514459bbf10c3942fd23a530ff07ce33de16b1500ebf54bfa95ae7fa0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9ea73f2de9421ea46da91d5c4a2ead3f28fce4a68584e18e72399ab08297465
MD5 5a47ca363286aa133b5f893f19fdbaab
BLAKE2b-256 60968460390a4d895846b11b765677b569e324304a5134b3e8f3cf41091072c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 321b0260f4c04807d5f5b1bbd6dd43e0143757621b60fd4f6f949256a19b5557
MD5 1917e8f62cda403ec1d1b03ec77506d5
BLAKE2b-256 85a1af31b591b49c65edc897e0c4b3ce43c3bda6c5c1d658d85c3c865cdd7576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 efc5c048ed97cc0e906adb9fe193bd8f38d3613b0074c395dfcfd2fdc97d808e
MD5 076a8cd0f2c4c18ecb72819965dab7a9
BLAKE2b-256 79932f2dac808f076def01cd6f500e8613c6625bcb7aebd8435c985118d37cff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c687f3feb2f88ec7ac1dac9757a0a6413eb1c786e7fee3e2ff2f6e868c6675f
MD5 f2d1c63e0fa42a869d195ec8b6bd172f
BLAKE2b-256 12fc8d147c3bac6227105a03686ed46f0e976e2dd195690eb60fadf8ed4b253c

See more details on using hashes here.

Provenance

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