No project description provided
Project description
rtoml
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rtoml-0.9.0.tar.gz.
File metadata
- Download URL: rtoml-0.9.0.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
113f2e133d152d9424269c475b4a7d0679987078b543e88fcb16c870dc2c460d
|
|
| MD5 |
1ce137544f7cfea952ea7714b066d434
|
|
| BLAKE2b-256 |
d553ac68f06b42de70958f0ddb2c6a9109054fc208951e4d61af86f0c7186254
|
File details
Details for the file rtoml-0.9.0-cp311-none-win_amd64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-none-win_amd64.whl
- Upload date:
- Size: 264.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c91c99f5646e81c677133b3740a8e6b25cbe6fbf33fefd749c85e031f7716b9
|
|
| MD5 |
311522cb9f4589adbfda5df4f0a62de1
|
|
| BLAKE2b-256 |
ad43442f1c0f58ff4e1085c52c2da8ee78168ea5070d3a240940a0d8b8d588ca
|
File details
Details for the file rtoml-0.9.0-cp311-none-win32.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-none-win32.whl
- Upload date:
- Size: 248.9 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ca09643e9ffdebcbb27a095ffca86e32c3fb0a63c8788c5d40890065962eb65
|
|
| MD5 |
53f36f7c1760149bd2aa4ea19bc585f9
|
|
| BLAKE2b-256 |
128e09410b2e171f950586d8630d7a7bcaae5b3040c109f10285c780b404845e
|
File details
Details for the file rtoml-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 837.9 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f4e7841ab7cbdfaa15cbc5f0b049b154a68644fa39fc27a1f72a0dc23012e40
|
|
| MD5 |
578d3de54c747f06965bd02ad820a14a
|
|
| BLAKE2b-256 |
3cb7f863b974e8c5e595a3e0139f3c9cf13e78d43ab3b72ce1c70eb75ddfd460
|
File details
Details for the file rtoml-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 846.0 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13dc836d84fe987ddc00b6ec8683002eb53ffa59dc13d5a9ef51a1409539bea7
|
|
| MD5 |
22ca32c5abd69a84bf73e7dd0ccc37ff
|
|
| BLAKE2b-256 |
94dfed88ad3abff31eb73f4f77415ae0d464f86a13b795facafc9c13d95138ee
|
File details
Details for the file rtoml-0.9.0-cp311-cp311-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-cp311-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 720.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9eb42c8af0300c0e3c11057a7ace894247f3f9d265b10bedde72e1008bf09634
|
|
| MD5 |
19edc18e00ca8c973900815d12d16d64
|
|
| BLAKE2b-256 |
543be49263c0dd89593a8bede5add1f4a775f0996417eb476a2cba043fcef508
|
File details
Details for the file rtoml-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 706.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e31bec5a3d7b56966130ba2a68be7bef608822063ff8b9a6362c5001a2a4c82b
|
|
| MD5 |
98ebc0cee1fbd5cbc2552797bd9752b1
|
|
| BLAKE2b-256 |
8b54b8b297e92460f280ff8dc37b9270342606533df17d72197dcbab33a8356f
|
File details
Details for the file rtoml-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 704.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
363d41f1f69d415ced4c6be8c5feb6680c2330406ca2f0ba8ea04318857b8ca3
|
|
| MD5 |
a74b98a17e495162845334fe733ea772
|
|
| BLAKE2b-256 |
98375eb4239f792462bfbc63998eb7cd8eddd49b8a7147607ca366303e839678
|
File details
Details for the file rtoml-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 728.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
604782f36701d8b7df9b7f928e054e2a62dde828860e828377b2c8db550afb28
|
|
| MD5 |
1894aea78145dc8a44a4a1588e963952
|
|
| BLAKE2b-256 |
dd75c792abc22610f19f1212ad6371161003ddf79dbbab741b7b107ba5a27d1f
|
File details
Details for the file rtoml-0.9.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 354.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85d8abf6eb1da262a26f15d97de6ec83960172095e627dadf1ee7a32b70a367b
|
|
| MD5 |
e4aa80f8cb081154b4c8ad4ca437ecfd
|
|
| BLAKE2b-256 |
2058ab572a0487a47d43c4e83a0f65a193da120b692af391dde56151272cb5ec
|
File details
Details for the file rtoml-0.9.0-cp311-cp311-macosx_10_7_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp311-cp311-macosx_10_7_x86_64.whl
- Upload date:
- Size: 373.4 kB
- Tags: CPython 3.11, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91a25c5ab2a518b5126a52300d1a6ced0e363510e9b6e64cb36b19275083b441
|
|
| MD5 |
d02b251680dc71bcdd68c059dd4a7838
|
|
| BLAKE2b-256 |
6724b3ba1370711e754fe1d1509713fd418f81a279335699c229630d5378ed52
|
File details
Details for the file rtoml-0.9.0-cp310-none-win_amd64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-none-win_amd64.whl
- Upload date:
- Size: 264.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f920b97df9b33c18d3857dbd4af234e2a7f3372de3cfb4c0d8514e66ffd4dfdb
|
|
| MD5 |
b57eca1c1d043344461aa6e8384f1cae
|
|
| BLAKE2b-256 |
6dc6fefdfae58b3d5a8884989923b72c04f14a1682412b5fcc9ccd12580e5cc4
|
File details
Details for the file rtoml-0.9.0-cp310-none-win32.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-none-win32.whl
- Upload date:
- Size: 248.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38362ab6123a28e2f1f88995f286b999fc6f7c27896f402ee293de2a090b305c
|
|
| MD5 |
7ac761de8fcd4859a5ac6fe90550d285
|
|
| BLAKE2b-256 |
0d07da16f1496aace7af7c6aa73cbf66334b2f62964ee22f4f4c12082f32397b
|
File details
Details for the file rtoml-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 837.9 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a6088f6e77817389720ed8852ec2493b4524c96bd25f3aafe217e2a6cb29f7d
|
|
| MD5 |
84e6d44c91a7b88eb69ca2a915805f12
|
|
| BLAKE2b-256 |
a36b2d6d885f08f32d3c6b3b32d34e9cd2a59077191313bca94edd839706189b
|
File details
Details for the file rtoml-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 846.0 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dff4812186dff9381459d6a962e8dfd909ea8cb03f98ba28aa486b9bf8d72f8
|
|
| MD5 |
a6984819af63b9c051e39302031d472b
|
|
| BLAKE2b-256 |
f2b2bbf36207314a9afed1c80a2db9c300e7d8e28c3f0fdee2ce20279dd75419
|
File details
Details for the file rtoml-0.9.0-cp310-cp310-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-cp310-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 720.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a500481c61b0babb438b1d4c0a295ba60a0c890688431db980e3209d7c093045
|
|
| MD5 |
b8b507dd818312dc023346a9be0e1cf8
|
|
| BLAKE2b-256 |
5e4a10a38a1c0f992f6b1cdfc7c9ea0e3afe52e34f8069faa2e6ff0c54e0be63
|
File details
Details for the file rtoml-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 706.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38ed7487251aed9f118949d49e0edff2ace2f979ef7d23adf174bcb30983627a
|
|
| MD5 |
563c3c293891b904c527c07fcd5c3ba8
|
|
| BLAKE2b-256 |
54b846b40add94b40a1ce02851cd09b7ffbbc94b3ffb51f644f4976b2c3b87fc
|
File details
Details for the file rtoml-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 704.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d66f145fca240150d54334b1779edbc713a2b2b0547c703a9b441b94f05cec14
|
|
| MD5 |
12a111b3d5f96caff05163fb65bf1ea8
|
|
| BLAKE2b-256 |
fd07a37b216ab4c30cbe4e5a58812f11cb3f72cf611d5d02e954055e199c2c15
|
File details
Details for the file rtoml-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 728.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9826a25e7c274fbcfa1518f1e1c99104f10ba553b34be38dcd31b6c9d5207e47
|
|
| MD5 |
49bafa86685af5ee267195d99efa44d6
|
|
| BLAKE2b-256 |
28541f2350f1cfe19f3f30154c8fa466604401130308efdcf0535c3ad9aff677
|
File details
Details for the file rtoml-0.9.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 354.9 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e00c085841c215868b5c3d607ae7076bad4faf6cc00bf9da334c0683b2001a9
|
|
| MD5 |
62a636d4d336bd2b26a10b50b8ef7afa
|
|
| BLAKE2b-256 |
15b2c311fea1240a191670eb18e6efe0dc1e66ade1f7990da872bd383f7f0e58
|
File details
Details for the file rtoml-0.9.0-cp310-cp310-macosx_10_7_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp310-cp310-macosx_10_7_x86_64.whl
- Upload date:
- Size: 373.3 kB
- Tags: CPython 3.10, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b440445df3a5bdd30f70196305c964699fb8c6a23dfe08b9b0a822a8c3a1da00
|
|
| MD5 |
0b61fee0e53c684f8022df56f82f0513
|
|
| BLAKE2b-256 |
2aca93c6555c76afa5586ef8dd352f71dc2cea134409ff0bbd62b8193abd9ebf
|
File details
Details for the file rtoml-0.9.0-cp39-none-win_amd64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-none-win_amd64.whl
- Upload date:
- Size: 264.0 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c539af5d88056a4d53a1f9067fee97bf6015edbb8e82fbde6ba96e19a1b41645
|
|
| MD5 |
fd5b8850b6fb73df031f5852b655889b
|
|
| BLAKE2b-256 |
dce18ba86b2ecd542a0a430db14382b75429e368db4c10353554a08567966fa0
|
File details
Details for the file rtoml-0.9.0-cp39-none-win32.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-none-win32.whl
- Upload date:
- Size: 248.9 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0eea8963824eb4be5d41c11a2e5dd51c6149f5274f015012f53dd82bf146a16b
|
|
| MD5 |
5dfbc9769828ad33dc12be41412e580d
|
|
| BLAKE2b-256 |
482ba7f9c11f87128823f74eaf88e8732964bb97af4501bedfc82c0afdfe5082
|
File details
Details for the file rtoml-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 837.9 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b43f61df97a74a4ebc216d9fdcefb1c631bfa98265655fcc0950fbe206054e8b
|
|
| MD5 |
890c789140c3bc525b61fa0e042cf9c4
|
|
| BLAKE2b-256 |
27aab1ecdcbf67c58da996154535a21ef20b7d4f6ceac20258a3a4d399dcdee2
|
File details
Details for the file rtoml-0.9.0-cp39-cp39-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 846.0 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f1ab9638aba4027e7cf007dd7f5d497b1bd6b643a7c24bbc09bba76843fa779
|
|
| MD5 |
b2b2f6410540551f88697a5b459e464a
|
|
| BLAKE2b-256 |
9d3f0a446de1609ecb3fa14e07dbffdbf8a9aecff9770aad9df9245658f9a2d0
|
File details
Details for the file rtoml-0.9.0-cp39-cp39-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-cp39-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 720.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ada33f7fc46b24f20e0219b659f3de15c09ea7209657e43770e2f5f0e95ab6ec
|
|
| MD5 |
196e2b929ee44b3c0fb595903df76e48
|
|
| BLAKE2b-256 |
32ee6362618046249d5e7e1a12edd71fb3f061fb5152fa3d7d69bf1b801d3d90
|
File details
Details for the file rtoml-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 706.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ea08ba5fc9a03a50e1e783266ff5b84fc81b3af5bf77cb5f190b5a516b53810
|
|
| MD5 |
1b7fec21669244750d49e8ada4448c2f
|
|
| BLAKE2b-256 |
c68ae78f228de638360f2980ddf8a6493805955138c3f6a55e0e479c766b5aa6
|
File details
Details for the file rtoml-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 704.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c3973f1d22450d5eb3abad65f9c30167c8f6ce475615a9a6364903476b68b56
|
|
| MD5 |
171aaa27c9963bcc1fac574c198d9c20
|
|
| BLAKE2b-256 |
2a7cf2d174e6a8269b930c29ecd4e84fc1c9ba3829736abaea812d2e1aac57d6
|
File details
Details for the file rtoml-0.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 728.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4cba47bf407642214a4aea349e91699ea67c6c07ebfa4412a2383837d295ccc
|
|
| MD5 |
7e70d2bcbfc2b788edf27a1539cad492
|
|
| BLAKE2b-256 |
9c2cac564b49f63743545f5dab75b116a6e9636a969992357bca133d709919f0
|
File details
Details for the file rtoml-0.9.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 354.9 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afead84d80f835a5d6194faf1cdae9ebee092dac68f25a69a8fecc0dc26d1720
|
|
| MD5 |
82b3e1800f3797b1e9c112b53aa92098
|
|
| BLAKE2b-256 |
bba9ed7ac69353079b53bfb5ba3c7203a1f5e6e192679533cfc7b186515d38a0
|
File details
Details for the file rtoml-0.9.0-cp39-cp39-macosx_10_7_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp39-cp39-macosx_10_7_x86_64.whl
- Upload date:
- Size: 373.4 kB
- Tags: CPython 3.9, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39e377e075af4f33a1c60cafdedcb02d7a4d7bf241e6c0bf76998c10ffc8222a
|
|
| MD5 |
6a45e758aaccf627f04e5b06301c699a
|
|
| BLAKE2b-256 |
99641059cbe252c1f3dbb5885e3d76708ce2ea515b5baa07d06b4470c8c5abf1
|
File details
Details for the file rtoml-0.9.0-cp38-none-win_amd64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-none-win_amd64.whl
- Upload date:
- Size: 264.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f780f90e3305b5e961dcc8f00c0d3bfa023d7626d64e8fa15c91f9ed6be6d10a
|
|
| MD5 |
15ae986dbea82c92208e0ff756883f41
|
|
| BLAKE2b-256 |
fd9ed70b39698a751ebd31cb438766acfb3bd0f925717572f7f09bc9a9cbe299
|
File details
Details for the file rtoml-0.9.0-cp38-none-win32.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-none-win32.whl
- Upload date:
- Size: 249.1 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
352fb220615c0904d77bf719c7f7e066dcf5a10ba118dc6cea8809424f858dad
|
|
| MD5 |
3a14519b550f43af5f8375733bcaf680
|
|
| BLAKE2b-256 |
8b81107b99daf2af2e1d970cad0cfffdbcdc81da456a530622c87d92efb40910
|
File details
Details for the file rtoml-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 838.0 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9591699c1231dd9e615ec1b27933f1a4d8b8f57841e62d1f2aa109150da941ea
|
|
| MD5 |
807269079596fb7a23df4806c54e1ee5
|
|
| BLAKE2b-256 |
c881e71a8dcbf6de4365211b2e72e99fca5e3429ce81d3d41941f05e832f9d66
|
File details
Details for the file rtoml-0.9.0-cp38-cp38-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 846.2 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
449701954ded52d885ac2f9f79b503c5aa1e2c6e7f0f6100ad4f46262c82dd66
|
|
| MD5 |
470378a81087a56d1908510717b9b545
|
|
| BLAKE2b-256 |
52a2fd014cde672109719cc409588a4c5d9dbdb7dc3be15df0ffdea07429ca0e
|
File details
Details for the file rtoml-0.9.0-cp38-cp38-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-cp38-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 720.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b02257049dac81b0a7e333e7c35477939c016b39b444f849473650dd7c52410
|
|
| MD5 |
43bed92ce096b75945a1b7b77bc94913
|
|
| BLAKE2b-256 |
0c6c04700a89568d9f47a544053e86fddda30a96d75577568aa4deaa622ac9ff
|
File details
Details for the file rtoml-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 707.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1f2c8aa5c07c1b8886e27d34332e5be7e3b658d6a8d5f55227ff1e4014ac87f
|
|
| MD5 |
65c2697f2c70b808976a8178c7e054ae
|
|
| BLAKE2b-256 |
85244919ad927dde3b51d0ac8ce0dd6c0835c952ab43110b94f92640ba3a582e
|
File details
Details for the file rtoml-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 703.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba38c4efcf639ec5df271c6debd6953a53be62087fff48bd7cd239553e01d66a
|
|
| MD5 |
7a5c7c9ece5c77ce03ea0b3eaa1537cd
|
|
| BLAKE2b-256 |
c3f2bac02c3f9d5848dd89c4bed602a93a0c9cb9d13ee77214a19e801260ba98
|
File details
Details for the file rtoml-0.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 728.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6a95c1dcdb0dbb340fc67b35ef86a07f01ef4842d6bbcb883dcfefef87ac106
|
|
| MD5 |
c01a5fc3b238272314c59fd279b57464
|
|
| BLAKE2b-256 |
c491193aa2d9f96371a09ff6faa7edbba6d1d4a7758ea53c1ae976b40a608667
|
File details
Details for the file rtoml-0.9.0-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 355.1 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc02f77bc81d1ade12bd983d46a1aa1ed4bc10418de0ac81267928b49f73cc9b
|
|
| MD5 |
1c0eca8335b5c8c13613277223cdc0cd
|
|
| BLAKE2b-256 |
1de2313b187c41d8b8ecd593a0e0dd6f7d75f024917f397f5265dede12f90b84
|
File details
Details for the file rtoml-0.9.0-cp38-cp38-macosx_10_7_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp38-cp38-macosx_10_7_x86_64.whl
- Upload date:
- Size: 373.3 kB
- Tags: CPython 3.8, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b99ec14d5bd8fc62a94acf1ce328d11cda1934f736d40baefdbb212333f25250
|
|
| MD5 |
530c2a4497fe2842ea71e5811a74ce30
|
|
| BLAKE2b-256 |
bdcceb16e1160dfd1d6fc22b30d24d1ef59570217bf58e9e7068e1d2fb7dcf3f
|
File details
Details for the file rtoml-0.9.0-cp37-none-win_amd64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-none-win_amd64.whl
- Upload date:
- Size: 264.1 kB
- Tags: CPython 3.7, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13ff304eb8e9be8702f8f9c7c561e5ebffcbb4e830d4ae3f2f9471d1c8a656fa
|
|
| MD5 |
aa0b1df4b02124ba15227934da5301f0
|
|
| BLAKE2b-256 |
f6b8c8bdbb2e3d536eb9dbe90b61bdfa3547f292f1f38aaa8a616fd6ddc617df
|
File details
Details for the file rtoml-0.9.0-cp37-none-win32.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-none-win32.whl
- Upload date:
- Size: 249.1 kB
- Tags: CPython 3.7, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fc3652e963150ace043c6797b5053c8a03341c1bd813c6d9ad7403bfa5d1138
|
|
| MD5 |
be44199a8b07ad2a719b0e413e51371f
|
|
| BLAKE2b-256 |
e2b406a5b4438b410ec19ef2122017532b2153b63b44b6ed863a7ac984e27b54
|
File details
Details for the file rtoml-0.9.0-cp37-cp37m-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 837.9 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e68c3a7a7388ae2dd586e3a20474908bc889fbe77809f06d46eec37c0c4b96ff
|
|
| MD5 |
444a24c8427c13c0c88949c8512867c0
|
|
| BLAKE2b-256 |
d871ea0282e693b0493232cef331a4c84fb57a85bc7539737967601b7c7d00d6
|
File details
Details for the file rtoml-0.9.0-cp37-cp37m-musllinux_1_1_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-cp37m-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 846.1 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a78d504d0d6598655f5d01eabe2df6d458ff2f9463a3c6f85a3e96a57cb61631
|
|
| MD5 |
6a283bc6c1e37d676b9bfcb5a79d85b3
|
|
| BLAKE2b-256 |
4f4137a3ea9c3d1b2a25aa400cb6538dcc7000d4409a6b46e6b2cc4b5c793cf1
|
File details
Details for the file rtoml-0.9.0-cp37-cp37m-manylinux_2_24_armv7l.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-cp37m-manylinux_2_24_armv7l.whl
- Upload date:
- Size: 721.0 kB
- Tags: CPython 3.7m, manylinux: glibc 2.24+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cccac32cf08749fcf9e905e41c8cb58348fa4110459b09f49245a40553514871
|
|
| MD5 |
42375aa85c96d3eea5bfdc2019e4d957
|
|
| BLAKE2b-256 |
2fd4ea196118985430116fe8ddca0446da1f767c1523acb5d92ead3f3d7ef8fe
|
File details
Details for the file rtoml-0.9.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 707.0 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb48915dc12f18dd680772f5c1f248197945ce639ca4a0897ee01878ada65411
|
|
| MD5 |
7e2a019dcb10506d55ea32d1f289fb2e
|
|
| BLAKE2b-256 |
dbda20f06bafb7c12abb29cc767fd994d2b5f52780965a7236752252f2d359ac
|
File details
Details for the file rtoml-0.9.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 703.7 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a79400cde1a6d75e6f36498a3b6d86b6713bf757989ab304c1c3e6a610d0665
|
|
| MD5 |
17aaf9b3bf64828dd786a39482cd9245
|
|
| BLAKE2b-256 |
594720a0643889373047a2ed858e078f004ebb70c1a28dd92c64be370f2e7c7c
|
File details
Details for the file rtoml-0.9.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 728.8 kB
- Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba96ee3afbc2cdfe90833f9f7d789aef7d9be1911ec0cd748c786c0b8cda0b98
|
|
| MD5 |
19e9405bb07ae8009a4f3c58a92d7bff
|
|
| BLAKE2b-256 |
9c704e07ac6b89a6d676cd874a41767602ec9a9df4d5b94b652affff0a2a61be
|
File details
Details for the file rtoml-0.9.0-cp37-cp37m-macosx_11_0_arm64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-cp37m-macosx_11_0_arm64.whl
- Upload date:
- Size: 355.0 kB
- Tags: CPython 3.7m, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37c7d3903d818b2770f2ad424b1aee3c47533f1cdccb037b2a51e47a89d2de30
|
|
| MD5 |
a5552a41280d30122270191b67bf9262
|
|
| BLAKE2b-256 |
548cf18ffc69c4519f37e50a3b5adf70c32a2d304c8f69bba4f4043115bb96e5
|
File details
Details for the file rtoml-0.9.0-cp37-cp37m-macosx_10_7_x86_64.whl.
File metadata
- Download URL: rtoml-0.9.0-cp37-cp37m-macosx_10_7_x86_64.whl
- Upload date:
- Size: 373.4 kB
- Tags: CPython 3.7m, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c3f0b1b6c70e7d9ef29b3b2412412f2be10b333da3aeac74c6f69961b955272
|
|
| MD5 |
3553e998f4fdbdfdb16a3466b1551d32
|
|
| BLAKE2b-256 |
c3da95b3b44c548922336f12f12d0d07b7b4e8b30409cbbb7749857d28d25f0b
|