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.7.tar.gz (22.0 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.7-cp312-cp312-win_amd64.whl (224.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pyany_serde-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (542.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyany_serde-0.1.7-cp312-cp312-musllinux_1_2_i686.whl (567.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyany_serde-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl (632.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl (543.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (434.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (435.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (375.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (398.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pyany_serde-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (331.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyany_serde-0.1.7-cp311-cp311-win_amd64.whl (225.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pyany_serde-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (542.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyany_serde-0.1.7-cp311-cp311-musllinux_1_2_i686.whl (569.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyany_serde-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl (632.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl (544.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (432.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (435.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (375.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (397.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pyany_serde-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (333.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyany_serde-0.1.7-cp310-cp310-win_amd64.whl (224.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pyany_serde-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl (542.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyany_serde-0.1.7-cp310-cp310-musllinux_1_2_i686.whl (569.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pyany_serde-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl (632.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl (544.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (376.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (436.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (375.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (372.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (398.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pyany_serde-0.1.7-cp310-cp310-macosx_11_0_arm64.whl (333.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyany_serde-0.1.7-cp39-cp39-win_amd64.whl (224.9 kB view details)

Uploaded CPython 3.9Windows x86-64

pyany_serde-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl (544.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyany_serde-0.1.7-cp39-cp39-musllinux_1_2_i686.whl (569.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pyany_serde-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl (633.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl (546.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (377.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (434.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (436.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (375.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (372.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (399.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pyany_serde-0.1.7-cp39-cp39-macosx_11_0_arm64.whl (334.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyany_serde-0.1.7-cp38-cp38-win_amd64.whl (224.9 kB view details)

Uploaded CPython 3.8Windows x86-64

pyany_serde-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl (543.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyany_serde-0.1.7-cp38-cp38-musllinux_1_2_i686.whl (570.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pyany_serde-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl (632.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pyany_serde-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl (545.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (376.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (435.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (372.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyany_serde-0.1.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (398.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pyany_serde-0.1.7-cp38-cp38-macosx_11_0_arm64.whl (334.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyany_serde-0.1.7.tar.gz
Algorithm Hash digest
SHA256 630c9222131616c01d77f5aacee5583d7b98ef4d2fc5af57029a417b90c6508f
MD5 50ecdba0cb245f04da99de4e39bfffeb
BLAKE2b-256 ca366d81558f9a8ed85ece273df2fa48007a5cbf611debe40ab4584c886291f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 30674b186eacbbae447a11d8e94fec517ac893aedbfcbf2e3118375fb5aaccc7
MD5 97208a96dcbaf129a355667ece509ec0
BLAKE2b-256 269f1b59ca48e21f61d3f0722c05651516dc2d43c926e817ca193a1caa5af713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3cd4981e532b49ff28ff79b13a1aa94ec0d10b2b44a2673098ca26af8316327
MD5 1e21a0cf7406d11d3c034dc6f45be83d
BLAKE2b-256 57e2f1c44ee62c74e6f814d5f8813b14d9131f005c8c29fce4e1847db3f721f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1138b7d86688211c4cc0a18b736a6aeeddf8980b3d62138f69cb114dd0fc0c12
MD5 d9bc60f5703cfb90fbb5dab11194d38c
BLAKE2b-256 62cb9c2df4d8f0d7221719899f13142e47530b58d1471be3a7bb3fadc93f4071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed24e4b82d10919a00ba274a557b76edd75ccf16b26ce71fd0e98e4ae32405d2
MD5 84721ba6ff8e4b973a87c0ab06feb06a
BLAKE2b-256 131c8215d16bd2187793be5a41a15b13724414c7f0bcaccb7677379cc1cf90c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d4c420d4910ec654ca7a145c5bc3055b65550b1c70423e482d01403e1fd1186
MD5 c12b820c8fb9c9bbbe7a7168c658eede
BLAKE2b-256 4ffe7d9b1bef35f2adba8df5c1ddffbf02cf2ad6c9cf3698f7d193aa37b30ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9be29c4560bc47c6855ac2d900d6bd4f58a5956a52966ee39ad5bb8f13101314
MD5 12c46adbe8c717813ae1f201061c9ac4
BLAKE2b-256 f7988ab0f515969674f9ff0b82b782a48e25c74179a941d18e03f5cdfee9b2cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15a6e6254e5aeeb14796900243e2db440fded41b287af4484c83e8b754b7d194
MD5 95849434f1ccfda99bd8b07e23fc9ff6
BLAKE2b-256 82d532f9cac7e0acdd1a4c415d66f2e2257baab9a6ae9f72511043cd71e6a5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a4b4611664031bdf172ec1ea26e0cf56a690f9dafe016ece786a9fad7bb562e
MD5 bb3fcfa939951410b4da7c68523375f4
BLAKE2b-256 62a802ee6b041a9948ce11f15849c396aa400841c93f53880b2ec6936acef567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecebda10a093939b30d44082c62ef65500d818d1e7ed51cba8bdeb202d6e01ce
MD5 ccf357830cabc0e63e88b6420693d32e
BLAKE2b-256 0a03def68a8a9c47236ff597a3b7608f2407ab21a993741acc27bfdf81ff4f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf819cd999d837e9d79d05ffb4c4df87d7e904a4808cd178bf04b482c27b9139
MD5 9e255cc844ad6f57ea3291d8d0da63f0
BLAKE2b-256 afbbaf8dc3f0dc98188451c741a2566a2e14ee1b124ed85ff3f71b4811f2a0a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 23a29c8596d5cd4937473517cf49e681c2c622cf44249297e0bff4e4e9a47566
MD5 9f71a69be2e538e5b583b2681fee2065
BLAKE2b-256 d650114cf224c10574d723075b572f868015644d01ed215ad8bf0842e2ec18ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 910f9d7e6c1c4f0023bc73a2e25de5fb9d6a1b8e1f0ce0f1d6934e9ec464ec62
MD5 4c08339e51cb1e174071536eff58c27c
BLAKE2b-256 0db455dd131254950106561ec1d8d9e58d1e7863838e314bd35392724292a917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ede31a4e7d81cb559509bddda1a4c422f7fb18103d1d9d2371a5d50f7024e06
MD5 5ef02527d2d8944f42a451e4b785fa1a
BLAKE2b-256 c81232f5c5e416ca9a5d0385f184f03a722a7684f8ebee634a5f0b60d4d603f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 463af6371c0c4a26394c14e8940a8ab13c2423ff9eb017def35ee549ff6d2f17
MD5 b7fc2cf8aa264ff89a628c26a8830f13
BLAKE2b-256 eb36bd50770719707067f28a38941b6214af5a3273ffe8abbaec7129aeaad6fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff5d8cb5445c3b61d6a197522c73efd382332befcae70cf10ddba44ab32d7874
MD5 c3bd67b35cb64a9c8379594553bf3e7a
BLAKE2b-256 3182b2bd2a6f94c1bb26598dba87ea7578676f888dcd6dbef2d1fe575e909501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a29a892f7d7974ed11702266275fbc582d413a06415f94982d942df3b73ccc0
MD5 a57b8974947d3d75a5212f8df69682e8
BLAKE2b-256 3cb19ed07cbcba682ceeccb5c9308a631989801565e68b0caa78f0cb288f07b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7588390a2aebb36b8b537b6bf2785b53bce0cc07ee2333874d109f580e1ac503
MD5 5ee7c6f0b67585637240bee6438dfa42
BLAKE2b-256 72ffd8d62080da9fd881ab8e2b656db9476dc19f539845fdf32d2c7690b2c9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3119f6f3a27040794edb74417bf6e217f35b9768ee17860bf74c1b40da44997f
MD5 74ecdd96483767100ec08637bf8d8672
BLAKE2b-256 c55507b74b6a71c7d6b05b473258e9b3c8134427a00f8a0af7dbd2426a4fde62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f203d149ec748050e302931893b589033ab057cdd3565b4452c0aed8dc016c13
MD5 010116bdc74511efc9657ac2cfa75aa0
BLAKE2b-256 53e294acf6022d55cbe74bcb533aa95091ec054f7b1274f2ca75e2db79be86b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 412b5e7d39b46d7a1b28914af1b57b2c59052d226007e2fa9a017721eabe7ac5
MD5 48440aeba48440bb38dbc066f2632977
BLAKE2b-256 77f940741dfad103b401c289a9b382d4eff44923352f07ccfa177a5d3a46677b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c32806a77bdd63613776cd52490949b0e10ba9a4103b2792607ea50ca3a5a289
MD5 f533824d898fac409ed60b5dcaf6f903
BLAKE2b-256 fde848d37cb83fa3434ba9abf609f2aeb86062e8837c3e3f5e1c15f48279bfe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d55d9e1128c05f03b92c59bf2b900a3c963ac6e277562d82c99ffabe147749f7
MD5 fe06a74b3db069db07ab84cc02f35196
BLAKE2b-256 ac454f9020c988131ed6c6f8da53963c40e0a65d582d41ef5b4129751a8a5d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 93596deea743841241ae8ea4776722b72289ebe1ceb84ce56482fd241c860d23
MD5 2c5b6ec6022662d0225510df43179bba
BLAKE2b-256 c4e9150fadab76850350dc6d1baeebba42d20b03a8aa2f5cbff75696399191f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48247657bab0e3e4f3b5f64acbb10e4ace8f096a79414985674b5179d40e4004
MD5 6dd6af52351bd31142a975de28e27a88
BLAKE2b-256 7e180034492e0263fed22e55bf008aa0f6821320f13228a2744dc6efc83b9ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b4d47c0fc6f5f267ccbe2c546a5d98673479f39390d108d1e0d3d5d8afb0169c
MD5 54d4ca5be298b1ceb512791980ec82ca
BLAKE2b-256 98d4b3f37b2262612982577e69704129b83093e3817d3efcf8c68e0755d45aa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45a6df1937f51bc598c18b5969ce51a7d9e6b4ef031a675d8c23c767c9400006
MD5 63047942883d708cda4cba0c0f0ffd08
BLAKE2b-256 a6a52fcb8981a47060f4ab84518dad7235dbd8ac54130cf18604843e6061f9e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 caf2c9f91f8da32254cb080b158d83788bb632b619e1cfec5a57fee3589d618a
MD5 2d17ff6938b5b1c2cc2b2de3573cc067
BLAKE2b-256 d8138266750664c0cc9cbe222d9496c4e93cc4366aca18b773f7469d951c9e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e72714f8897f158e411b8564553840b48cc7099679ab290e4306c1da602c2f0
MD5 20637c86a8ed8b5e43c3cdce5097d0ad
BLAKE2b-256 86e18fc21a66e3a7c44be663a864f8331792d52fe897a3e706f4c0f2a28be4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45e772788b4ab5596db6516c520c5217f7a97654b60f51a8bef318ee6f5e31db
MD5 841791a3a717b83d7c9e4ae841b92e6a
BLAKE2b-256 dd2a8d86866f8c363e324c17fcbaff8de5f2e0f71f37a77772ebdb335d06c6dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a60c26e49aa9f86edd53c3c16b3adf47c8659ed720e4f4e5606cb3938805bd90
MD5 ab4007fbf82f4e028d62ccf6e14f95d9
BLAKE2b-256 fa0aa85a82ae299e3880d2eff9555d3ba1b753a88fc8c1889d6fb6f3b6bb3185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25ec7ff0259fce0abcafbc0db1ad177744cc70e69c9e42391c892ec406baf0d8
MD5 fa5b3f670d28f33e094aaf600c907574
BLAKE2b-256 e942808fd455967e16d0d6f133cbd295bfa13807a43f1eaa1a3a961abb16d60b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e5706f6e3a5b7cec97ca0d7f5a3f98507283a0bd5ed2e43253f6e84dbf9256d
MD5 933259b7a9dbaa0f572a1a55ad380b48
BLAKE2b-256 31f4df392a5a49b22ae1d4100d3ed53958f2edd58f8a9d1c53f4f168f8ab62f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b782f50b84cf1cffd9db52b180b8270ec6f83def20d3457fbd5451fa326350bd
MD5 8854402765b622c68de25853f682ce0a
BLAKE2b-256 2c3d34be03d9d0637b176ecdeb43f33d1ccdc89ced70c1552332ab8e1e71e566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85c29ef24f38b493bcd1936ad7abe05d9b0d570a9065f6261f6fdc8025f9d918
MD5 da2b12fb9ee8c5132955834c73b928bd
BLAKE2b-256 d8dcaf802fd16750dd1485fa84137acf8b778e498781747bc80932fa95fcc521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b38a6a59e78c00d070bf13698c668a3d720e590ccb41ff5daafd929d17344bd8
MD5 42b0a625a3de426efaeb69c60993179c
BLAKE2b-256 0022bce86f6cc250e80275b7685388f6eb32c6e43ef88de0366eb0f94545f732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e18983a40e8d2d5e625695793452f2e206557b47e040d882977b1a3b8698c5c
MD5 8aeab02e6c1d9c0d0fdb3f7c1a06b6c4
BLAKE2b-256 9669e9ce01293e5dad48c02986775581d46a008298fcd8e4e2ccccb9611ddc7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 91c35ac8c890fddcb89d7ab85bb5be1863129bf2c568a81432a63a37a0b61dcc
MD5 5033f4898029b176b71e71059b49ed93
BLAKE2b-256 8bfddc9b68962059297ec3f0ab4569129616d4cb581a1ff18fd70c52c397d7a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a541bb739a264e6b5637761c80184f9e9bd5d15a7d354356c6ad0ceda49b07cb
MD5 c0fa7d61eb5e0ca4337b5c62ada67819
BLAKE2b-256 7d5fc3c502aab3e6080c454706cec9e21c0e38ecc7c48f3a0a108720d86a3ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f80668801af14fa7182220ecc22e079909e974b313ad1b384721c9f8d390be0
MD5 5a2725e74e8e464741dcb4df9a32378d
BLAKE2b-256 588299797e2ad6a3c5eff0bad96cde69ef4c5d6dfe050ad5cced73ad33504998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1dc290daa40d0006bb93acb153ed52ab0811838270c7c79303a8c6dbffc9d92e
MD5 63e72afbe54b973af3aaee7a292aed3b
BLAKE2b-256 13f8c0813d98284b58d8531e608735dba0bd9cd200f70fc3278465b5f16274bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f532ccad222efde1a09e7e280e1713e6eff82ff3e6ccf8eb80d5717777b1061b
MD5 1087953e2f26d8dcc96f80914ff6680e
BLAKE2b-256 6e35cdaad7de05c65d27403ecfb32e7a4221a38183ff9c979325375df152cdeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02d623d15ddd35903238bdf39a5c2217be4d688341f217b6bbbf91cbe1b1af0e
MD5 8a07535f0143c440a88a5b8e20db45c7
BLAKE2b-256 e2bf2082965a3e1e094ada8f4cc351eea4ba269958802e8bb3d4b60530ec817f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ea0f47f69fa45797b51ccf28bccaf77ee06376e6c75b6711c214605ab7b18ba
MD5 f43eaac30775649a708b5871be38ee99
BLAKE2b-256 dd39a6827bd585cc9381488f466792d227a3e31050cd9f0af0580a91486d6dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd5f7e59c125d318722130bedaf34459714d77c5f5df8c8ec439be61c138f0f7
MD5 13b1a652b9b80540d2c40b069c09d7f6
BLAKE2b-256 ddfed1e68793c0d110566b3d25ebbdb45d1db5f0a5bd673369effe74ab1ec2d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7de8536ee653ca368c181a4561f225a521e91a265b9bb5e898341d9a5cb85c2b
MD5 d958170326969d22f6f0858c43e27712
BLAKE2b-256 74787256331752a5833296af3b6a48709ab0ca1ce9cf76879dddfd0f7b15dab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 059e6db8a6a54905aaffeb7712a73c7f3a6fbd8c12d5bfd1b4eb503bdf519cb2
MD5 5f4e79a426972d5c99244d2b76b86571
BLAKE2b-256 6c9d8581dfd6130c60280f58b9b08b9b0a9dff72a7c1d956e7eb4b9e43664f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 597ae735ab67fe3fd812909c57fbe6b661f95d636c4a3d623746a46bc0c20731
MD5 adf2a58ee8638725b8c77f5692b61bd6
BLAKE2b-256 f045eeccdc816937a36f9ef60cef36a74d9bb430d5aff8a2191c1d78437be92f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a6369b0ff015fa4e22f586c4e1efff12bc64edaad9b163549c4648d3ec8b69b
MD5 3dd9a4568b5b55cf6d0977f7748cebd0
BLAKE2b-256 eccb70162a0362e8fd57c16a425921a2befeb88ebe6a301a1fd96f60e9d2b119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bd940422d17450ea9a2b45469f4b789a74c1bad61d1857cd123cd87b8bfb664f
MD5 feeb386984ef77872b44e861d5645804
BLAKE2b-256 d1ec215e883635a4f480af4bb3b6a428a64fb14de6f006e2975d224791a2d3cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1550dafddd7056260b4bedd58d34c32a881d4ab179cbd6560afc10c5e0625a1b
MD5 2d89aa08ea8e1ebd31aa9d0eaaa8122b
BLAKE2b-256 5e5f16f26a27e34b0da32abc9e1847f3c93c62c5a69c32dba6d09f1fe445106a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd705a9eb5f2d9dffe7c1993e17416b33629da017bd352c8c60ede2559ffb0c2
MD5 430b56dff999f33ea9087d75b0da3d0e
BLAKE2b-256 79c8a076a36fd3196bfd578fbd2c131e7aaa83a11ecf8993756ff8116412739f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c7a98f70de366f68fcb4f93cd92bae44bb79250e4ef0919106eb38179872131
MD5 d59f38a35c6e96d51a7d975aba56c32f
BLAKE2b-256 1d3daf2d835c0084631ddbb995abf28613757be66ab8351c7c201a13104612b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d545825b355f886689a74d9bef67ba5c1e97ddc911d0de69c9086600d7e27960
MD5 af2861098e6d7d6e6b28a9b56c6e03cb
BLAKE2b-256 1cdfea38dbad5c15a2e5e52b91249cf8299bf35f321e5ff9dfdbd784881b9820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02f7d62c77bf8df2d9de1d47f76486a7c75c2ed0af5a4dcffa7cde477ba57b5a
MD5 7f09522070da3bfc1606f8cdf7bb6381
BLAKE2b-256 88f2bf16b4ab4c8f135ebb64e171d0c1efc7b5c98501bb8f10f7161f8ad58868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3eb10b29ab501624a8f89a3426982320a768f69555875b8bd4fa7968f0aebc58
MD5 79ed6069958af822dd7e6bb0ac5012bb
BLAKE2b-256 464b3fde6745f41c4636574e10e76e7f4573e040ac2a0609694eaae111ec3cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d73fd362bbec8658ff21122a23c3a8bbbfc29c6439698575722b12be5d85a535
MD5 9d3639925d226d70b360185ffcab2f88
BLAKE2b-256 e79dad5917f6cfa78ff17f8871bd264d0211b89cb9fbe20f8c93d7b7207fc65e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2a4f515dde9af5272a008540c9d409a240eebda2f89f32e158235d06ab1ae2b
MD5 1347c9c9f5ff6f59e539dcf996b080d7
BLAKE2b-256 6a63e026d61b4404b60d20214c3fb1855a432f23ea00c707a0ae3afeedd280b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b372dce92de5c92338ca3532c06824e4567a3d3aee18a11de86988da77391719
MD5 2ae24ccfefe57d034319d109af67cedf
BLAKE2b-256 5a5177d15d7ad0f615be10dac6e9b64c86dbd0dc131ebd68f70d9aa494155a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a856362e44c882daaed28179229b6d326472f5430edb4bfa5d21ccaa8fadef15
MD5 18d5347c634689fabb17e78b972fb925
BLAKE2b-256 8acc95ade2f09fd6a03bcec54361f642e2e73b861145f5f415d82752fc9d798a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyany_serde-0.1.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ed702e4cb01593e49b7db20473221c3b04c559afa58367395095e79d1572e12
MD5 9d618d5a6c4f53849ca0604a2f187ed3
BLAKE2b-256 c90936a67771107ee465c6357be7154a2ac6520e37a9c1cf8c967bde30eb3196

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