yaml serializer and deserializer backed by yaml_rust2
Project description
xoryaml
Why?
Yet Another YAML library for Python ;)
I wanted a memory-safe and reasonably fast YAML library that could handle
datetime types. It takes inspiration (as well as a bit of the test suite)
from orjson.
Demo
@dataclasses.dataclass
class YAYAMLModule:
name: str
released: datetime.datetime
tuples: tuple[str, str]
sets: set[str]
dicts: dict[int, str]
module = YAYAMLModule(
"xoryaml",
released=datetime.datetime.now(datetime.timezone.utc),
tuples=("supported", "of course"),
sets={"why", "not?"},
dicts={1: "No,", 2: "fíjate."},
)
print(xoryaml.dumps(module))
# ---
# name: xoryaml
# released: "2025-03-08T17:01:14.569027Z"
# tuples:
# - supported
# - of course
# sets:
# - not?
# - why
# dicts:
# 1: "No,"
# 2: fíjate.
print(xoryaml.loads(xoryaml.dumps(module)))
# {
# "name": "xoryaml",
# "released": "2025-03-08T17:01:14.569027Z",
# "tuples": ["supported", "of course"],
# "sets": ["why", "not?"],
# "dicts": {1: "No,", 2: "fíjate."},
# }
In addition to datetimes, dataclasses, sets, and tuples are automatically handled. You don't need to pass any settings for these to work. On the other hand, you don't get any other settings either ;)
If you want to restore the parsed data into python data structures, I highly recommend pydantic.
validator = pydantic.TypeAdapter(YAYAMLModule).validator.validate_python
print(validator(xoryaml.loads(xoryaml.dumps(module))))
# YAYAMLModule(
# name="xoryaml",
# released=datetime.datetime(2025, 3, 08, 17, 1, 14, 569027, tzinfo=TzInfo(UTC)),
# tuples=("supported", "of course"),
# sets={"not?", "why"},
# dicts={1: "No,", 2: "fíjate."},
# )
Thanks
This project would not be possible without:
- pyo3: Rust-python interop
- yaml-rust2: Pure Rust YAML impl
- orjson: Parts of test suite
- ryaml: Parts of test suite
- speedate (pydantic): Date formatting
Dev install
- Install uv
- Install maturin:
uv tool install maturin - Make a venv
uv venv - Activate the venv
source .venv/bin/activate - Build and install
uv pip install -e '.[bench]' - Optional: build release
maturin develop --release - Run tests
pytest
In order to keep the interface to native code as simple as possible, I have implemented part of the interface in Python. Not sure if this is a bad idea, but it seems to work fine? Let me know if otherwise.
Run tests on all supported versions of python locally
- Install tox:
uv tool install tox --with tox-uv - Run:
tox
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 xoryaml-0.2.0.tar.gz.
File metadata
- Download URL: xoryaml-0.2.0.tar.gz
- Upload date:
- Size: 17.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94a7555dc67236a163be4056ed3c7c28b1d5a32b91e80e469a3931727b48a8b9
|
|
| MD5 |
b4606a4cce8a2eabee79c23a3f9d5a1e
|
|
| BLAKE2b-256 |
126bf08243cc5bad537b8504e380c8114e8844ac1e4de2607720132b2277518b
|
File details
Details for the file xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 392.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61130c697559c973e4295c4093929e89e0157f7973364f720e557b144b0cc124
|
|
| MD5 |
90fe1cbb19e7f5295cf98486aaac8a52
|
|
| BLAKE2b-256 |
539ab674c5d53ec2c8fa410001af725f7fe712d9ab033acbe2ffa06f33788359
|
File details
Details for the file xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 453.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56cd448344e0c549a3b9fde2994674fbfdf4eabb86683fd9b44f08a77c5ff833
|
|
| MD5 |
1522aad206f136cadbf803a259096c06
|
|
| BLAKE2b-256 |
1d865c29210f89ab54d6f94a704b6a7c71f64c9d7bbac137b83ad6fb5e76f335
|
File details
Details for the file xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 444.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
767c4afee052d3eae3db9b401d3040fb533eaad819f915e823df27e781d4d041
|
|
| MD5 |
08ad91fdfe49ec4a1a97d58e186636fc
|
|
| BLAKE2b-256 |
7c4959b53128bfc237db375a45048cf9e9d2dbfe771a7400603487f8af236710
|
File details
Details for the file xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 404.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9b2ca3aeffc0150bbd39c2cdd9e3dab60a16cbcbd4d9c852bec9de2fb74176f
|
|
| MD5 |
e65e89fddd17e2bd92aa51c37118d345
|
|
| BLAKE2b-256 |
26c9590f387e679a589456295579df5c4c0c2af7f77b5eec11cb1435f3dfc35d
|
File details
Details for the file xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 387.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
185ef70e729e107dd3abd142af479420035ecd3fa6573acb6e664d991dd7ed61
|
|
| MD5 |
ce86c6f7760239cb47e29a5fd4b6d011
|
|
| BLAKE2b-256 |
e499df39535fe1b352df15874c782140b51a8a6e0fba9d7d01d175bb24c83c3b
|
File details
Details for the file xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 420.0 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ba5854cb08ec3816122f7baeba142cf6b792ad0fefcb024dc369b35cfb74988
|
|
| MD5 |
9ebb4a3277c4a5a58954f911a83b822d
|
|
| BLAKE2b-256 |
159b315b9c10742dde40f5b55bee96a38f94510f5954d91cb08526ebb33e80ab
|
File details
Details for the file xoryaml-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 454.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86da6c932f56e2947129cfb1719fc1bdd0732683fd51e404e91d77308a0d27dc
|
|
| MD5 |
a83c65c3d64052c2328c752ae0af940c
|
|
| BLAKE2b-256 |
3866d69e8f2efb8237102dc50219aa60a5265c04adb775bf6df1576f966cbf67
|
File details
Details for the file xoryaml-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 445.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54f301a1101976ef06cdddae2f7d965e5b3c45c462f7a72c546f4217fd950fb1
|
|
| MD5 |
6c26349b83b2679d5d9e6a3f6d2b2b2d
|
|
| BLAKE2b-256 |
7eb79185fe087716844571be53c04d3882c16c0a56d776ab668d286d9e5db758
|
File details
Details for the file xoryaml-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 404.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a03f809a3e5abcc65a3ff3ee0a4e8299285934ed654b4eb12e51730f97853ab2
|
|
| MD5 |
041e966c9049486c5d2a45dd319ca02f
|
|
| BLAKE2b-256 |
eb391d1233e0568e67298ee316ac7c5df3924c6726982fe7f8c223f59bd6b312
|
File details
Details for the file xoryaml-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xoryaml-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 388.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d31e832fce929c57f972ca18a7ba42e468bf4d6eb3b7d335fe73105f1c08c573
|
|
| MD5 |
85a0f726e91de1c25380ef40b4897403
|
|
| BLAKE2b-256 |
3d98c427079f9d77f2c7fed56e1ea21bf20c36561924e6bb8be4ed6c1c19f89e
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 447.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45df5ebf70b030dd2e47d0b80791a98431fda596a0a76ea5754203a4047c761d
|
|
| MD5 |
a7d6b980634912b35c7efe41d39e3996
|
|
| BLAKE2b-256 |
a8397764b057c906334485b96aafb0eff17498114fc2b8e8e4181d2f0ef80daf
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 442.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e67a0b46ece823d2303aae770af1f1c38d6d0fd8a771c38d5bf702ee33aa3fa
|
|
| MD5 |
bf135338bd452644cda12a20d5602038
|
|
| BLAKE2b-256 |
816f1d8aebe2b710619b92b714f0ec80a17de6c0b3714458e772fe9dd975ccfb
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 401.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a548cd339b011ab3b7dd360b8879209046e301dad716e7e87b4a6400b7865c65
|
|
| MD5 |
de482772311c5910f463c5bb771f49f9
|
|
| BLAKE2b-256 |
5ec9b6b6e045a08da1f0367d9c8576912bfff62606420a0de5d8a93d32f147b1
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 384.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9120ce95717bb4256a3d6997c47652506a70c48fcfa118bd6bbb69ce565bd41
|
|
| MD5 |
a5a8cdd947af22365b28f787050ffdeb
|
|
| BLAKE2b-256 |
26e4273bb104cf4e6e08f222e2431272b5d2055c9cfbb92262adc25d7091db22
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 243.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6ffca2a2a91d2a4f20741424a9ddbc51dd9c71e739a413d25461f5fb55f13f6
|
|
| MD5 |
17bb17805836396713800bf1cddb31f9
|
|
| BLAKE2b-256 |
0c68c3c8f81b62afc3f7d1b897c20ae9e9c9ec20655ebe1830a331055f0776a8
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-win32.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-win32.whl
- Upload date:
- Size: 234.5 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fbcd3d0daff6c379921650bb6302c47b44b06470fbe42a398a2579f09fb8061
|
|
| MD5 |
3fda27abd07eb123d860138f8ff8a931
|
|
| BLAKE2b-256 |
24eaa76e246e98a92c86c5ecb800488239400dd175bfdcd4cc1053ca9ad86a87
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 390.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6802998eab21975db43cca59be83d8de077ed564e5fcaf34bc57f64100814f36
|
|
| MD5 |
aaa7cc67f6ebe1c19587814a09eb1775
|
|
| BLAKE2b-256 |
addc8948fb34ea220b26bdc7c38386728f56d86d300f756fe356f1a1222a5370
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 447.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f792100c126669a883c73157c44937f3ceabf0d1c56a71be3d29c8cbc7adf9d
|
|
| MD5 |
f68d05889f04b9730da95c4eedf1bafb
|
|
| BLAKE2b-256 |
a38f6f1b739a923af33e70f4224801ace383079dd996069bade7754a1635366c
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 442.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b701a2625714340b07e7bfbcb23a20fc1393b6da27c0897fb2ec9c8c53c6bfce
|
|
| MD5 |
8771e169c59610fe7de9094bc4d5cf35
|
|
| BLAKE2b-256 |
c203a154bd615632648d14bb2dae6c986fcd4b95a0b4ae09fcf694f4ee656540
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 401.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdca45bf10fb720c2ab93968f1e69c1bc033e80e90358ed479bfac81c5d707da
|
|
| MD5 |
e0f77927146c1f5fdf9d98c0d958629f
|
|
| BLAKE2b-256 |
5378e624fefccaf68ad776563b451657da1a81bc1bf13e43c57bcf4f10321689
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 384.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
043fbd0ee603c2942c9409cdd28f2469045a600974b0b9199bbcdf8ff63f5bff
|
|
| MD5 |
77306f08476cfe0be8be342130765be4
|
|
| BLAKE2b-256 |
23d4268696d50c76b22228fe46e963a7646cdaedf5c8eef8d87bd6a389268114
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 417.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e339aed9ad68daf2f2e16904553cd3c6473a0551df73f232a2e005adff0e82b1
|
|
| MD5 |
f37d998ac19b6faf320b319d6ae4d83d
|
|
| BLAKE2b-256 |
2c21c3437ff1776037b2ca42011127017965f1e422327b529d4605fc0570b34e
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 345.9 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
525eab0fd4545616760d8d583ec65de6f80e976fb92dc5b77fc0cb02be69a9ed
|
|
| MD5 |
0d0cf4d1accda17252eb761aa985839e
|
|
| BLAKE2b-256 |
66009d1aa47b541cb2706b5bc0a02b370a8fa769129994b3d4ff8ee36126ea41
|
File details
Details for the file xoryaml-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 360.4 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2a6719b4968c56dc32d7be3121df11a8c5d6159179b92c3b45ce08105c1cf35
|
|
| MD5 |
978814983d066f68f0d8ef0bf3f726d9
|
|
| BLAKE2b-256 |
b424762bb288ae8f53ba47a34240ad924f5338dbc4a5f0ecdcf240a7b48206b8
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 244.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c5506ba43e8946e9fd27401295c4e1afb8b09598a33858a5806f742fbe11b89
|
|
| MD5 |
9cd9da6873d1baafed021ad0eb9f37d6
|
|
| BLAKE2b-256 |
f5e1943930c821c62025ac0a831a7df5009beea075a0680aee11442852dc5e46
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-win32.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-win32.whl
- Upload date:
- Size: 235.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43dff062749fb7bf189584f714496abd50ac21efbc32c84f678766dc95c7d0f4
|
|
| MD5 |
c7f9b3530495ab6de32ed73ec671d80f
|
|
| BLAKE2b-256 |
5163df81fba64fbb5361decdf8b3049b7ff805db216deb6ece1932668af515af
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 390.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7272326720198b48e18f23e598d1214e52fdc9993a29fde23f8027329150533c
|
|
| MD5 |
c6761920cd0249fc274bf276e88cb084
|
|
| BLAKE2b-256 |
070ddfac20d76847bb285749f5b584cea64b53a8a5b3cfb577f82a295b622656
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 447.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b67b78f49ccd763fdaa6c6701200a7cf9384979505c956fd15fc8785aca24a0
|
|
| MD5 |
9458250fcf00a45c89bed84a42042b0e
|
|
| BLAKE2b-256 |
abade6d4d1f1a1e00cb09f8d1814f5e69c91cecce754889d665eea05a8350792
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 442.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c664a38c68a8dd3c7681f18665d6280b662139c28162ecc292a711b344917bcb
|
|
| MD5 |
9c2bf97f05507e73a206f50231f24640
|
|
| BLAKE2b-256 |
a527f1cce6288ae0d39b766c435d60eda62106a1383c52c58d0bfec5b1b05b6b
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 402.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
973b4ba136faf49b0536e9c4650fef72293bc2fd44b5800eab676df9dea5bf71
|
|
| MD5 |
a5413cfe4ee5328aa530808a4586fecb
|
|
| BLAKE2b-256 |
9239a8102772d785d7ade7b8016460d8bd38fde5ba736b85c7019b24083fd56f
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 384.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21fbd77b4460929cc9b200ffd0400ed6134048f9953ae5091139e07f1263fc59
|
|
| MD5 |
956f2994952ecc832dd5ae175bbbd320
|
|
| BLAKE2b-256 |
0a552c56c037d30f3769886e413dd8cd5cdaa93f5b2a22c2de2e6421e098fa10
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 418.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
828aada12d6ccbc8202c6a0760db733b65a9845f3e0dc0ca44badff156ce1e2b
|
|
| MD5 |
f9d7052410cda3927a23116e2369f079
|
|
| BLAKE2b-256 |
2231b521d974c801b2208229f2227c1121daf79beaa4831c14a507b367f1fd14
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 346.5 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
309f6e33ba6de1dadc54d10e645005c9b8ea895e39c6a118069327aa63ce69de
|
|
| MD5 |
88f180d0f4d872535785739deacb40b0
|
|
| BLAKE2b-256 |
2d7ee27eb99e48b0e15c42f0fbdb64b4b005f7a9bb617d76fed8e5558ace28c4
|
File details
Details for the file xoryaml-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 360.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53793de08306ea8466d4bfc50c79cedd6e61abc40f54fb25d0fb95005b16a268
|
|
| MD5 |
6ba56d0b049c4a8418f3480bffcfbc46
|
|
| BLAKE2b-256 |
a6c1aea78ab6a64c188fafc65e9e9a2bdb719c2677584b56d50148c7f259eab0
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 243.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7f0a74f317541a423a27e3cec05dbf4a565cab6a0a9bff16896a70b92aec8df
|
|
| MD5 |
ad5c52d5b200fd3cd732ff509969d703
|
|
| BLAKE2b-256 |
b6e49509d63f78b34200dded202e826fc541f94c122306e812726997879f9dbf
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-win32.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-win32.whl
- Upload date:
- Size: 234.9 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fe737823f222976560fee1d8797b7ae5afc515379c951e51cc948269e961adc
|
|
| MD5 |
d76fba5ab9753c59b4d3dee7dbba6d1e
|
|
| BLAKE2b-256 |
a32d7a56837f6c00e98c3309a36f5faffd8f830301af5dd68c9ae541cd339a8b
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 391.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
848a260a446f9c44cbc0cfc5790fc1c945e6a65bcf4490601a300369215382f1
|
|
| MD5 |
657f53ea20bb884036b5a20d2b2b4e28
|
|
| BLAKE2b-256 |
a0bf978882a5863392bc0ca1dbafd1055278ef0754862e61b13a74420c89fe08
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 450.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0f02c903a6f92cd149b46305cb2a4b13b35d113865a643773d28c9a64b85ee0
|
|
| MD5 |
30849f91b44225197b82a06d102ba108
|
|
| BLAKE2b-256 |
25d03d9992c96d20cad4516e9fa6a771783ca1ad8e808fd65e6de8d347887dec
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 443.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e7414c811fd4ea24a7f3a893db79f56f36c99b9c193d74216412bfb76117857
|
|
| MD5 |
455ddf52258cb2ed76639f5d721f17ed
|
|
| BLAKE2b-256 |
ac0672cd3934e4f50be206df0645a0f5ebda5cda55737afcb091d75a104ae3cf
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 402.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5055bc9ecdf69c05d111f62941d9ba3b00bdf40d20747d851f9c8c1ed5dcffc
|
|
| MD5 |
51bf779c057d68ccff80b2874acaf31c
|
|
| BLAKE2b-256 |
9b7f0c13b9edfde491f7c4163e73ba60b53b8a88b32a03a7b58ffa601c8b7a09
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 385.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0d98728fbb82ebb3e931c6195c6dd360535f03b71a0a50211bdc1dd3b4fafc1
|
|
| MD5 |
436e39f17c4bd04a850cb6c87422ca62
|
|
| BLAKE2b-256 |
7b3e54a9e42424d30999c56f279f59b7d06024cbe9733b7815b1a9ca2ba2ae5f
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 418.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68ddbe78be082c4c8a277c6c10d477195d3af39ceeb0759be27665f5b061abd4
|
|
| MD5 |
1eccd7d90cf5e567f564ba16a05062e1
|
|
| BLAKE2b-256 |
256068028d047df32e52d1f9a872dfe7af7df671bd5701ee444b993c536f89ea
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 349.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78e04b60307677ef00cceed1d493b340485d6bf44f35c73d42de6e2d3dfc6222
|
|
| MD5 |
2e243118f38c4646bb92deb1760b7229
|
|
| BLAKE2b-256 |
c5725b878af7683c5ce7a4305963a82ee31bf62264b614a15f879e947cfef83f
|
File details
Details for the file xoryaml-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 364.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
986900258663804d8567c7dd58d6971dce19a957e079048fbb1414da4cd41d38
|
|
| MD5 |
f3ed2edd232b49ffddb82fbd35003bda
|
|
| BLAKE2b-256 |
76e5840daa9eafa7f402a8c8cfa54066516fff9a74d7e6942097c749f783f483
|
File details
Details for the file xoryaml-0.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 243.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cd3af127566b565a98b20804063ddd87125eeffbe6c0d3317cf2781e8c668e7
|
|
| MD5 |
ec67424527e1109c12d5d0ca39bf4fe2
|
|
| BLAKE2b-256 |
e0b17ecd42efb3e45f34ea185290616b7344ed691905a25df06c7f5d41331325
|
File details
Details for the file xoryaml-0.2.0-cp310-cp310-win32.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp310-cp310-win32.whl
- Upload date:
- Size: 234.7 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
354929205ab69eda934f4ca7e7a2b1d301898e7a38c04ec2a1885942454b96be
|
|
| MD5 |
8656830b8c8ae9bd3392f29d23c7618c
|
|
| BLAKE2b-256 |
cfd4baaf45bc998b534a32890f3bc1dd4f5a62455ab190e9e2c629560628e478
|
File details
Details for the file xoryaml-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 391.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7040ed2da92b7ee409cd6c19eaf44175fbfef15fc201e8bca66ca8a075433c32
|
|
| MD5 |
b6ca9da6127b614bb32fb62169b09828
|
|
| BLAKE2b-256 |
c52534ad8d9d1ef686f017d2fde8fd251452bb263e573262104b9c5e1ce05625
|
File details
Details for the file xoryaml-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 451.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c106ff988cd26281402fc21125a8b51c6c5e51c7ace213846b98e4ce40bee568
|
|
| MD5 |
c23667180ae2aa0e9d039d4fc6e6eec5
|
|
| BLAKE2b-256 |
da14e4df0750376e00c0f0d7df01aa26f4b355b2eabf8fcc65da423dfac11234
|
File details
Details for the file xoryaml-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 443.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44807eae3c5b6104d1bbd23a27d098fe802d026488f16572aa2f0e6093e8ccce
|
|
| MD5 |
cdf0acb391c55bbde896ea1179eeab05
|
|
| BLAKE2b-256 |
27757b66c64484b41120984da5e35fb4cdedb16f08f6accc0b9a9875b17a84c7
|
File details
Details for the file xoryaml-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 401.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fe59e31ce50af90d18aa07d8f597c81f4e3b1d346c36905a707b33f34d1d437
|
|
| MD5 |
202e2f07229eb6d0016cbafabdf14752
|
|
| BLAKE2b-256 |
f8a62f385abb6b2d23cd3bbe65b933e413e8eca6a26564bb7540b0522baa8410
|
File details
Details for the file xoryaml-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 385.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6716f6c586037fe5d292196f70979778e173a7cb8141e6b55708c259288bc91a
|
|
| MD5 |
5f722168441034be5deb0754aaa2f631
|
|
| BLAKE2b-256 |
31d868001c9c676997fb764bc7de75c7480f92da86adf22069189f8f21c407ac
|
File details
Details for the file xoryaml-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 418.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abfcc02939d91cd4e6dc793eec078ee7f19c4c8558939db6d5bcc9f54e1b7bbf
|
|
| MD5 |
b3e8608c6dec3e2f3aed43c4ecc55c6a
|
|
| BLAKE2b-256 |
570ad83ed519aa4aa7522cb14508fccff049dce99488171623e3996fb833f12e
|
File details
Details for the file xoryaml-0.2.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 244.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5c094d90007a67310abc7d9bb3a6c84efb9b34bf898515a289f950e390fffd6
|
|
| MD5 |
d9baee9020ef6fb4a34aaa3b1820f4ae
|
|
| BLAKE2b-256 |
b464357df3ffc0155be903768c3a367b424c9ae738eaef1dddd1576c52437cf7
|
File details
Details for the file xoryaml-0.2.0-cp39-cp39-win32.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp39-cp39-win32.whl
- Upload date:
- Size: 235.2 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bbf19e407d92ba1547110bcf3e4344dd2e31b71c6a1463c9122ecaa44098354
|
|
| MD5 |
17bee34078690844dabf1f632dff07f3
|
|
| BLAKE2b-256 |
1408b6ba8408e3ed23da7563a71a03cc608081f70c64c8f551c2c5353211a007
|
File details
Details for the file xoryaml-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 391.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3f9b72909e520f883dc0d329754160cdd35f663696972c58a48ee9459d9f584
|
|
| MD5 |
f186e4adb7029dc985327b3c0ea46256
|
|
| BLAKE2b-256 |
3af4166016bdcf96aec5868b56f6dfd0374d64f8fad5d85f032f466f058e94af
|
File details
Details for the file xoryaml-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 452.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0818599edb537daea67f75418c675ca6e702e82c27d208fdec7c9e41f4036d9
|
|
| MD5 |
846f3b34d4f265f1d08d0afbd646e250
|
|
| BLAKE2b-256 |
011796ef32a5f48590d1e7a7e7453861630fff3b1e16964470512557d3e57afd
|
File details
Details for the file xoryaml-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 443.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93be9b85ec47371ad7a39db9971afd2b5a9e5994a9182bc28c9247c48a6b3536
|
|
| MD5 |
754f76c940870fb62d34ccca33b5d322
|
|
| BLAKE2b-256 |
3074bd22cd01ae958efad36219c0ed5d8dce3c2070b6d79f74ed66128a66442e
|
File details
Details for the file xoryaml-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 402.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9bc268ff3d151fe9188d5b83db8b1a44ac878e0e5ab5875b21b6b34cd535612
|
|
| MD5 |
88cf523ebab6803c00a33bddab3d6e4c
|
|
| BLAKE2b-256 |
86b1c905a83cf4448ad7af2c5f13cfa9a71e54753f434daaf59cb873d52fa27e
|
File details
Details for the file xoryaml-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 385.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ad2fdeb2bcfbeca772b180c0e3dc4a4c4ed5dbcac82cf4eedef649aacf77e5a
|
|
| MD5 |
6583ed09fe1a25b17a8ebb990bebf36e
|
|
| BLAKE2b-256 |
37b90344446d860ba678b8fcc9aab4d761f91aac3ad14f658a87e55fedf405db
|
File details
Details for the file xoryaml-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: xoryaml-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 418.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b5cac1bbf673a752b5b0790b1fd1317382e9b25e34dbe177b4f4315461190e0
|
|
| MD5 |
e784dc21a5896369377f6019cbc65875
|
|
| BLAKE2b-256 |
f82d429b1d16c58cf4435902a2b9c9167215484f97ff0348efb544553f445cbb
|