Skip to main content

No project description provided

Project description

rtoml

Actions Status Coverage pypi versions license

A better TOML library for python implemented in rust.

Why Use rtoml

  • Correctness: rtoml is based on the widely used and very stable toml-rs library, it passes all the standard TOML tests as well as having 100% coverage on python code. Other TOML libraries for python I tried all failed to parse some valid TOML.
  • Performance: see github.com/pwwang/toml-bench - rtoml is much faster than pure Python TOML libraries.

Install

Requires python>=3.7, binaries are available from pypi for Linux, macOS and Windows, see here.

pip install rtoml

If no binary is available on pypi for you system configuration; you'll need rust stable installed before you can install rtoml.

Usage

load

def load(toml: Union[str, Path, TextIO]) -> Dict[str, Any]: ...

Parse TOML via a string or file and return a python dictionary. The toml argument may be a str, Path or file object from open().

loads

def loads(toml: str) -> Dict[str, Any]: ...

Parse a TOML string and return a python dictionary. (provided to match the interface of json and similar libraries)

dumps

def dumps(obj: Any, *, pretty: bool = False) -> str: ...

Serialize a python object to TOML.

If pretty is true, output has a more "pretty" format.

dump

def dump(obj: Any, file: Union[Path, TextIO], *, pretty: bool = False) -> int: ...

Serialize a python object to TOML and write it to a file. file may be a Path or file object from open().

If pretty is true, output has a more "pretty" format.

Example

from datetime import datetime, timezone, timedelta
import rtoml

obj = {
    'title': 'TOML Example',
    'owner': {
        'dob': datetime(1979, 5, 27, 7, 32, tzinfo=timezone(timedelta(hours=-8))),
        'name': 'Tom Preston-Werner',
    },
    'database': {
        'connection_max': 5000,
        'enabled': True,
        'ports': [8001, 8001, 8002],
        'server': '192.168.1.1',
    },
}

loaded_obj = rtoml.load("""\
# This is a TOML document.

title = "TOML Example"

[owner]
name = "Tom Preston-Werner"
dob = 1979-05-27T07:32:00-08:00 # First class dates

[database]
server = "192.168.1.1"
ports = [8001, 8001, 8002]
connection_max = 5000
enabled = true
""")

assert loaded_obj == obj

assert rtoml.dumps(obj) == """\
title = "TOML Example"

[owner]
dob = 1979-05-27T07:32:00-08:00
name = "Tom Preston-Werner"

[database]
connection_max = 5000
enabled = true
server = "192.168.1.1"
ports = [8001, 8001, 8002]
"""

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

rtoml-0.10.0.tar.gz (22.6 kB view details)

Uploaded Source

Built Distributions

rtoml-0.10.0-cp312-none-win32.whl (220.0 kB view details)

Uploaded CPython 3.12 Windows x86

rtoml-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl (951.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

rtoml-0.10.0-cp312-cp312-musllinux_1_1_aarch64.whl (955.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

rtoml-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rtoml-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rtoml-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (801.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rtoml-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (791.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rtoml-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (780.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rtoml-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (790.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rtoml-0.10.0-cp312-cp312-macosx_11_0_arm64.whl (352.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rtoml-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl (360.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rtoml-0.10.0-cp312-cp312-macosx_10_7_x86_64.whl (370.2 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

rtoml-0.10.0-cp311-none-win32.whl (219.6 kB view details)

Uploaded CPython 3.11 Windows x86

rtoml-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl (951.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

rtoml-0.10.0-cp311-cp311-musllinux_1_1_aarch64.whl (955.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

rtoml-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rtoml-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rtoml-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (801.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rtoml-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (791.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rtoml-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (779.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rtoml-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (791.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rtoml-0.10.0-cp311-cp311-macosx_11_0_arm64.whl (351.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rtoml-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl (359.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rtoml-0.10.0-cp311-cp311-macosx_10_7_x86_64.whl (369.4 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

rtoml-0.10.0-cp310-none-win32.whl (219.6 kB view details)

Uploaded CPython 3.10 Windows x86

rtoml-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl (951.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

rtoml-0.10.0-cp310-cp310-musllinux_1_1_aarch64.whl (955.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

rtoml-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rtoml-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rtoml-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (801.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rtoml-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (791.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rtoml-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (779.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rtoml-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (791.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rtoml-0.10.0-cp310-cp310-macosx_11_0_arm64.whl (351.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rtoml-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl (359.7 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

rtoml-0.10.0-cp310-cp310-macosx_10_7_x86_64.whl (369.5 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

rtoml-0.10.0-cp39-none-win32.whl (219.8 kB view details)

Uploaded CPython 3.9 Windows x86

rtoml-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl (951.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

rtoml-0.10.0-cp39-cp39-musllinux_1_1_aarch64.whl (955.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

rtoml-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rtoml-0.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rtoml-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (801.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rtoml-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (791.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rtoml-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (779.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rtoml-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (791.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rtoml-0.10.0-cp39-cp39-macosx_11_0_arm64.whl (351.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rtoml-0.10.0-cp39-cp39-macosx_10_12_x86_64.whl (360.0 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

rtoml-0.10.0-cp39-cp39-macosx_10_7_x86_64.whl (369.6 kB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

rtoml-0.10.0-cp38-none-win32.whl (219.9 kB view details)

Uploaded CPython 3.8 Windows x86

rtoml-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl (951.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

rtoml-0.10.0-cp38-cp38-musllinux_1_1_aarch64.whl (955.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

rtoml-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rtoml-0.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rtoml-0.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (801.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rtoml-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (791.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rtoml-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (779.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rtoml-0.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (791.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rtoml-0.10.0-cp38-cp38-macosx_11_0_arm64.whl (351.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rtoml-0.10.0-cp38-cp38-macosx_10_12_x86_64.whl (360.0 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

rtoml-0.10.0-cp38-cp38-macosx_10_7_x86_64.whl (369.7 kB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

File details

Details for the file rtoml-0.10.0.tar.gz.

File metadata

  • Download URL: rtoml-0.10.0.tar.gz
  • Upload date:
  • Size: 22.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for rtoml-0.10.0.tar.gz
Algorithm Hash digest
SHA256 e1c9af50c6e8c53bc07fdf3277ab1b90e83648c689ea73dadae7d78d1e18d752
MD5 e45486dcde5e2d9d87fb499a432c3d08
BLAKE2b-256 cab20e77a00e75ed582ec1c4c3a9e1eeed886a15c195bcce87b7daf1171c4115

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-none-win32.whl.

File metadata

  • Download URL: rtoml-0.10.0-cp312-none-win32.whl
  • Upload date:
  • Size: 220.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for rtoml-0.10.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 320dce44fc2bb068f74fdcb88e4c454657ebb7244588d195196d4c24f00451a2
MD5 0c5e10892d36911a5ede73ccaa4f4e10
BLAKE2b-256 fccb434097b8f16747717f7feabe18f69134dfe72b43102d9e73058efc624c2e

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ec3b5bf7dfd12dcc9e67a784adcbc88bd8b482c7240a6315da2f4b3939035bd2
MD5 317331ae0cf1ab382a6f6e27e132e17d
BLAKE2b-256 ab78e1d449362335a505c1f21eff31a1f4a021d3b36432590f45be1963f11830

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5c11587c0bd1ffab7ab03d57d6f7bf85864e40afdd02ef514f0f36ecbafb0de4
MD5 d483f66956d5dc89676b4dab8fa0aa48
BLAKE2b-256 96cf1426a3a169e93eb4a88af762f7a3cd2a1ac780e7f8e7d92c4ac260855eff

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22a1e675d2f7d4c2c7d22f8e322fd6ddfddd0c44cf90003fa5eee8fa381a1658
MD5 c1729de54e64b4bea3e4d2e64f71dea1
BLAKE2b-256 97eb70dbcfbe11f2dff81cf1fd78d891c386c312f33ea24dcd40f3078e1055bc

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66d5d2f97b1a8aeb0e7bb456212b2708d090fa5a6e0c1349e43daf672cdb3900
MD5 5cdc9cf5c8e0569c7ca9a660a88839c3
BLAKE2b-256 2bf4fab5b0fab6155167db8fffa88f8dd7424b90f6cfef784055facf15b2f6c4

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22624954d731e85de3db855fae7f1d63bd720cbad0653b410bc691542bec8a5c
MD5 3f19ea355015cc700cb9b7e6a2805d67
BLAKE2b-256 76baff7e1d6fd37d236a7ed6d062b0940f8443b11370c3c360aa1a74aada67da

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d137b0aa042e37062af18aa082b5aa12b77fda3fcb656163b78ebebdcb1c2623
MD5 bedc93df7876e286957f7c5868974d8f
BLAKE2b-256 1aea0b5e12b5ba59921c99289ffe43d0db07c13c5cab4b61644031acc3f88223

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 403bac9a69c51b0a4f0c860a28f76b9c93507686675df8a8bbde52b9daa7f942
MD5 ed57c88718b17dba2fc2fb64b7534e57
BLAKE2b-256 d82add6d78a12a36bb55dec339534005235b8def74ec819f0aa0cef079cdbf86

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26b40b73f2ec1cc88ff5f873fae5e14e6460ec4b594f055cab312312614459d8
MD5 93ec4344110ae44b09654c84492177cb
BLAKE2b-256 648d8a6840fab180ecf47a8b179a14e9c1d676ac66f54ada9d2df4c2392cc131

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0d225edc13c4171295e029235183fbe990b576cb5b6c4f23b0f8064fefd8de5
MD5 50333d85e3e297bbdfb2673fccab596f
BLAKE2b-256 ff0751e87382bd9943caee40e0588e6bd9dd68c039b00a71bc203d1d8c6d63f8

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89801802acac732dded562ecae1c8ff7887772b48712e6bb87117db8903bf263
MD5 b65c2cba9677fb6980cb9ac3e2e4b842
BLAKE2b-256 a683db3f717e1bc8910134ffb4472237250d6987fb688cc298752274deed933a

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cadcc3342190b0e4091a197821ce023135947892bbca70d35bb47a7ef23dec2c
MD5 8c0399a8a1ae68688b7b5f885e7edca1
BLAKE2b-256 472382205c1693382cc242f4ac06cd1e5a6becb83f2837eb688f2079dafba95f

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-none-win32.whl.

File metadata

  • Download URL: rtoml-0.10.0-cp311-none-win32.whl
  • Upload date:
  • Size: 219.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for rtoml-0.10.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 2f0acf966ce3d9e54e5da48ee9aca3f439cc816c5343e73861f9dcb48047bcfa
MD5 193bea334c5d07a198cecfcdc3508b8a
BLAKE2b-256 8817f35ad849060b0700a52fcc573e911eaf9f2b87e28edfafb5f194727ce892

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39a78107bb228e542d0c488f44736aa76be0260451b5899c1e5cae62d5f37c40
MD5 06653bfb0f9b4ec0e84f427ea261d2fc
BLAKE2b-256 07ec71b714e7e6abc9f6aa55ff5c64a7d252d660d9c0ce965e7d05a2d0fde371

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1606c35edd5773d69239aaa28f22641bd5c72f4b6123dfc82005327eac9dddb3
MD5 c1e546623c996f62860c665e11c23b5b
BLAKE2b-256 b7df584c7159064e4e7cf0dd57658130dc91aa7555c44bfeade0d7083ed762c7

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a79b0eb8c4dacdd09d1b6e3195468cd8648326c9a10c1371283acacd56d01745
MD5 de19fd80e7f70c4df7877cc12d0cefae
BLAKE2b-256 3951e8659339054c198682590f11bcdc1cbe2d1dc85c246ac20f0edf9b6675a9

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d18ba2143ce88a21e7ed2646aa921915b179fdcd9a4b52d452633ad5a72ba712
MD5 da257b4106fcf765c7d6d9892426e170
BLAKE2b-256 c6aaa475a69f8bcd1b6eeafddb30d50d7b6fad69ac2cfab01d9d92ca275ccb4a

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51f49785f191c75fe2e14c50f2a58c6b895cae0e11997a548edf2f25ddc8b5c2
MD5 99c7c23a76152dea3ba69796a9bc5659
BLAKE2b-256 f9a187bcd707013a1987c721def35be7500151a266221dd4f13188767dcacd5a

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df2b428f3b778ae84369426543dca9fc58f9fc4b8b452f7d809b193a363f45eb
MD5 9ee72f3a1f7aef23bf4ba850af9437bd
BLAKE2b-256 1b1989c4d1e5ada80890a15638afa973ea0c1934bb059e6c144db3870f90029a

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05484acee8bf52c589ad7f5a5fe610e8fcaccf238eb7e15f33203fa4dc6ed371
MD5 452930c2ef1bdb2e05bdc2eb1228fc85
BLAKE2b-256 2d05553a23f83d3da8575bd17731685489d3185e371b236744708e55355a878c

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cbacd518174c61e24d32dabb257f867979e3d56aeff83816363ef20bac2802a9
MD5 47c0dc2110ad5c287ac826921a19e5cc
BLAKE2b-256 4403febfd5602a084eae650def15d324fb8cd359b4bfbcf944d07e9990ebe39e

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2d8b22d27ae2133c9ae19b566954a9066391ac385dea843f2d2311c121b269a
MD5 43b194c50c01e9fe785d62bc72d5206e
BLAKE2b-256 edf425272771dc417de013a1a62d69b6a6513b624dcb6ee25c6355131ea36616

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 831ffd02fae9ad6290b9eba1170f71dc408fa6ac41477d589970597b4f695661
MD5 b3e33b5889966e3133d1f74682da50b7
BLAKE2b-256 92ce7b845d4a87864d4e69a0efc1607a70183491d73f0949b61a90261913f04b

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8b763710abdf06238384f14ee23c65594322dafc72cb6cf28ec76c25d48fd97a
MD5 7c6d7f8c7c7c475151caeec3032c9150
BLAKE2b-256 9f31196a0707a81b64a0fc6745e08af2606bb909bafc928efb326d0a674374da

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-none-win32.whl.

File metadata

  • Download URL: rtoml-0.10.0-cp310-none-win32.whl
  • Upload date:
  • Size: 219.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for rtoml-0.10.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e0299bfa22ed3ab8da8bad98606962bbb6065ade646cfd1cba4f7917bec5536a
MD5 e1b01ef621e306a1cb191905a0b03d43
BLAKE2b-256 cb9a7c1dcd210d7f2ea87339f1824d32b8afa5ae1fd1160da96ca9276ca7beda

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 534e4904c9a16d1d0165eee7c89221870c8a05364b8093755037ec51dfe14d05
MD5 6c861a953d1187878dbc564202622ad9
BLAKE2b-256 2868ae3a5d52aac3021372b3d200301f6ee46d3ca2b77d867a3cbb6caabce0e7

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5ed99a725c0fcd61a403f0109f03f61b63dd97630fb961a520e98a0d132275ec
MD5 71cfcaf89291bff49692d8fe7f1a2e9e
BLAKE2b-256 46cdee6fb61b09fb0598d6fd7caa5d79a0509b957b12d813f620d9c9e3b1b939

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c262da09fd909ce7fd50dfff5e046aa84644f118412f9b6b7fc22229e85fae68
MD5 e5ed05e644836d4470073b3543a96ce9
BLAKE2b-256 301b7b4e3562a1559bc5715065be129a992a84ec47aa81955a12bdaf10274100

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59fa02ead1db9b155eeb0993f80f839db09f4a1b0d844bead0914469cd068988
MD5 e36e1d0a69b966dd8409cb063eb11ab6
BLAKE2b-256 b4bb649d5813b568d82f224f9ac29e68ecd89f16610b10dd4477d59d58e35ef3

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 640bfa3f44165a7b8aa05334cd1c4554abd957f9e94785f20395f4430e7002bf
MD5 a5f594f0a62ccb7f1eb543aea20aabd3
BLAKE2b-256 2a52c8d7924b22a9517c6f626f05fc63d344245f6523dbc8b7397b70ccd062e5

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46a21b7e44734390168e17023b357ebee03419c6b80f982cf59c8ca3d9622e3b
MD5 438d5a73aa07232d95adf5045ed517d9
BLAKE2b-256 b7029d2c3785214d525218e981541829cd6cf6516fad70fd9011132c3fcd2cc3

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f079563612a86daf11510cb4e67f9a31bccdaa9f6ba67790488b0dd3d09e9f5a
MD5 fab3fdcc123c39e700b007331b6e3179
BLAKE2b-256 fd4199e2ec3b5d09fddd21561196c56b3c0455cf74f01b8cb15090dcc1070966

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2a9cfc7b1524f602188e2b763da1405f9ccfe9bbb94df7fe4db10949bde130b
MD5 c2f63f659a1e795b5ba8ffea6675d32e
BLAKE2b-256 0a33e3708cdb3595e5a68a2c05b360dbdbd5e3c367ecb5eeb550ec7b7347ff9f

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55604a35bdba5c07f0b1baa8df698f830ae02675891eb2c2436f12cd6dffc875
MD5 b97c1b37934219ebbf329a4daae2c6fa
BLAKE2b-256 03fb8f800a0514db88e72aecf3b2087c1ce281c9ae3865cd6842334930c97625

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 048ac6fd6eaec5f645ed5505492120c29af44607277bd32d7547a624cb5acbd7
MD5 995b9325680324534bc2e0769ef25a25
BLAKE2b-256 900d84c29e1e6713c1adadc0550669fe3d764a9d853500a3839a4ff3f9cac12e

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9b34db6248473e818e6dfd43cf9c07f93089ce67e2488242e23a617f9dbf3930
MD5 ce3f9ecacc0f27dfb6d01e8881dba427
BLAKE2b-256 572fc181a29b969a5e3c5e525ecf57b4399b4ac17ec311b6df2d66e0985c9c81

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-none-win32.whl.

File metadata

  • Download URL: rtoml-0.10.0-cp39-none-win32.whl
  • Upload date:
  • Size: 219.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for rtoml-0.10.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 02ea3f4c13a2deed71d39911a7f5020b23b7a1b7ca56112ef37f012f9ba593a6
MD5 90b2f7c63b5271559af0e3af63f62f5b
BLAKE2b-256 a584d554db6ee4302d4a02550e23e9ad3235c96717e2353bf7298cdc0531e844

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 690cc2d4a87ea7557148ae02ddb054e4c53c87015a46afb4fa0be320e56a6db6
MD5 2e9bbc6be698db7575d530608afa8900
BLAKE2b-256 68ce2a9e6c99ce2b672ca15a2ca7d8058167e6bde4b899392340dfa1a66d3676

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7aee93f95b05624041aaa2cbde74fd40d1ed10ab2f3a09c2f880c1e97b3756e8
MD5 f48d4b4084f0fb7416e6bf222045d622
BLAKE2b-256 ce6c93d0ff9bfed62019f379bb1a2766505263bc922f9eda7803ae3b87f65857

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eed44a3e7eb8b2a97f12fea3ff9abc32c50cf202d3fe8e723813b0f85ab9f5c
MD5 53ec4509bdfef0b0524ac3467354cb12
BLAKE2b-256 6d50dc4601525e0425ef8086db7bcf0da477b06a40ceab06217da5cc27454799

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5f72046ec37ea6fdcfc975f95f355b4dad07441022b0116649f5da4f6e5ccaf
MD5 1573480f147386cb6c98f0df07365863
BLAKE2b-256 d71145156d490e90a55c2e230b9914de257d8a349fa886d91e3506f2214c9dd3

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed5bd458bdbda3ab8de1855a9054abdb2468eba0ecefe489e4ce3c7415a2b4cb
MD5 824ad15b79edfe196d98bc0915f60999
BLAKE2b-256 89dbffacf561963e801ada89aeecee682b5e3e08286bbaab6a25277dc2589a46

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53b460393af4048d1a4a73173b38579d968dc2852e932c37ec9fbd3663d98d90
MD5 d120a865473c6140160526d4a45d4dec
BLAKE2b-256 293a32a9c83e67c7d11e6a67646ecc5ebf69cf8fa672f94e186ed18c12b2349d

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c25146a2c43aaf4a1beb9a9d27a664a5ab311b2fbede9d759785cce00c37df6
MD5 14e6ac91a3f2e78aadd4dfc2f3d899a9
BLAKE2b-256 f032d3dc1ad2b0871718638decec05b0ad2c42c458243e172f110635f9041ed5

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2fc9a354bb819f73b83a2a4a802788046400a3c6b67d794b30345767e6ac78d8
MD5 161a9be3290151fcf4eb59fb78fc7319
BLAKE2b-256 488c7ee92e1e9cc35114825c344255d02465df40e5158f7c6bdbd73f3d880f76

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0631adfc095f39b9fd9c26726713c030611dcff6ea6c7d3d5b1db6983b7be0a
MD5 b8f67c3a0d5e0f783a026e499ae00f3d
BLAKE2b-256 7b522fcee03db47a821e1ed0ce05ea58f8505a6a48348684d78b8671ca4bf3a3

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b7ec702bb80dd8cbaa77be7fe0a17b6b5af643e48dbb445d7645126b2398947
MD5 33fd91196b0df64ccf2dff30dbb4fb0e
BLAKE2b-256 615c1af4aa4fd531fe1cdc8c3f10383d8eb203b372c52da67ffc5d3ee67db7e9

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e31e16f64097285ac6f70afd3c5853cce61f6c569fa739814a72e25d96219ae0
MD5 a9eceea3c8920a5a49f31ffd88cec63a
BLAKE2b-256 b1d79ac68839b1eefbe4566cf689e1c5ade566627cff3a55a80d99eb7c559996

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-none-win32.whl.

File metadata

  • Download URL: rtoml-0.10.0-cp38-none-win32.whl
  • Upload date:
  • Size: 219.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for rtoml-0.10.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 8b4d9a5ba3e3992ac7f56a5fa98fb2e8334e84cfcf5bb4212274a0a3e5b99972
MD5 db743e58effb1d52eb80561d1633241d
BLAKE2b-256 6714080781f1645867155c5e1622a451723339e3698016bf65b056e3bcd86a7e

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 85cbcc36484daabd0a893b0c0ff683b6a5f4b58f411ba70141cf23e6ab2546bc
MD5 d9f4a53d59ed78f0c82cc7b27f0aafda
BLAKE2b-256 0bd89770f255cd3fb39008ed00c3893e1f3af21f7be76351d2d7abbffa0bdfb1

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7c0a7e16963e04d49323cc5f3909c021546aa7a05dab7f4b2c2685e5d1981775
MD5 f1bff7c2037e77bd90a475c1d43d84ef
BLAKE2b-256 64503a78bd1aa80867308848ce9a4ccce22974044693a14b55a209421c083aeb

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81348be13dd939659960f41efef08baf6cd22f7700aa7bce33d236eeaded24df
MD5 55ea17614fa906b1bac5bf5f9a88d009
BLAKE2b-256 60452d50082ad3454385d2a1f194a7d3ad35443ac2d3a4f10da30d1925335e1e

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69d5988cfdb196c74b0bdc771e25c94e6a06887eb6beab355a990fbb16f08f91
MD5 bb36fa9bd9f95506118a0a83b2d809e9
BLAKE2b-256 f24c246cf7e90b681c25875108b5281e44bc65d10eaad1d4808583beaf1e5dbb

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 affca7a8542abab82cfc5e04d90a061b132a1c212d679df58539a4569144baa3
MD5 adae6cb4ea5be5097693eddc36623896
BLAKE2b-256 2ff8c112feaa6fbb17147a20d2265121639eecd43bd23f8a9c94d2faf94fa54b

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f8178e72a02f7dd937bff43bd29342421e39e6c43f7d10979df75d173d52dec
MD5 263b549a23e0e8e064f8c5f893af1836
BLAKE2b-256 70324316e1319f468b9646b97fe1fb4bbd96f971a035b61b922c43530cb772e0

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6e6b888e84e44cb1321dd8f90900b55374e5c13bf1daa85a84506586fa9363d
MD5 3ab0a56d36c6008b9ecb17516c9a8128
BLAKE2b-256 9026e023f2c3ab34fcf7e34e2d66ccc15dc667db31977d9389ee4e1cdd116adc

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a39ad0981c0b9734ee6231b0becf06fe19b20f2412cdbecac1d4d27f27aff2cd
MD5 fd2313c314200fdd8a8f4e17183d5421
BLAKE2b-256 f6d0247c1cf0911ca42529264b9903dbb68994c213bf931f9f02322a75ff5374

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50c3cb6557193c15aee9859a1bd97cacf7370bae115d1a21db4ac05639143519
MD5 66c16e117f2f6af39a38e3c8beb47eaa
BLAKE2b-256 47c99f91f41ee6db9580a7f885537b39ca120ac3e1a8a9c00cf1c38fc76cd512

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c195debdc576697f9c6ec679f7d0c82230286cadd211432ac60d8a289bbaaf7a
MD5 e2733787ecfb6ae88be623213f28398b
BLAKE2b-256 5bd1453d72872ffafb79c5addf437fe6721914622afdff5738e30c1638545c7e

See more details on using hashes here.

Provenance

File details

Details for the file rtoml-0.10.0-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for rtoml-0.10.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 01483a99545001f73383c62d153c48c5d84e55e4ce3b950c2c3ef749005b3991
MD5 edf655dbad373dc32c6de3e61944dcc1
BLAKE2b-256 4c89bd2720b92b23df191b915ac77f2bbbe2a26883524bf7264efd43b39538fe

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page