Skip to main content

Serialization and deserialization for Python objects

Project description

A Rust crate which defines a trait for serializing and deserializing Python objects. Because this trait does not have the 'py lifetime specifier, trait objects can be stored in Python classes (see DynPyAnySerde). This allows for the different PyAnySerde implementations to be created and bound in the Python interpreter. There are a variety of implementations provided for standard Python objects, and there is a PythonSerde abstract Python class which can be implemented and turned into a Box for custom composition with other instances of Box (such as that for List) without needing to write any Rust code. The constructors for these are exposed via DynPyAnySerdeFactory.

The use case for this crate is demonstrated in rlgym-learn - the user writes Python code which instantiates a struct defining Rust serialization and deserialization strategies (the PyAnySerde trait object, held inside a DynPyAnySerde) for a given generic type. In Rust, these DynPyAnySerdes can be received as function parameters and used via the append_python and retrieve_python functions in the communication module. These functions are designed to work with each other and allow for the Box to be wrapped in an Option. In the case that the Option is None, the Box to be used is dynamically determined based on the object provided for serialization, and the information needed to reconstruct this Box when deserializing is passed in the buffer (except in some cases where the information needed for reconstruction is too complex, such as UnionSerde, PythonSerdeSerde, or some other struct implementing Box not defined in this crate). Some structs (like NumpyDynamicShapeSerde) implementing the PyAnySerde trait rely on alignment for deserialization, and so these append_python and retrieve_python functions must write directly to the buffer so that the alignment is known.

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

pyany_serde-0.1.9.tar.gz (23.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyany_serde-0.1.9-cp312-cp312-win_amd64.whl (225.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl (543.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_i686.whl (571.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl (634.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl (545.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (376.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (437.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (377.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (373.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (400.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pyany_serde-0.1.9-cp312-cp312-macosx_11_0_arm64.whl (334.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyany_serde-0.1.9-cp311-cp311-win_amd64.whl (226.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl (545.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_i686.whl (572.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl (634.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl (547.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (378.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (401.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pyany_serde-0.1.9-cp311-cp311-macosx_11_0_arm64.whl (337.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyany_serde-0.1.9-cp310-cp310-win_amd64.whl (225.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl (545.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_i686.whl (572.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl (634.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl (547.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (437.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (378.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (374.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (400.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pyany_serde-0.1.9-cp310-cp310-macosx_11_0_arm64.whl (337.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyany_serde-0.1.9-cp39-cp39-win_amd64.whl (226.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl (546.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_i686.whl (572.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl (635.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl (549.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (437.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (378.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (401.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pyany_serde-0.1.9-cp39-cp39-macosx_11_0_arm64.whl (338.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyany_serde-0.1.9-cp38-cp38-win_amd64.whl (226.3 kB view details)

Uploaded CPython 3.8Windows x86-64

pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl (546.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_i686.whl (572.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl (635.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl (548.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (437.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (379.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (401.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pyany_serde-0.1.9-cp38-cp38-macosx_11_0_arm64.whl (338.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file pyany_serde-0.1.9.tar.gz.

File metadata

  • Download URL: pyany_serde-0.1.9.tar.gz
  • Upload date:
  • Size: 23.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for pyany_serde-0.1.9.tar.gz
Algorithm Hash digest
SHA256 fdf6e1b8257185f0c6392ad4f1cb9f9efebe12dca4eb65255f9d4731cafe4da1
MD5 a81a61dbcf647f9808b4177e8db4ff32
BLAKE2b-256 11cf0c5dbcfdd8f7484672c4b6cf2b3785288ba886a6975e6db7fb576eee79a2

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a888c454ea7a31ba62caafe296ae4296e4dbcee3e2a06db54d543deced70c261
MD5 e8d1d53a68a7ede04f9340044ba8ba18
BLAKE2b-256 022da1cfb7f0765516b2a4075bb9db990344f3fd48a3ea0d66a502a6762b4c74

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1e845bbed083818248504dbabcdb7a080074f09861af7e5bd90b6a9d5db2561
MD5 d734d51279129ee2fa161c0359c5dbed
BLAKE2b-256 4f886a3e21d4f69e27a20a19081545e9bcdfa7f04cb15f963fb7e8602cfa8810

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 081d5aa2d04763df0b28ec00758253a6192d722f2f350c094f3561f936bdf5b1
MD5 2f7f84a6e09379a3f9447fc54af2f1c7
BLAKE2b-256 f0232e09b7201713fa3c203cc7e5094313478e117251dc9be956bf7936668496

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 356939038bc1e22c75e4d0ef3ba2af8c992e94cc5763dc3242710d65346b0aae
MD5 9cb10dbb0e31a2f2aaf14192bccebea4
BLAKE2b-256 b44538ddac83c725bea09f10ce455ae6121393b2ecc3938096dcd6379ab3be03

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bb7fa7c62c9dd444ad3129b185e3d087d4550cbf8b0028f4b2d0fe33e2aa616
MD5 93503493004c2e50eedf659a21ab48b0
BLAKE2b-256 445b654882b261ce52e00bc1c03263cb63846251b8e236df6068a4d10e4da343

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd34f3ee6ae8a77f6ce583b6d5b300e1deb69d0b87fc894faa3389ab1f3a723b
MD5 fed47c86a4dae88c93fc61569a818645
BLAKE2b-256 fb21acdd9f9eb1b95e8ef8454978a3534a696f779e5f263716f4d31673067d13

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0794f7c7c83f2ea804ac33a1af1df2522581d23616712b8e2ee4fbd3241c50ed
MD5 6a1364e59c0b54aecec5b45e78463252
BLAKE2b-256 3e2f6cd94244c759849cd6ad2e46875d6c4c04ee644b6b10fc25b5e34473a084

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8128d2f685f84a3f897e054359107ab042206b31cdae5b45c6ecc657d9edc563
MD5 27937c1b7f3a45bc5405676896943020
BLAKE2b-256 aee8f8313d0936af1b9fcf812d90a264c2fde445bd28e229f39706b028ee33cb

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 464a76d955841615030d9633d016e5caf47be4942084a8658cb7808a31304e89
MD5 c85fdc32320fd8465004e44b6bf56f64
BLAKE2b-256 77f142b0d80e53a016822761cc4edef0963554cc320f4cd6cf5e9bf506282cab

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f4c805380b98e520e5900ac32a2d4b7be869f4680e545802a3064e60adb25ad
MD5 e892f3309767917cc471873923555e06
BLAKE2b-256 e38297f4bbc4423b684835a8db1dd4511c602c41f228da4cc289e3a6ffa6629b

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56fe8d67830d7ffc7c9603b4e46546d5f0e13c143e0cc1ce865925a0a69d4118
MD5 b1fbd992634a16b16bfcf4bcce89779c
BLAKE2b-256 623055553c3454ce01d9f6db04f8543260b52df83e55aa0252002b29dcc25775

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9502f42c616eee6fd02c7836b4c4bde68dee9a338074ae7107aa4d7a142d4605
MD5 69d0b80643f56b68fe6a639537e66551
BLAKE2b-256 5b0d685ab6b0c423163aeb426896624a39a21304fd8a78fa1ab4c7d12f08c0ba

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cc4c8e3f56609e866e609c8ad78e4d240846a53a119aaf503f2bbf03c506f812
MD5 36c75f271c7867475ef53c7f2e0d68b0
BLAKE2b-256 6adc477df5698d40184c2182adcd265c74d85fa5006122a19880d1e7f699ea7c

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df9ab97cb12e7128ab2540dc9ba50360de884876373219f4525bf5ca454c16d1
MD5 f2a7916c1cc515a7c83f92531b3d41d4
BLAKE2b-256 9108bc48a1f11c6fa83cbd7adea3f6e49f2f1f456c27266d839cb2a962845ef6

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f14c5411c76993a65a3f480f2c4f5aa027b5ce212c0efb53c207fc00109630b
MD5 566df09d010fb549aaccb6eea5ea98e5
BLAKE2b-256 7107c55dbc45efc95d5df6bc1e04d9aa53e7710f34f1e6ae5b930c69ceb44daf

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ee7de2cc18c77a8e33a4a0f67016c9e4b97a1a27db9281a0e42f4144cebacd8
MD5 1ad8d85c08d11ddfb90c4846507867c5
BLAKE2b-256 372bbe64a969fd6a50205c028b187438a1b50df6807180d97036d9d7545d13aa

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa4836cd2453142dbca97d591fbd948a4439392b8de5aca9c4ccd1481436b2af
MD5 3ffb4ac3cde6eaf33d04f32be7d9a579
BLAKE2b-256 6b85acb0fef71e531251e2c7452d032b6ca8f9565d3bce231045f9ed164b5b41

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea4d896e45fa96134eb0d550ed8c7c530b8fe98e071ed907610ffa21fa478ded
MD5 fe22e77fa892d111656832be4984baac
BLAKE2b-256 c8085b6fc570f1b1c65ee2fb7e361b7886403737e2b4217cd5b0fbcc4a31dfa5

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10edf867051f2bdf4cb1a3e8dba8402d6f42da785b703e9eccd89ac314e3e810
MD5 0e3f37b4e9d5ea7e29679306a98f69ec
BLAKE2b-256 5fbaf56e699ba890743b10af3bb565db2fd05f1436569f1cec22c8f5ecbaf262

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79d2622dfc2e6c2b79e1398d338a6600e99459081da1c66626194778fb71dd24
MD5 e0e3b22107bd2620ef0b63678e8a5f7d
BLAKE2b-256 c0d0a4ca0f437d48679a574ccf233d4918a7f71688980e264f6923cb1daa793a

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95ed49bc8460891cec521627378bc2bc67c9099680fb066466491d4850cac577
MD5 b6e05ea0fa0aca6ab49390a2d72b5b82
BLAKE2b-256 e2b0653ae8950192d2e78e90b8153110e93d074984a3d487352720a60ca46906

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc0ac6b6f401fc3909e764050cc9a0a51eb15513714e172d91f06fdec855964f
MD5 f275df586f9ca3f610362e74a3269aa9
BLAKE2b-256 ca1128bdcd3f5e706c402a5236450fa16f41c2000ed5c6dd0f83512cd011c05b

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ba5b91b8e0c10a77f9bba1f2df86fd3e22dd2e18c56cc32fa22653472c8ea28c
MD5 7820c102f17a244960643584c403048a
BLAKE2b-256 01c6b48550a67ea86789c1466c59878370e654a33bd5da3f0002b04e7e3b3e30

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c7ebbffe4ba993dbe9a0822598d0d28f26cb4e6f49025b318ea6d0868331827
MD5 48d50389d9f85bd0c59db3e8415c4b95
BLAKE2b-256 e414faa67479c35a4ee599d43d466ceaa3ffdc3d0910c59b0eec4d568ed944d8

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63f387bb00f4c0bdd19e5842d912e6a6f043b8377a6b909604aaf9fec9adf3bf
MD5 cc14d5324cecbbf10232ab0f46b52cc5
BLAKE2b-256 034f6079240e485aa27bea94cc2a8427684e37c464278cbda08f246607a7c6a5

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6a25414ff8391df8f134a3aeb42dac5f200c589dea86b8238276ba2255c0eec
MD5 d0b9aed574fc68f492e9e4a482bed36b
BLAKE2b-256 c34e4401c2d61de35c14446b54cf674f89aab1b9d36b376b29bc3adf9cbe17ac

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e2c737c2661f405b330e66ac7556fbcfe94b3908c59f446147ca8669a8b01ff
MD5 7515c825ad46d4d330f992666752ebc2
BLAKE2b-256 abd87d8b52c3f1adc0702742982c8218a6a15650e2b2917cbead5383672598fa

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd0999e831b96121cc99f72a2ddefdafb6bfc8e102362e152c913b0d6d28b407
MD5 9f481c9f7459bc825f34bb308b0f998e
BLAKE2b-256 5ce3c0646fddba4f7ccb2cb8ce232dd215148b9819760111d45963cc0bfca2d3

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc5225162bb1940b6b22b16e5a9de5c59c5c32e9ca614fa914d2ae2b894666a9
MD5 e8c8e7b646517d1f88e814ed952b77b6
BLAKE2b-256 7bff05db52f146213037e1f8b9ee1317fb5b6a84b0cd694692761f5a550378e7

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 307d6093ba2cc897507392ede3d6feace1101915cc512df3465d22e1797aecb0
MD5 3b40a76db487db2d4f566cb0bcfbf69f
BLAKE2b-256 e5669e13e83c0cc3bc924c35cf79f7ac6d77c08009ee89a3e181d6d0d94d50a7

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09f15cc796441a028e15faa4fc19934aec546afdfd411b2eea8598ae1c2e687e
MD5 7ee49555d612100b836782f997ad5fd2
BLAKE2b-256 d1f0ee68049523d3612dcf5d4c2e166f46ca9c4774b33b7dab019dc15f17ffb0

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c68ee3045b1a97ecfb487c0e02216efea2dc408eea191148b9fab3e87616bb63
MD5 e15cb290b40a1b76630092733475a155
BLAKE2b-256 7861a6637887b353959afae39286f716bb65276b512bfed65d17b7656f444d53

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0ff05396825eb972e331f97e366376686159d38b5a4196e9aa0d0878f1b840f
MD5 4db7dd168b0c992dc7948b908a7dda80
BLAKE2b-256 7b043099f2237a9d284072c0ed71b87dda2cae7e2b4402b7aa9d7ba547e7571d

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7520e49c9432557e6022e48f4915e25da2464868d96d49110961dc49d00ccff
MD5 e1e613fd7a5d1bba2a427ec7e187340f
BLAKE2b-256 35e67f9f4e8d8d6c10a3a4f03ab29e139b8e0d1c122427a87e38e057c1c5230c

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 296c03b63351e7cffbd38b7b05c08d7c4ba9d184abe00273f00a11a53022ae63
MD5 fbe00b57a9617bef87d473d0520ce478
BLAKE2b-256 a5a58a4cea4cd86e445a252543f5f4a437657c368511286772c4a220caf2f6fd

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6beffd3676d54a4eeb89ef5d150bf951f63e21171bb5f2a2d4a03c8e9cd290b
MD5 231109923602612149c47fbf84bfd968
BLAKE2b-256 ff4103e4c50a16204aaad379f522a791da69ab87aa55ac04edac207d85382236

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7ecd0d6219f514805d82b73c901349fa3fd33aec65acd9c35611596174cf3c91
MD5 0fbfc10b3d2a8ef2cca14ba1b30cd694
BLAKE2b-256 062a1e553cb27e59850770cf9070b51d20410d04b76d59c77d0be465d7f03967

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1700dc96e351f251f4aec6932c24173d183b728c3bad4b55967b6bd73113269
MD5 d0eb795d1fef701932ca5993d29770c0
BLAKE2b-256 31f6d53cb6f1849ce0ef2d5f67d5409de00236e999147a8acdb20242f05833aa

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 398129e164146e03ef10d72351ca2d6a1f7ae1d85b10fa7077439bac535fbdca
MD5 6199bbb67c762c120d2414e40d1a62fc
BLAKE2b-256 9d2ffabf2be7c7d757a40bd65f40ea1f608642bbb0c46d8726de09af1ad3bc68

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f40c21abb358ca756c8dcd9d96ab39e0a345913890fb467c5feebecfd1f16ea
MD5 00e830294deacc69917cf650974d86ed
BLAKE2b-256 c1a50ef1f83e994522ca8544d4b12bbdc852bec1456022e5a1d79e9076388318

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a242b317bf0f0d7871e458348ec71e80a71befcc888fe9c287bce2071daf3787
MD5 a8bc2587859026cf7d2419d598b40947
BLAKE2b-256 040ad9198f01955723af7b48b55986dcd25043b2d41405e0463c200d867e870e

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb783606609e6976d7190b5ca1c1b4132408be620e08171e506cc289a45cce1f
MD5 b4b0a25f6683ae545d3415306f1952c2
BLAKE2b-256 d3ae626ca853e607eb236ec9a13874a051e4332c5de5b5570d9d5a9a0a724a68

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dde243bbe850dc574a9982dd92d7fdec27267ea8bd9037d90a34ab77c24b2e89
MD5 479b052be106cfa5b9bf191b4e2d6136
BLAKE2b-256 041216654afb573485cfbb63927b9d5c10e2462870c2035bcc1cda6ad5340454

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d36f8a020a1dcb88677f66b128486a3f7595d648ead2eff87c5824f7fe7cefa
MD5 2237c4576d755e483cf864d6b1472bd0
BLAKE2b-256 b4b9157000b2ac60c9595a16e8f9cc926aad7961f7dfc011702621daa68fbb08

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb119ecb444b309de84ada9d917320417602f48efd9c4babd0228c677313ab8d
MD5 c8f03a61e44a51a93abaf22a6b542ee4
BLAKE2b-256 4c10e74e6461872067bf5a54eb0501d35a14bd4b6296b4c725e167bc1f60892b

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 995ef6301da215a96e15f186914b0c91bfd510f1421a553d707c19b4e638e46b
MD5 7eb4b6b530fef79173dcd5bf5fcd2a72
BLAKE2b-256 70d717c3538ab6b1e68c5061573ac251f295a6cccf895e35f79d645fe424d481

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d2c725fc5339fc76d9d97b3a2ccef3dd293d8400f8d03cb4714c01c67e267e8
MD5 c4d5d021a31d302ea3cb348441760fa1
BLAKE2b-256 4ce1e92e267bdbc42007b384d7719807babe0255330f2322f815386c2e33e1c8

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c592557a51ade1750e7b0090cbd6b98fd8f92e148179f199dc5d3fa9cbc87853
MD5 65592bbe555cfa1c6bd691ca5e22a0e6
BLAKE2b-256 55ae4cd718e5f29daf87fc59cd5e54ba6b8ab3a0cff7504a6ac77060692eabb9

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b9883a5cbdc2ccce105e29f105d346698e349beb40e649e7a29fc34b7a0cb373
MD5 116cff5f70d8d7c02778f94b8fd3fd23
BLAKE2b-256 b6d848592b0c354bed58be5154f35d3bb49f38b3b002dee0b2813459a3b47cfa

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a47c08d206949ab513bb217c157763e7bed6c760a33139e1d0b9fcd6bc84561f
MD5 8eaf0ac25bdd31956b92d90ff886c301
BLAKE2b-256 877b153a87b5274c57bb818344743d386c77ab08d243ec1c13765538efe0e24c

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87affa935735b005c4420b8ec65cb3024966287603d42ba047a0bbdb5df07373
MD5 c80cf0240e23e0aef6ab7665bedf58cd
BLAKE2b-256 55f2d1f1857c15297c48ab7b064b2f01d097aeb742ab5a6665504a1f5a8050a7

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e41e858816d660e079fe7788f073d1775fe14e29a88799d1b13e49cd0ed7918
MD5 db3698870d5ee3b7bf5122eefe98d297
BLAKE2b-256 fc1b8df389f6145fd381b89c5782c403d133fba30631278874e708dd285bc20d

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 734e0e80eab62bcc25b98c2fe245338dc6f475e662decf3a9ca9cb0aad961d8e
MD5 a3a26f3e7137d91af3d0a0211afb9a98
BLAKE2b-256 305179a3e4e3c920a8fd4ba941802b5c832fb2936cb936ecb8e9a1c0ec4f5c60

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53b2c3091c11a9b05410ee9a06dfd1ad7af2a351cb65d07628b99a612d7c92ad
MD5 e8249981f05f55fcf7c8008f3e358395
BLAKE2b-256 e8f06a2d2084293f01955b320d79ca63f142e6cd2abe05b23acd5b4e5707ec83

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46522466e40480ca59a944b1dd0f44e25982620cad3741a3fe2be580dc0a869e
MD5 2016571ff316738f393b641457fd8950
BLAKE2b-256 cde4fb2ecf4820a835e314e0a099e2b89b06188c5834a2588e1fdf8a4afe0085

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a7965d5e9a390e6a8e7a7082d12f7120474dc751ec41b2bbd05c61826886756
MD5 0353104135ac42d6a64a81fe987a5bae
BLAKE2b-256 bc1a711fdeda29bdcd08253200a99c141f41057916bb7eed442584bf46ffe9e2

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff50d24f5e7826c033955a2e7f9d4e82c43f56699cf654a1dcafa24d97b39044
MD5 77fb9630f145d078fcc715f0105af2fc
BLAKE2b-256 ac60f87f1bbf7bb112e344dbe444cab696f165d4234f17c53bb1dabb331dd774

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d74cf9ce3815538315ec331cefc1ceb15973cdad4d050942e4d92ecff6d310f7
MD5 93887207c400517be01745a515e8945e
BLAKE2b-256 a6a2892c91b4722c8d307dd73700833712ec2dd9e8c80caed48e350f37210ac9

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0be0fed2183aedeb00a01c9c48efdad40decc0f1ebdc9a4a5047aaa9bfbb5c4
MD5 4b1187247ca59c5942ca10400d6fd81e
BLAKE2b-256 5b1bd1d3cd0366164c0a5fd9be42c90164a52a0faf807d75e9e9e820c5461bc2

See more details on using hashes here.

File details

Details for the file pyany_serde-0.1.9-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyany_serde-0.1.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86297c516e347e99158e1d93c4b7202f4a6188ab1c46a41fd0cac7eaf67340ec
MD5 a3da2dbbf366a0b548d4d45f4922fb4f
BLAKE2b-256 84f9ac4696bc54ecc35ad988d8f9d4a7132d5b663d42da2f79f98c2d807509ed

See more details on using hashes here.

Supported by

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