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.8.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.8-cp312-cp312-win_amd64.whl (225.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pyany_serde-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl (543.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyany_serde-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl (634.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl (545.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (377.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (424.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (438.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (378.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (373.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (400.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pyany_serde-0.1.8-cp312-cp312-macosx_11_0_arm64.whl (333.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyany_serde-0.1.8-cp311-cp311-win_amd64.whl (226.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pyany_serde-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl (545.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyany_serde-0.1.8-cp311-cp311-musllinux_1_2_i686.whl (572.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyany_serde-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl (634.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl (547.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyany_serde-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyany_serde-0.1.8-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.8-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.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.8-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.8-cp311-cp311-macosx_11_0_arm64.whl (338.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyany_serde-0.1.8-cp310-cp310-win_amd64.whl (225.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pyany_serde-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl (545.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyany_serde-0.1.8-cp310-cp310-musllinux_1_2_i686.whl (571.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl (547.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyany_serde-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyany_serde-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (437.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.8-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.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (401.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pyany_serde-0.1.8-cp310-cp310-macosx_11_0_arm64.whl (337.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyany_serde-0.1.8-cp39-cp39-win_amd64.whl (226.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pyany_serde-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl (547.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyany_serde-0.1.8-cp39-cp39-musllinux_1_2_i686.whl (572.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyany_serde-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl (635.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl (549.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (437.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (378.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (402.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pyany_serde-0.1.8-cp39-cp39-macosx_11_0_arm64.whl (338.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyany_serde-0.1.8-cp38-cp38-win_amd64.whl (226.0 kB view details)

Uploaded CPython 3.8Windows x86-64

pyany_serde-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl (546.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyany_serde-0.1.8-cp38-cp38-musllinux_1_2_i686.whl (572.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyany_serde-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl (634.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl (548.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (426.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (437.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (379.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (402.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pyany_serde-0.1.8-cp38-cp38-macosx_11_0_arm64.whl (338.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyany_serde-0.1.8.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.8.tar.gz
Algorithm Hash digest
SHA256 a1ce12a43136a307c8b1c8203e0696d706688414ac1f3fe58e6c51a6b94a2b50
MD5 35e4997e87e899b2ff9057f55b79a523
BLAKE2b-256 3ce1db5d1c9b2e6e219d13cba86033f21fcdf9e3d6c57deacdab03e9eb780ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b54604cbb7a9c22b67e1b734e389887a366e65ee70302897b689b63970db21d
MD5 77c68e59573a26dd752aa4b8366098f9
BLAKE2b-256 5e150b53ca6a1c6be77236674e03231c05fcbfdc71980cd06757232a1bd7f70d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2567f7093ab3b7a46969c428882aea2774be2a0aa098bb18970e5f2f09698a91
MD5 0a9599f499c8e23175103689160747ab
BLAKE2b-256 a511f564b19af36f98c52806bd27488d8daf221c0b962c65f49da43f10cf2efd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa8faddf3e21ec18f79b7eec42adc806d6981d29364ac2cc47a237ccd5f21579
MD5 c99e87d9b807af2a6014782184bb5c3f
BLAKE2b-256 a4ad3b31b43a3c4795968a40c5c8393a9a80be66d1678111cefc137922703a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4867dcf3fe466c972aa4ccd6a1e13a5fd62f168506e7ba75192285756c19b655
MD5 a7d92857e9d497ce1d4edd27e589bead
BLAKE2b-256 2c9d7e5454e2951e5e7c184b64845a95d2212d920a2dc91d0057a85a60a84cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c27ec3989470f39dba461b2207f58322f419bc30a87f759f39d594baab7eefdc
MD5 e526ed87ec9e39b2f500210480b01c7d
BLAKE2b-256 0070e9916ab7b5593851f312b367656c58df6466c45fcdec196702625181ce07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe715873510df6ca7db09b2d7655a2316082d6f4ad4f85297e772846536da06b
MD5 cba469ff3c67364f5c90a281a140d644
BLAKE2b-256 e8dade79e7ad6a63dc83e75f4b96547742a24129ef8d6f599db553bbb338cb73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae2b4bdd179d66630f6392b46ac77219555ef86dffd45b5a8097f9839f1ac1df
MD5 2c8d28ce90c63ca74ef44d60b2fc3cbe
BLAKE2b-256 1398eb653a1e22a742f63030b33978bcf05744631df6a16930ad2df244a7892a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cef04b30fa253481dfa5d2202b066ca072ab508a6b1e1e5b37fafe0394838226
MD5 8a80af9cc3a0fc710c6026eee6daba53
BLAKE2b-256 ccfc05c33f63f9cf3af9b9d5915128b390588f5df88414e2bfc0642a2b53847c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2abeeddc28e8873a44a5388fcb25318acaeb5f9be8f9537ac705e88c6543bc7
MD5 69f23203605ab863d33ba32ba88e7de3
BLAKE2b-256 9de2de30db44b5fe84dd83d021efc429876d180aa2a38bb05f073f0db1fd2113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6b24a0ee3499498977984e1ca87e80d3acb874c4bdf853a5fe61890831b12e5
MD5 41836a2a5de460ed5ec582d81efd2944
BLAKE2b-256 c9435eb1eaa4d7dd8ec8575aa1b067010a5323b86748ce76dd56292ba63a1cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 175390f2284f3105a7ed00b6a4138b0afc94fcd6d4395769ee2261c88faa806d
MD5 859dca70cd82b269af3824e56792a07a
BLAKE2b-256 e17fc9b309f18ce226acbab3d282de44061d57ffefefa278416ffc4d268a40a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d12e2f0e8e44df509e9a9354d676f3f6ac249173d97d8eba9679357a41dee82c
MD5 8046f3e6a6d7d3543f6ba1b6cf02e081
BLAKE2b-256 31a38b448eaf86004156a9e512a4bd9099560430407b6f6ed263119f1b1c1636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 722405162c4012c0d64a7e55c24922f1f4cf97b5820fef31c7005e9464c762fc
MD5 a511b592ca567ca502df26e8adc30bb8
BLAKE2b-256 e6193ce5d3254d20e9924108efd9eef4a364af34d2bb94a7c0ce40c3bc9a0e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 463dd5446f1d497e7eb1378ad5ffe2f2abfa045543c69e409ec30698aeda2532
MD5 61fcf7048ffe15883a2dc6a0a908c029
BLAKE2b-256 0ef63213ecd718faaeea3fa8b765058884af1ccdb10ab5db82e709ddd29eb90c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 319af12e08d3e3e115f67d960a4171c6300714792d1be523e5f9a8311a5aa98c
MD5 38f22d11c4dd47501eace6a7d43f0b57
BLAKE2b-256 6e32057e80d517f736698fbf1d561a7be9ad1234b4906ecbb17a27330fc5815d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ebf84e357b1f29fb90c2d0a0833fa8c72a0385d1ea4576a56cee27052ba235d
MD5 0ccde3f9a4cc15442423377e972fd77c
BLAKE2b-256 f44b69e9d4000bcea48e6ae0e50077d510e99b539bd578f653eab43354fc1c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2aff11a372b5bf4c229afabea76678d9119fc0741cfb89335b6fb006b7b20dc
MD5 7a6d888c5c27ad21a93963e3fb21bbaa
BLAKE2b-256 4fbd23b3c89cab2f47bfb8736f7478f4c088002bc80f241becd57713ce1088d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 171dd30220775871c34ba658e8aa9787c3f5aaa5768b6afd81605a10a2e74901
MD5 a64805a04fd77c9a38bbfcb97aea7606
BLAKE2b-256 fc184bf295f6d8f8bf2b004fe2344dece451125414960a648929613df4180b20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1b967c4d63c0770ed4749af958015e6f08f598d5ce786c3fe13aed4e0e1109a
MD5 608e9d15814899abb06970849336b4af
BLAKE2b-256 37c26bbb61d28f729d2cfceda937d08cdc1a2c8aa7c9e0464abe74cf78821c98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5efe2bc183c15ad9589e70d06d31be93ee5711a02cd23d1a4b5f4bb67f109a3
MD5 cc61c258d8c54dd9ce4c377aa892a749
BLAKE2b-256 a41cf50f4a744eb2035ea145b42213f279f3a6458d33d1e3a95edf2c7d7dd6d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85efd6201e7f20bc917df8341c274900ead66b93ddfb415687d4fc155be6ecd0
MD5 d95bd599761040499f4b9b7c5b77ca42
BLAKE2b-256 f730bb62710785867a94063899fed84b7cf1f9e55f7205b621ae559786a6ec03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ceb0e0c57516580d5d3f15d1565a6a870870eb3e432a1d03c2da0c58775a3227
MD5 c5d76a1bb84dd059f188c701d30c6f5c
BLAKE2b-256 568680b0be97f6750bce59efb8afa9d7996b27486bc2ab6b8932d67f161c967d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cf6b0c5ac84bde265113fb43c2524e5775a2842ecc8c1d8bb8e6da64448a14d
MD5 97ed314bd45ab1cc18939ba837e948a1
BLAKE2b-256 04ae012783f50962cc478d099773a4b0969d868633dd885e872ba17b1eaca75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db48ca88bc2b34998a04ece95d3c664b7930be229370463947a71c2e9a0ec2bb
MD5 f79a838f2007912e463464f9944218ee
BLAKE2b-256 7f5ad62b51ac14806bfe96be1d1fe8295ce74ebebb23397723254fe9176a7794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 80eaca4905a1923e9d3a14990fdb6e0a555bb766d707157c99676762adaa1d58
MD5 1bc0db6d782650f173fbe001e16f8f68
BLAKE2b-256 95107fc62623ecb7c5a1505e27a274da32a3d3191d25d24f1fbf44ea4471bdf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5d6be98a50adb24d529a6ce1ef6cf22970cf1d7e740a58928805c0eaec45dc8
MD5 f633c537dc3bd50b9a56b15ebd422d7d
BLAKE2b-256 485dc372e37ba8e27e8e465b191a01fadc59b18f602fec693f2ec6fc481b183b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ac29717c0844557e82936fb4f74b278763b0c1875d32db3f2c46e3f88a8ebdc
MD5 a4acd425bded1b23cfba7b8d90a484d3
BLAKE2b-256 94ea7cd329753debd4b90a841f779e5efe38f4095ab0506fe759ddb9bdc3fe81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68d012dd33fa69cd3a650c8d2f6e44aaaf86c2df21bd7bab499da6a0de61a3c0
MD5 4d985e9ce9b5e0bad88547e58f7dbb1b
BLAKE2b-256 18792686129a48098a3fbaef3da2c246012026344369f091e4cba26fbf959f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3037957d735f3c74e798b786bb2b4c1df78aaa6c26cd84b068f22ae8af49b1dc
MD5 6c1efdf7815f73c131e3dd8b2975b4e2
BLAKE2b-256 1d7f5c61662d809dc442356cc33d03969cbd4f0c255187c25f3beffe21ee3dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8dd3cae8338695163b89c6fd0c2b4b8c1de416ea40cade325762f55b4073027
MD5 f3c1f9a840649e1b8e3fc41e594c0d24
BLAKE2b-256 d6466eb384a7f8668d51472ae8315b2eb0abd1c18c81b6114631c22f9f57e409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d46e70317b9b61c4b3e7c67c6bdc76488d2e3568183f9b0c3bd22a261e61a904
MD5 95e4a87cbc4702d91a1fdecd874b1b82
BLAKE2b-256 e6499cc2cafd370aa1d6bd2b37dd4c4d556ae41c64b124de87106d4123dc2e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11b9b8cde198d63312b5f9b1ed61c13fdef94c8344750ca9021d4aaae3d44bf5
MD5 08266b5d827415120e5818b4f6eccdb0
BLAKE2b-256 78bdd5cac0998fcf5dca5e7283249d2372ac73e4529c1c4601bcf73aeefd0a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16a14312ac830f82a38a55c4df0942c52f1c99ebe6aded8570eecf86ee26662f
MD5 ecadc8e31a0c79d398f27e3dced50569
BLAKE2b-256 e267f5cd9778dc68c82ed18f56d4bc5bd2282fbbc984491597c9138cbd7c9850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cce909e802a664fa4427dc3e52c712261cd6b7c56fbb5e6aa81e6b31a329c93a
MD5 241a11558102f88969ca5e4aace1b7ac
BLAKE2b-256 40210ebd92ee6952f99e26f7f0d46eb3b5d68b0d22b16596012c70e267aecce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33ee03bbc7145487fbfbc90cbed1536aa00494189496c538592bfdeae8e2815b
MD5 08574ebdaba1ced527ec98e3042c90f8
BLAKE2b-256 37bc2468899040e89efc2ccc4982f82278973a17c06def0f81662844e2d917ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd0ade2f79e4b1b63a81218bf93eb19f684b03dc851f5baa88bb9b868a92f6c5
MD5 187ce963237ffd857cc68b76fb8b1638
BLAKE2b-256 e553a24bf6770c511b820c945cdd64575528c6e65e57486c09829adb5920b741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2db3a3372608b19c58e8b69bb9313eb54fc5c9a268b5a62af5eea4fe31427793
MD5 f9614af833922ab79689eb9cee4597dc
BLAKE2b-256 2498d32264399470bbfd8119e245cff12a5db2f3f3179980f0c257642750778c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad0f30d2538c7ec5251a2c20e249ffc8ed8c038452ff5924af579efccb136ac3
MD5 fdee99c13b4bf1a73964fb985639a1f8
BLAKE2b-256 04aa43a0043c88c76561bb5ff8e6f6dc8036d7ce718353df980121d18bd206da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cee92c31503abcc8ddc468f0cd3695841924051cd8e1d39d44ee810adce8589f
MD5 3a6de82dc7db7700587ead6cdc35cc24
BLAKE2b-256 7f4dbe475380bec6eb7472e64a7f1aaa15c7cb8e92b5fc8094de6b062e3bc68d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da346f0b3eed9e235b8a9f8d1c1a95f827bad4ca0147da2db0cc2096e0c78ff4
MD5 eff4c6f5dc016bd3fe4cbcca779ee238
BLAKE2b-256 67e83ed0ec0e1f9a304747f415dcc78bd588e5798504d6c61215c684aff1d48d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 421efc3112d483a85932bda04cb0c5548ad8830833800f27920e0aec0b7eee76
MD5 c954dd310b08d389716e9b00231789fd
BLAKE2b-256 69d12afdfa521bdc2812e3375f9ba262a752b4de553e98baf0d5a0dca182fe89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 144bbb080990ad57a9b99fd911758dca76a14abe8c91d45a24229b6efa0cf0bf
MD5 c6feed5722b0c5d689c6e2c20b75af35
BLAKE2b-256 8c5640e712ca111bdda05ee604b0c099145341561e9966a0b543bbc1aeb4707e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7bc972474290a28cd9ca60ca41b2873c6a60f72f9cfff869b6e439ef68b3808
MD5 80534068e1728e3d114f7ba4d4f46139
BLAKE2b-256 ad604c7b7fa17beccc3cdaa90a7a6e3594d8d32f4128188d61d56e55f1839403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f0f75f389ff2f94c6f7cbe07f1de246c0ff98ece075a20692de8c3e04b5cb5e
MD5 393756c9e638a2df79f25f68742479b5
BLAKE2b-256 fb0bea06dad076fb81fc65b785b629c9aadc114e8a8134871bc925478941c9a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 594f3bd584e5af74de6701b23ad0e79ade0198326e6a4a9008ba6a805ecdba04
MD5 c8e9f2b6062eafa31540997321635f14
BLAKE2b-256 bbae301607bdbee713dbf11344a343bfdbb40a21a36ebc9b6cebcc0cc04e9aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bf3df691c67eeeef135602a4fef0a1745213633d414242eb07a133e5de60881
MD5 ee432e7ae91269f12767d3be756c42aa
BLAKE2b-256 bb478ea40269dc67297229216ff745f103f23896e048fe6794f20f9b9fe3340f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53f6c1220f5b42e4f29402f830fbff369dcbbd39e655356e1dc6f2d1d89e299d
MD5 0174d61a3e35cb40fdbd01f71237f1d4
BLAKE2b-256 b4051f9d14de3dd268e40e311b08707a70ffd6a1147fd0b4c79dd71244f7d7eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14c354737e003ec5c3d1ed2cc5aad45b5649c468156c3f760d8b8e2e3d52cab3
MD5 eb38c824c922f603220844025c8cfe2b
BLAKE2b-256 c7e7ea5ff94fd64ba9cc13cf3094bdef045f70a8247ea6d5eb3821e9cadb6028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 256a43b04ae1b22e0f3f89608386055d93c644309adad509ea26b037a2eb473c
MD5 c49afe3950c5b8d7cb0835b81e0aeb4d
BLAKE2b-256 f2736f7a8d1f0616f0894ea22021ed506fa3c6dea5044e408564ba8c0568da4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6887c9f7cf367aaee811ce8998ca0e1695411f9d0a70efc1bac1c2c9a21e2693
MD5 189f9ed87ec7dddd01f54677a9796e58
BLAKE2b-256 4f8f2a7bc285a182a43a9161890eb6865cb7fea38edf609d2803c8cd5cee180d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70734cc1566ec87b6db511f9dd43bf40b439ede4c0d6ef8a24ddbfd95267ef94
MD5 f863477fe748fb6ec362a64fda3dea16
BLAKE2b-256 13bb0e6e256e54a6d55672838c810d9056ca0f234ca7239751587c56c1ef5d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40da72d332643b854deaaaffdd04ce9b65bf9373e0f5d20329a6e2a6cf2c23e8
MD5 ca17ae95714bc86dab82084a95981242
BLAKE2b-256 518c79290128ae4cff8142399ad08c82440e00d36aa81b7e1ee8142de835af38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ede5701b33247a9e00024d4e651376d12a92b7628bc9ee5e94bd1a926938486
MD5 7c8aeb6a02a722a9d1b8fb4a5ec27811
BLAKE2b-256 a7c17b80e1ce2f40986c7b017a642e7ffffbdce8af858b8f6c3735918ed3b26b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ba0b92aed401e397df8b992cc3223232eb2225f21f36674bdec947a52460b1b
MD5 f3d50b026f82d03e59cb595cecf05912
BLAKE2b-256 d1d71d5f0ea6487976deefbb62200e6c639282c5b1c8b10fffe10d2e2d69273a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6956e97e9bb9bbac74c73c08670ac19d80add6a2cd12aa3ee5659b3e936e88a1
MD5 df262eb3b91d9423c4f67c9792c085d4
BLAKE2b-256 2220581650c541b6fef6bec3cf8c2af8828399eaa9d4b201f062babe6df8d3f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8547feeb84349f9caa6d888707f4608cbb3747c085688c82c4df004bd16ba042
MD5 c3377bc9ddcd4615c583f1eb502f8f05
BLAKE2b-256 38ad16e75326846f8b9e46ecb427a0f44297c17aac9fb6bbea4b8513605c7040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20eaa2036093034aae9bdb96b1bc80ce3a61222a34f7dd21abf3845df80544d8
MD5 26ece54d12a97719145e339ae74fb9ac
BLAKE2b-256 c30841518e771eaf24f46427cbfcefa11b227a3cf89d45747e666755e19b456e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4a55c10e7c0c363a7c9ec448301180f72965a656d4d79a85841bd7f5894fbfd
MD5 a5afd25a5e686b6b2040ad2e13064f0d
BLAKE2b-256 22d8823753ec99d96e20fa89efa8314076de0c6af62f064ca24caa6dfab46395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5a01225f66fa23b517a6b7c74012459e0a894876e17fc1266ef0ef4bd2ee3792
MD5 9fe1cc09a7eeb8baca6caf1d347ea37b
BLAKE2b-256 4b497fa7c3eb99fbacd2b8ce3c6f18d33e4b7268e6369f6137a8ad908ed6c8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfaeb36c077a12639e27da53b9d256b23d9e761cd382c2939b9ee5e0b782c8bd
MD5 96e51557dd61c50d9f4ae9f606665b29
BLAKE2b-256 ebbf9681d8207e126fd4a12b297f5b0f36c0888ff5725640f1e310f65b86c412

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