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 formatting but ensures clean, sorted 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 with sorted formatting, preserving comments
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 preservation, sorted output, and 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.2.tar.gz (106.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.2-pp310-pypy310_pp73-win_amd64.whl (667.0 kB view details)

Uploaded PyPyWindows x86-64

pytoml11-0.0.2-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.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pytoml11-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (961.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pytoml11-0.0.2-pp39-pypy39_pp73-win_amd64.whl (666.6 kB view details)

Uploaded PyPyWindows x86-64

pytoml11-0.0.2-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.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pytoml11-0.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (960.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pytoml11-0.0.2-cp313-cp313-win_arm64.whl (681.6 kB view details)

Uploaded CPython 3.13Windows ARM64

pytoml11-0.0.2-cp313-cp313-win_amd64.whl (671.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pytoml11-0.0.2-cp313-cp313-win32.whl (612.5 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pytoml11-0.0.2-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.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pytoml11-0.0.2-cp313-cp313-macosx_11_0_arm64.whl (959.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pytoml11-0.0.2-cp312-cp312-win_arm64.whl (681.4 kB view details)

Uploaded CPython 3.12Windows ARM64

pytoml11-0.0.2-cp312-cp312-win_amd64.whl (671.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pytoml11-0.0.2-cp312-cp312-win32.whl (612.4 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pytoml11-0.0.2-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.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pytoml11-0.0.2-cp312-cp312-macosx_11_0_arm64.whl (959.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pytoml11-0.0.2-cp311-cp311-win_arm64.whl (681.4 kB view details)

Uploaded CPython 3.11Windows ARM64

pytoml11-0.0.2-cp311-cp311-win_amd64.whl (671.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pytoml11-0.0.2-cp311-cp311-win32.whl (611.8 kB view details)

Uploaded CPython 3.11Windows x86

pytoml11-0.0.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pytoml11-0.0.2-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.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pytoml11-0.0.2-cp311-cp311-macosx_11_0_arm64.whl (964.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pytoml11-0.0.2-cp310-cp310-win_arm64.whl (679.9 kB view details)

Uploaded CPython 3.10Windows ARM64

pytoml11-0.0.2-cp310-cp310-win_amd64.whl (669.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pytoml11-0.0.2-cp310-cp310-win32.whl (609.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pytoml11-0.0.2-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.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pytoml11-0.0.2-cp310-cp310-macosx_11_0_arm64.whl (962.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pytoml11-0.0.2-cp39-cp39-win_arm64.whl (680.1 kB view details)

Uploaded CPython 3.9Windows ARM64

pytoml11-0.0.2-cp39-cp39-win_amd64.whl (670.4 kB view details)

Uploaded CPython 3.9Windows x86-64

pytoml11-0.0.2-cp39-cp39-win32.whl (609.9 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pytoml11-0.0.2-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.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pytoml11-0.0.2-cp39-cp39-macosx_11_0_arm64.whl (963.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pytoml11-0.0.2.tar.gz
  • Upload date:
  • Size: 106.5 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.2.tar.gz
Algorithm Hash digest
SHA256 0c404d047ec17fcdf40df70e32e72fec5c3588eb8ddb32f18b00c3609cf3e71a
MD5 086272e05ff440319aef69536b2f414c
BLAKE2b-256 dbd52b7a0198d019e6804d172dcbe5721fe4035adf832e2e832827a59696347b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 23f3656478c1186aa5e2e2ddb015fc97dc82fdbfd6da351864b738a7a1caffec
MD5 9c16af4ba01942a8c5fbe61a21eeba1a
BLAKE2b-256 e4eb0dc547755e89ceb162078aa51acca99e80e4baba47d7b7246f49579db21f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c670682ce5f8bbb805778e5bed2000894193ba507e9fba3de4952efaefa0be37
MD5 d73e1ebbab31a01ed44575b90cc9b24f
BLAKE2b-256 d2fb62665302e247ff6af60965bf2ca870f06524f70918b01bbbdd79865823da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26432d41965b15235b8637512b4efd9952ab52214b981876f55719239c36a108
MD5 435a29454f38d1011ff8d0bd271edd4a
BLAKE2b-256 03d31a289cfe859a2479d3476cebb8802258fc85659d0cd88c0400edd08cd82b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aee014c422cb070c6424113287aed620c772644d52ae0c09d94d6f685fd93a99
MD5 405a6c5d953fd2a6143074ed9b2593b6
BLAKE2b-256 382ef06b48f4d04029b61b4b6e03fdbcf2587b138b68fb0c88d54780b07a8fe3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d26a06b9107a7944f53cabd018027e089cad23f7ad7a06357b96686dab3d1abf
MD5 ece03b955292cc3ef02039099a95eb27
BLAKE2b-256 fe94a68c9ce315c8940268596eeb1a3d1aa577f5b3697fe1e011f58765c3dc8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32004bbc0b531ad085427b5eb84a8a9ce6ff2929b0845b5f6b196ff69944242b
MD5 130d2b905e0816fe12f601e2f47a1a84
BLAKE2b-256 8d660ce217af403ed5e089c53a1a5e69be551383e405743f7cc8f5f173b494fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d001da295167ec09e678e0d93c27f3e43af121467db8d38cafde3e20456d1faa
MD5 974ff0af8d0e9a81444a1a8747217920
BLAKE2b-256 82884810e974d50c54c2fbe443b977f8f8f065f4a75023e5ea463d9349347954

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fe47333f0865a925ba0f6ce0187c7431076506765c874fd6bdd7655660e44bc
MD5 c25bd772f8b4dd0d4ecdd96cf1e47068
BLAKE2b-256 50d5dd15cbefa6351d4ce5cb4e0f40bcee499b751b2f8d5d67ece3decf325f80

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 681.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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 bd9a86b8a834d137de34866da9aedbc21db7094c643fa80b4f132dfbf8a27d6f
MD5 0074140b8e9685a70e8ebc2a495c62c8
BLAKE2b-256 62c8d19938657894f49849eaed04fc58b4d4b40441dc86dc0032cda3b628b4c6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pytoml11-0.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d98fd0f6943dc1a7d0edc4ff39eda23c8920d1e6df1142a1ee1e06a604d54707
MD5 b296279fe888af9292fe71f2d1c9abc8
BLAKE2b-256 b8ec205c94dbf79e30a0b44fcfdd2855a0ee4d1ca19bb35515bbffda5b1153e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 612.5 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e61fed6982712b891c9ebb430e03b6f490c6dfe586cae18ef5209ceae8986dda
MD5 97d0c108faac6771af71cb2fc3f6963b
BLAKE2b-256 24bb823e79483232615db718dff81b064527f43b35e8ba629c807f84fa04e2ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db122e390da54f292952bbdd45ce7b8d41e8918ade837359d5fa61f1334ad203
MD5 88bc25c0e7be2e9afb59ce6873984788
BLAKE2b-256 dfff6235ede82f1822c86e6cb1f87b75f5cf27c3a876daf5c3d25803ca684f04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ad47dc64fc1827e580bdd93cd7987fb45323bc6c8654e29bc97849c0b711c82
MD5 fb6901b84cc7b93396f83ed09d9ffb9b
BLAKE2b-256 1f69aed764ce9762136a32debf4032a497f5401ec2670ae430a0267bd89b7759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75c27fc1dafc7ccd350b5016ec484cf8c814581f6139544473601adb0fca1cda
MD5 d3d59c1382f457d9a81709927a5163c9
BLAKE2b-256 bff6769984726ba995a81c9bfed465ace2ad4d96027f7b1ded0cc15312b7a714

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad28eefe74d5e49f684236d97e6e35b6bd13bab0791432c3c3b1ea4c4fb96b89
MD5 01b37ac860f5437fbfa41fb3942b0f35
BLAKE2b-256 1ee1ee6a8f7737607e371743a71e0706806b758907b2415734a9f163eff3f963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed5cf4f137fc86fd5dc4fa62f593d41330d89dd158bc0f5f6bdcea22f4a54db6
MD5 8ccdcf5c2efdd0b7051bfd3e39c8cd94
BLAKE2b-256 1c3672105fa8c93036c273d1ffe1e93556a0b742c8453f7f72db6d9c6239c604

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 681.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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 63de5eb06c70f8c398d587841b6f349ab2a65879bf6124e15e9b29267a3f1f55
MD5 f58eda7f4a9713e262143cc243179d45
BLAKE2b-256 1f4c1c9448acdf04f9e2d8ad5cb8731c9ca555e42c5ea0cd0f54f079a020b5cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 671.8 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 32c9bdedfea37bb5e3fa2a60a9f25b7692cd935b2baa7ffb640c52f588c4e978
MD5 3b91021c4cbdf1786415923afe41d06c
BLAKE2b-256 a2983b20c6cb39adfa1a2c915b2cd378ae09fcf586919f77ba0df00d7dfc797f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 612.4 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d61f1d152ea3f4e28e24a209656ec2e502134ef3365cb74c56f37b6d451d0f02
MD5 d5ee068bca601d31a0e8609bc8ac0558
BLAKE2b-256 8a0dde18cb3e344c52ea291233f2a3a5c8c1e52cb7b125afd27e028df27e196d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d08086052215e9e2791c657738e2d364f178f5694d9b701ed34ae60988d4a44
MD5 7b00935a819fe6d0a2406f8ffa69ea95
BLAKE2b-256 edfb6cde6feb73ca0527ed9feb5c46e2bda947ea648778067065d1c354406c33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4197d4c69c085a3e2b0fb645c00adf17775bf7fcc3e55ad7b9fd68cb8863a83e
MD5 051cebb6aad9df013c81c07502cfa166
BLAKE2b-256 17155e8db43c774440ef09d22ff2fe506ba2900b445784d7980b80b4fc2aead4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86c27f254ad7e12aa68e0014b3d8baa374327a2c22881a72c3de54cf80720878
MD5 0621fd1b55489c7968e839ba3e797181
BLAKE2b-256 8eca4d939fd8123abe358ef53e760c723daa7dd88f6657e63289c4e4c48afa7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 120a6150645b8d7f31692a90c8e9f58d01e7fc27b008f000dfbf69f775297018
MD5 0d9dd99e3ea848574781dad3100b8e96
BLAKE2b-256 0b565470dcedf7995492f0afaad29fab86aecb6298326cd2e70bf903c68da835

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cdda1a820f93c966c87af318d1feb5f4d19beb2673f2faddcaea7665091eac9
MD5 3dfca9f2ec5a5b0c1247b9fe803c76bb
BLAKE2b-256 dee520621b6ab3946bcb5b63db20314d00cbfc8d94c32887817a5050446fbde9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 681.4 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7f84fe9b8e03d4f8fbe563a21ff7f8fbc90d18ba6dbb08d8ddf39e176104a92d
MD5 90cc67fdd42ac6594770d48c8a37719c
BLAKE2b-256 5b027220d50ec040f396547c691a020d6055859460bc0015631b694c76d3bb9e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 671.4 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c49263fbb366b9a94ac27cc34205160a5516fd3103f3f9e99aa595ec9d046068
MD5 3131b8e3c05b3a062fc73718bf7fbded
BLAKE2b-256 2f12b96e5a9af43b839aa4bd04fe9879fbc68420dd923343c6bf03d5776b4124

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 611.8 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e36421c4319bea896a439a027dca082d3cbd19dfeb967bacd79cafd3c682ee83
MD5 81ca3af129cfba34b359ba40fc1ed3db
BLAKE2b-256 541ccfb57274e1ccb4403d8f568f96c6c5476f40a0e10946d4d1c4fa0d2cce23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 629e6a401aea99fbbf3008dd99f69c19bc52ac529676c3290512722bc8659124
MD5 6d215a6c7bb3760d3111d1af17dc3319
BLAKE2b-256 f7d68975b51dc4199f7a56a7270581b286dc7e17cdc9a518af6c014408b79786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 961ee01b2628d21cb2d32572b2d84886777697579afa1fbde535cd7aba3d0878
MD5 3ac92f7b202a7ee68ff131ca91771a6a
BLAKE2b-256 3b655e7724c0c4ca2ad1db0945807e1593788dbe1aa4a7773af8fc0d7df31298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc9436d4a7468ed71c2d3dd2880af6667dd1a2b0551d5d29f62e9395bdd104f3
MD5 fc6cfa594ef8df935301581440f2e650
BLAKE2b-256 8f0d7d3ffed306b4f11a9b39a9ed3abe0f11609cf365d4b07f11a2beb361c9c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9bce56d1a1c58e709e8eeab0b994b8ad5d5d2daf29d0a1406746905aac389e43
MD5 e52f4e5a83212187516c770deb33de69
BLAKE2b-256 e9441f24b275d29621326b6cb93a8751d36863b59569f4925554cdebd882a304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6391c4cdd960307f38bf560c44dae7d1a82961c9e305913d27a843081c7563c
MD5 1e83c1dfdf9b0c92deb8bcebf9a6d6cd
BLAKE2b-256 2ff5323545efd7e4e572ec6ecaa7af90f2ddb5130d97cbe6784b2db19587a5b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 679.9 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d64b96fa35d4d03f97ee65c2fe686733011f4a405f099a77f4bd2b33a07c6684
MD5 6c5e23ca2d4266d929fe76bd271c7c8e
BLAKE2b-256 6927096c4985aa2d7efd26364da695e7dbbcb176815a293e7630d279c6d2535e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pytoml11-0.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 78c5e0d103c8454f9d497a479d1c89456c68c2e2798770e1d7f161904c9cdedb
MD5 8e35fc89304610fd6b550805cdfdf4dd
BLAKE2b-256 0fd83fd33a4763a25cba85eda16a4d1677e9f9ec85bd781482e88b54c1764073

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 609.3 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d7395ca72f1b1ae289a72cb7e6d770c8d070c650e7684cd36484da1216aac791
MD5 9e3ffa0064356640d288093b335700b4
BLAKE2b-256 49c00479e386ed04014ed7d25724243d4cb0dc660198fc84d4e86431b387aac1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7339513f4ab26b9ca19c187911829789a3ed3a28a8d635ad7d7c7427614f6bc8
MD5 d33bbb6483ffed91c67b605be05ebd1d
BLAKE2b-256 33676832d4c0942f58073e0e40007c892a5eac9cb578f77d9efc92b3c8ece3a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 991c697b270434ea86f5f62d791c9b308053507a2fb542f22e0b54c1af566205
MD5 6cf216fa184d73c7860feaf3dc576499
BLAKE2b-256 34c03c0a43c2fcfcff8f76ce360b1f8e60de189d81db49eb5dfe6116461317fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9188ef616d2411f3df4295dff5ec1f9a4b7c6d28ad39ead3a1d00a33f3654d82
MD5 5a4a09c3e27751c0d193e5092178166a
BLAKE2b-256 b3bebf407eca9fa99ee49de0b7e4e2f0ea5080af32cf421857853c7a399e2310

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9edd42d96d5e02299333cd7ba2a8bf820049c52f5a18af45624ef06e8eedc21
MD5 8c09c206bbdd4c490cfbaf5534254939
BLAKE2b-256 ae0806761cba3745b33eef0c1bcf18fdb1aac008f872759c8b847e202207bca7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54fa7a122ebe49a541172e8f7cb639f302cd84a80a317678d29fcead3bb5e57e
MD5 0487b9e580b6f8f62a9e37b18b5e3c6b
BLAKE2b-256 7ffc1fd7b2fd74d05ef9a8a384cdcdcd9b4e2a9f15d09988037bd41673c2b9c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 680.1 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.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 65e617f96b372e76dcb5e5f6a1d0a183aafbfe02b37e936bd04e985367f316ae
MD5 582b148d5672a3e4f2403dbad65d4704
BLAKE2b-256 c5bc6c88130521ad0354689189f3639232fb4ca386c1455fc054830f546b512b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 670.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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 741a67b4b05f81307c29b275e9dbc1905f9ce84117319de3c8b7d11ce904d0c4
MD5 993ec4a8beb525f8d4d99183bd0f2746
BLAKE2b-256 7a564421334399e100507943c63f8602915f74bf33ae4edd3562607c353c1388

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pytoml11-0.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 609.9 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0e6f894668ce415e0afbb4e82e6a1ce6099d71254f877abaf8ab19eaf44fb8d7
MD5 8ad23a71357c11f067553c5a923f37c7
BLAKE2b-256 7831980a45f7a1c90a57b908c63fa861a1ccb272f37d9819a9fd850197b07bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ce7cb01c371425f1212111a197c2ba3a269cb1f9f1bf303d4271497f9584ab1
MD5 1c725197bd367c87a8fe59c067748eba
BLAKE2b-256 0744b26ff36ca842514579bb856944fc3dffbd75f263d98128c09d3783de819f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de3fbdd52d79684e71e95b6f954e87df867e2cb29a19abb4eb24ef524982db17
MD5 b9fb4bd136cf8f3fc378708c39598728
BLAKE2b-256 fbc60e91deea24b49d43fc155236186c6d4f91cca94dc87ad1ab3e770c706915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff769541f233175b4ddf2e29692ef765ff239027ea47144ad5399b2c5d48f5c0
MD5 cd5a0f80153eae2b5816ae8c33be0f1b
BLAKE2b-256 0bc1d62b0e105c0ca01c84eb59f72c4fbab03647a06fb8d8e0bc46c20a95f4cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e83b011e006d32e1f687c2bbc62fd60b48599c06e583a39844a6193016ae081
MD5 4ce2174fcc60b85539405a7c6fbb1ddc
BLAKE2b-256 1ae83fa2c66648ea211ef996be11bd442741495d530f7ffd733c6842ef52d0b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pytoml11-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9e4263c1355b470a81f739716fee2753a858af54fa18c48eef773521012c38f
MD5 72d990d5e4104e77c11831bd577a7aac
BLAKE2b-256 33e9c3cba721b1d3890fd98996843e7df43b403e745c2705dcd23df0313233e5

See more details on using hashes here.

Provenance

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