Skip to main content

Fast serialization of dataclasses using Cython

Project description

What is Serpyco ?

Serpyco is a serialization library for Python 3.6+ dataclasses that works just by defining your dataclasses:

import dataclasses
import typing

import serpyco

@dataclasses.dataclass
class Example(object):
    name: str
    num: int
    tags: typing.List[str]


serializer = serpyco.Serializer(Example)

result = serializer.dump(Example(name="foo", num=2, tags=["hello", "world"]))
print(result)

{'name': 'foo', 'num': 2, 'tags': ['hello', 'world']}

Serpyco works by analysing the dataclass fields and can recognize many types : List, Set, Tuple, Optional, Union… You can also embed other dataclasses in a definition.

The main use-case for Serpyco is to serialize objects for an API, but it can be helpful whenever you need to transform objects to/from builtin Python types.

Features

  • Serialization and unserialization of dataclasses

  • Validation of input/output data

  • Very fast

  • Extensible through custom encoders

Installing

Serpyco is best installed via pip:

pip install serpyco

It has only 3 (4 with python 3.6 dataclasses backport) dependencies:

  • rapid-json: used for data validation and fast JSON dump/load

  • python-dateutil: used for serializing datetime objects

  • typing_inspect: used to inspect types as needed to create serializers

Documentation

Contributing

Serpyco is written using Python and Cython for parts needing speed.

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

serpyco-d7-1.3.16.tar.gz (42.9 kB view details)

Uploaded Source

Built Distributions

serpyco_d7-1.3.16-pp310-pypy310_pp73-win_amd64.whl (123.1 kB view details)

Uploaded PyPy Windows x86-64

serpyco_d7-1.3.16-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (163.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

serpyco_d7-1.3.16-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (160.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

serpyco_d7-1.3.16-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (163.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

serpyco_d7-1.3.16-pp310-pypy310_pp73-macosx_11_0_arm64.whl (134.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

serpyco_d7-1.3.16-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (137.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

serpyco_d7-1.3.16-pp39-pypy39_pp73-win_amd64.whl (122.9 kB view details)

Uploaded PyPy Windows x86-64

serpyco_d7-1.3.16-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (163.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

serpyco_d7-1.3.16-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (160.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

serpyco_d7-1.3.16-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (163.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

serpyco_d7-1.3.16-pp39-pypy39_pp73-macosx_11_0_arm64.whl (134.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

serpyco_d7-1.3.16-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (137.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

serpyco_d7-1.3.16-pp38-pypy38_pp73-win_amd64.whl (122.2 kB view details)

Uploaded PyPy Windows x86-64

serpyco_d7-1.3.16-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (162.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

serpyco_d7-1.3.16-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (159.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

serpyco_d7-1.3.16-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

serpyco_d7-1.3.16-pp38-pypy38_pp73-macosx_11_0_arm64.whl (133.5 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

serpyco_d7-1.3.16-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (136.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

serpyco_d7-1.3.16-pp37-pypy37_pp73-win_amd64.whl (122.3 kB view details)

Uploaded PyPy Windows x86-64

serpyco_d7-1.3.16-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (162.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

serpyco_d7-1.3.16-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (159.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

serpyco_d7-1.3.16-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (162.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

serpyco_d7-1.3.16-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (136.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

serpyco_d7-1.3.16-cp311-cp311-win_amd64.whl (139.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

serpyco_d7-1.3.16-cp311-cp311-win32.whl (124.8 kB view details)

Uploaded CPython 3.11 Windows x86

serpyco_d7-1.3.16-cp311-cp311-musllinux_1_1_x86_64.whl (973.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.16-cp311-cp311-musllinux_1_1_i686.whl (926.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

serpyco_d7-1.3.16-cp311-cp311-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

serpyco_d7-1.3.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (974.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

serpyco_d7-1.3.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (923.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

serpyco_d7-1.3.16-cp311-cp311-macosx_11_0_arm64.whl (174.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

serpyco_d7-1.3.16-cp311-cp311-macosx_10_9_x86_64.whl (182.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

serpyco_d7-1.3.16-cp310-cp310-win_amd64.whl (142.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

serpyco_d7-1.3.16-cp310-cp310-win32.whl (126.1 kB view details)

Uploaded CPython 3.10 Windows x86

serpyco_d7-1.3.16-cp310-cp310-musllinux_1_1_x86_64.whl (928.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.16-cp310-cp310-musllinux_1_1_i686.whl (887.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

serpyco_d7-1.3.16-cp310-cp310-musllinux_1_1_aarch64.whl (973.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

serpyco_d7-1.3.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (925.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (966.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

serpyco_d7-1.3.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (876.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

serpyco_d7-1.3.16-cp310-cp310-macosx_11_0_arm64.whl (177.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

serpyco_d7-1.3.16-cp310-cp310-macosx_10_9_x86_64.whl (187.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

serpyco_d7-1.3.16-cp39-cp39-win_amd64.whl (146.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

serpyco_d7-1.3.16-cp39-cp39-win32.whl (130.5 kB view details)

Uploaded CPython 3.9 Windows x86

serpyco_d7-1.3.16-cp39-cp39-musllinux_1_1_x86_64.whl (953.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.16-cp39-cp39-musllinux_1_1_i686.whl (919.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

serpyco_d7-1.3.16-cp39-cp39-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

serpyco_d7-1.3.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (952.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (996.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

serpyco_d7-1.3.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (908.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

serpyco_d7-1.3.16-cp39-cp39-macosx_11_0_arm64.whl (170.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

serpyco_d7-1.3.16-cp39-cp39-macosx_10_9_x86_64.whl (193.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

serpyco_d7-1.3.16-cp38-cp38-win_amd64.whl (146.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

serpyco_d7-1.3.16-cp38-cp38-win32.whl (130.8 kB view details)

Uploaded CPython 3.8 Windows x86

serpyco_d7-1.3.16-cp38-cp38-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.16-cp38-cp38-musllinux_1_1_i686.whl (981.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

serpyco_d7-1.3.16-cp38-cp38-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

serpyco_d7-1.3.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (963.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.16-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

serpyco_d7-1.3.16-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (919.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

serpyco_d7-1.3.16-cp38-cp38-macosx_11_0_arm64.whl (171.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

serpyco_d7-1.3.16-cp38-cp38-macosx_10_9_x86_64.whl (187.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

serpyco_d7-1.3.16-cp37-cp37m-win_amd64.whl (141.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

serpyco_d7-1.3.16-cp37-cp37m-win32.whl (127.2 kB view details)

Uploaded CPython 3.7m Windows x86

serpyco_d7-1.3.16-cp37-cp37m-musllinux_1_1_x86_64.whl (840.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.16-cp37-cp37m-musllinux_1_1_i686.whl (805.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

serpyco_d7-1.3.16-cp37-cp37m-musllinux_1_1_aarch64.whl (877.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

serpyco_d7-1.3.16-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (833.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.16-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (874.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

serpyco_d7-1.3.16-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (791.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

serpyco_d7-1.3.16-cp37-cp37m-macosx_10_9_x86_64.whl (182.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file serpyco-d7-1.3.16.tar.gz.

File metadata

  • Download URL: serpyco-d7-1.3.16.tar.gz
  • Upload date:
  • Size: 42.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for serpyco-d7-1.3.16.tar.gz
Algorithm Hash digest
SHA256 83e7a6a3281367f4861b9e49c852d457239efff0ef049d70fdac476611490887
MD5 537f29796eaa0b565f05ff5313dbc39d
BLAKE2b-256 7d16f1b662267eed18210af7d578672c75f0d581e5f91248ba6d638f1be116bd

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bbac036aeb128bf83436432637c2ed6677b2c0c222d6e7bf55e6956f63e03b27
MD5 5f07e1dd49404354fcc62bb9b6fa2677
BLAKE2b-256 f07854460f6499976c4d75864320bbb989040d76a23a3fe972fbe132e2a7c0f5

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b86f0a1d01ddd9c64e5609bd83e694f11ec9d9a204448ee9a09689bbe05614f
MD5 898bdc40d0f6e21c1d47ce02d4a319e9
BLAKE2b-256 6e131a4f1003dabce2da93ecdb054be9d24d5b58e6d02b0ef94db8989ec04889

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8a828e5851cea579aa69c99c70298956c18d6f0cc68d39380978787567d4f48
MD5 7aad37a0e5a74d2bd8af62dcdfe9c16f
BLAKE2b-256 90c1158bf9351b3b5cfb7b957304c52052da99aafb9b573019dc31fba4675ae7

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 271cb549916fbeec3b06038d3ec62fa00eb757aa7e82671ca0508cbbd088b24e
MD5 4fc7e28a58e819cfb319b8faeedf4af2
BLAKE2b-256 764387b82f345739774957c8dedb471f18bee08d8928a26caa02a179bc7f7e49

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3733550d675419f218c8e500e86d1c15074d939b03fe15362ac45b9349124b0a
MD5 cbf0c12c9adb77d8ab8fab547705f4a0
BLAKE2b-256 9d51c09f3ac41e23f2024e62c80cbe1ef38d292cb54ea5d3089589a726df8c30

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b32ef6dd88fa227b599ab812a78726442570977c86afcd96bd8542ad1f1792c7
MD5 b1f13ad174d1de43d28625df05c967df
BLAKE2b-256 bf4a913c461f48405c370024b455e9b75bd65d1672b3b55254bc44350baeb20a

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 afca8ee4d4915662d78e8d4ef277887bbe4b1741b4c7e663b396353c87e7cd22
MD5 fb424dc227de0a928c87a8e8ab0ba892
BLAKE2b-256 4f1346c7aec0b595bdb71a8a94f85b6a97002ce0da177055d2f2e9d8f85741f3

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aaac8535b964400c56c678acdef65b24f125817d133aa7d3fc27b39d23d164b1
MD5 87d4486d370ed52075654d6c56b586b7
BLAKE2b-256 4b2a2cb8792d2bbd3e55fd05f67b814a830f5568e962ec894581b1c3d3b3b424

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f124576e4c0c84eec3c974b730b779dd7f9d1138a2f0e2e40fa491c1e32ae41
MD5 85935a24204881138a4bc656eaafc3d1
BLAKE2b-256 5e73d8eebc987a00fcf917511e4a95993145e48b8f947fdc9bfb4fa3f5430ccd

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 344b52906c1754701fca18cfd1de025afd7f7b5bbc6bed9480aae61be4a15aa2
MD5 83454eb6084d506eef1e68fa0bc6dbeb
BLAKE2b-256 3345ac4de2fc64ecca73a54be450df6d4d8841a686cedd401052abf2728f9c2d

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60ef8615d6e390bdbca5ef8060f02a6c21c940528c4bcaba2939fa08f314f7bd
MD5 85be84105ce4c2a1dad30b340b1726ac
BLAKE2b-256 ae797668ef3136c61f285080c8207aad3e6ebaf99d97734c90382aba867da1be

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43d4dfe9d1a0405e0d90e95ccfab4af4df2705db62dc0d0fedd722b72f30cf84
MD5 7a55b5793cdd7c199619751cdf269190
BLAKE2b-256 6a2e592587a2444271678423e51e9f9946ec111425e22a55ef673c9050f77026

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0f2bbf6b1b85bfa89c727ee192ddab98604dd6de7cf004ff0d850a5a307cd9a7
MD5 99cbcf5d2972a912ca6da57b59214153
BLAKE2b-256 f5be3b09f7a10d47816b89b057c7ed41d7a67ccc7e8cad5d44a35006a32862d1

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cf93936c78b59942da4d5ccfcfbd5f132fda034ce69a12943172f6692820278
MD5 0d2f6264dad3e9223693cd9435ce91a5
BLAKE2b-256 8f9299f99860009cb774904554c5b731d32baa727491ed6b29004e7b730e735f

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5f946ff8d7fd7edf455decbd461c3722a4d73591822bdd27c7645fac70afe54
MD5 e26345b76313e99f98ae64a33f9496a0
BLAKE2b-256 3accd48416bb23bcdaf533cf2ffd551b3dbe91f77dc63fce2623580fbf54ea48

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1e8d9dbb7f315f69c0e3d995484bec954c9b42c9ca75c6fc2161dcb34e4d641
MD5 f0560a92906ad180e5d6343ac67863ac
BLAKE2b-256 d2b407f4f88d2b30d6dae56214f470075c0a33aa127d96c9109071f84c900dc5

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e426560f8cb04646bdf43a0a531172dcec9e106b89277c5290147624d9ba0aab
MD5 126dd3141a71e4302b67be87434fc30e
BLAKE2b-256 3634100c10f52af910955949f106617916938266df62f34aa6c25320f802f42e

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f6e26ddd27a816b46dce5b89c4e4d6738133374c7dd67925a5cfe3f5cdcb2ce
MD5 caebb5599708b9bbe8599c0564aa2f8d
BLAKE2b-256 73b387afa956f79fa250954c4b9083b11f11ec1c1b4f392896303a18f6282465

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7c8fdc19538a4b3c084627db6132212835ba8b8d6533e3a5da5a3aaa7736cf68
MD5 c28a8a267201228c1af47d39b636096b
BLAKE2b-256 f1fc003cf25d096b663d27a4ee7cb20704b2a162d5c3b7dacdbd2d2aa9794e2b

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b1c7a07f46d48caf31f871c503358a33b8caede9a26a7411340fd42d1c67bea
MD5 23f698d3faaefa7094e54daef68a8cba
BLAKE2b-256 863a6a22a1210aadf91a509b4cd7611aceb6f419636ddbd1b7693d2b0d010c18

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe729be642bd5c6b4b5046b9397600d65c110abc64183d04b9e33d8a4eeeca78
MD5 ecc3b87f4951e6c5099468f97f5b7be1
BLAKE2b-256 2b518e884a01956bd29cb0f744e8c6df8b457b50d7740d4cf34f4da4982134aa

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10319e4bc62126e4dfe855878ff92208057e72d2906593a4070de9265988cd49
MD5 f85bfa7714929afc383a7ac660e0da88
BLAKE2b-256 f0abf2a66e35d215c4fb37f0b3b8e907b99dd42f5c2a0670731594c9a41b21bc

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f7117885ce3f0be7fe5271793173aad9fcfcf97fde5352a40eea94266764cf5
MD5 691d5a945abd2d00db83739ea914ff7c
BLAKE2b-256 488f38b4eee701a9b6a9a3ea8cbacf6131a0865a91511a753e39559dbcab52f1

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c495adc75ef327601bd9abeb02652080346dc76f21468906c5d23966e09efac5
MD5 17b272773b5ab562ef41d50b08f2926d
BLAKE2b-256 30c66eb4fbfe5e844f6fbf8a07561fb45b8cad2186c8d934075be23cdd882d01

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-win32.whl.

File metadata

  • Download URL: serpyco_d7-1.3.16-cp311-cp311-win32.whl
  • Upload date:
  • Size: 124.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a1a1c1e71177c423353e88b39006916efc7e694fe7eaffdfec17973b8a08213a
MD5 4ff9d314e2dfd7716933dc1b2af97f4c
BLAKE2b-256 fa820ad057df19f40d1b61dfea5876dc161cf78b5b065c8b0ab71ed3d4571bc0

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bebc867a5c677bcb2d16765f014c21a8e81385c5b25cca5237a557bb5d49fb07
MD5 e8bbb75a435b5e46552e42b7d96d5a25
BLAKE2b-256 d92a3561402a186cfdfa0dde684ac14a59e942a093fc4600850ae5d2b62b8b86

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e8270bb87cc8670e137a93d11c5211dbe81fbb2e924cd2764554f40ea751d7ca
MD5 7ff2e49bf483cd0639b0da335da6e32e
BLAKE2b-256 fecb2f97bdabae87b52790e2aeb5fb8fc273d076ec124fa843c812c3abbd18ab

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 374a8c0f6a6a186fad94f196bb16a99bc93d8ec4cce099dd1499fdab8004e45e
MD5 f33ce0e13681e19f2847e4029387f494
BLAKE2b-256 74b6c074613cd01521503cbaf6764a5b17264dc12d4f0e01ab2fe9f0465c0959

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd6f56864a29ac87d90078e018eec37e5378ac1082e1ac53df482095a8cf39d8
MD5 69804b20033c7aacc0440e06e996df45
BLAKE2b-256 212e76b9ab861a83ff5bdd2b63fcbf2fc5fe28274dc4657c7ac6af4ff6552ba9

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f99db0e5f02f5293c952b319616128054b646995f5c86887fdd1bbf0ec4264a6
MD5 6e4bc9101fc61d22340f32f36c6f8c48
BLAKE2b-256 533f63cbb54ce7a63fec99003d011eb152b002a694cde68709b38a4a3ea7a4b6

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c9ab060ba5d101c7c45d254ff7962341ce1c2f7338f91e332c16ac6db2a3341
MD5 d776fff0478561e1acee941d8f1222fd
BLAKE2b-256 0409f066823f57648dd3e55252131433a392475f1b00abc6916552f479e93777

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df313005d2b061ce825deccd34520bf8e94d518f936ccd40896cb9587796c3a3
MD5 012e1286074f2bb7074ad4259270a456
BLAKE2b-256 f357db4aedfcf27a69b45f9e08472a920fd58f0d0810dca26ade51e26409f1d6

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b56610c971ca6b2c78e6aeb444d8d10926cafc844879e02bded1f57e7d95546e
MD5 5ee0c7145d84e4976db943c753d9c04f
BLAKE2b-256 67e687756c3620e08be8974f3c32898101a0bce340cf75970e664223a88456d1

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c0fd17e64e4001af7384acdcf7e70e91790f3827d59b719929f104491282bbe9
MD5 c2986a2dae045e67d468fc949f2853b6
BLAKE2b-256 45ad03c91bf3af675741c8f0844635f301ca1a1050ef181b6a7ed64f2e8dd646

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-win32.whl.

File metadata

  • Download URL: serpyco_d7-1.3.16-cp310-cp310-win32.whl
  • Upload date:
  • Size: 126.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 431db87e8f214ef7dcde8afda6fe437f37a3f65efc958aa14764d2161a141078
MD5 f8bdcaa2799958c32f77f2b96cd6f2bf
BLAKE2b-256 82399931a660740f7391d711580237befc482352810fda9d19e7ee5cc59d4d0a

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b225d27fcaf65f3854bcf929366b9501e6c2116480078c9805bb36dc71070057
MD5 2fab362a9fd5194536962c11e1c36629
BLAKE2b-256 2d877dc51474a0c21049e9f908f4e92b4f35eb6975a43bc642eeaa19fe15e632

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ce2306c461c8767f38a7d73ee68ee179fbef07e76aa9a6b5c0d777137b97cbcc
MD5 4339fb3ebf9ebaf04c2303aa9bb8ef5f
BLAKE2b-256 4e72a74ce9fc0d0d367f403cafb40bf3690839950dbf34362342a5fd74167015

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6ff87ca6945bed634a5cab0474db44893cdf9306b6f26297eeccc297e46edf17
MD5 05a32ed3cab11b82072085f568d347ad
BLAKE2b-256 6191bb6fd8125b405c55e748582ee5b3455b3fbd590427b94d66bf32fab14429

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9163e9ac6966d62214cbf6245ea0e036ba16f04b5e89e6b95ac8583f588c6470
MD5 0c81ea7d50f17053db6c00d3fe5cbdd2
BLAKE2b-256 093fd2220d47307a115283b1d1225622d27d51f84a6053c6660efe396978907f

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50b773f8878accef4d0c2081c0520652419a11e3b58f5e21edeb12b99e1142ab
MD5 e3b14595f31962b32e8151d6aaa68364
BLAKE2b-256 02ee0b52e94c1dc6e8755aca658b44b52e66300e4cad7aef988b629946e71ee3

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47172a5b930c7a11660ddefaca51a9e3b91794e4e4034e9f617022f0ab764aab
MD5 a0b51511890efce393c8717ce7e37e62
BLAKE2b-256 00a97c6661f18a79e9077a3eee06a99e31775240f8a617bf2a0a25a2eae8bb43

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da52b1665c5221182d7e86a48d2383f3e28f98c7cf8eb73230895730bed1bb63
MD5 6c0431614fba35318b10565bb98aa802
BLAKE2b-256 9127ace5da0baff00034667b4c7cde68b5f3acaeafa5956d40699773bb143abc

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bfc9a7d1762f20a21aafb269a8291a237faba98b2186c283806dacdd42b6ec3e
MD5 d7f01ae0f2c8a0628025776a7af3595e
BLAKE2b-256 8847927ba30b874aeb7c4773da20d8c2692241ec57ec859dcb8fced5f97c17c6

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1789ca11094a509f7278feb1381cdec8f92082080bfbd4afca074e0d3d840498
MD5 99984bd78e14a999b4daccd088a60a53
BLAKE2b-256 11f90d5e83a0133fbd028a355d51e2b4fb84ade8c2d5ec2a74d4270fdb8731d9

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-win32.whl.

File metadata

  • Download URL: serpyco_d7-1.3.16-cp39-cp39-win32.whl
  • Upload date:
  • Size: 130.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e4a45e03ad2830afce9698957fe8accae8c182757ad79af6a8251648f8c368cb
MD5 ea4cd38f81cf7e61671e12057db2d550
BLAKE2b-256 a687f29bbde54cb2b20a7f52796d4c1c21ba57b0d945e9756652be2f27c4cdbb

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41cf995ded632e05134d7868c7dcb519f7e4bc7e7cdf9f1f441b49ab5cd31207
MD5 28f70efa4856da0fd8eaddc8ffd660e1
BLAKE2b-256 23604b20c6d2b4fdf86d68c93b1e646314c97b5fe4538c2308151443bb1684ba

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2fdbe09671ee1bed27e3a3a9af0d85aebfeec8ca8d4892430c7740247aa77cba
MD5 b3dce0991950ded921cae29b0c21b1ac
BLAKE2b-256 1f8a9654f5a6f7c76f5cfc0e47ed29c99d7aba6d7e2f3c0f13e4ba48df249e26

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0eac44e490189c0d94999cdd42fb6b9a7b1b706e00429bca566d20cc8a13c106
MD5 4dd3fe7f15991632cb8061e035a78750
BLAKE2b-256 6fcbb94916f062cb6b6ac8751877b7c918045d430cb13b450d955afd684a910c

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15d19fdf09e5e094f20c1c32050a3c058b9a1bbbeb366346fd8acd91ade93d2c
MD5 2245f8b1c3f4c19804373e6cdff9de16
BLAKE2b-256 f9a06c4a9e078872767718389fe7caf0bf4bb0c541635280da2b3fa6e0f33d61

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9ea79e056b79f8e57514439b3d9997d65c780f052f01166a27a472eb05d1979
MD5 d0d5f176854b366e04f3c270bab493f1
BLAKE2b-256 316c3aafbe3dc1252fb407862b29cf89887a954938e789ebe613523d08e48b62

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d405b123655fb2429571baaa5a97a0f0043d3ddd301f1afdc371f97b6d72c89a
MD5 29be648145ac96dad56fd4bf85c92c82
BLAKE2b-256 8c59167721ecc82376bc1a7cfb849902894561861917316575eebb4663de40d1

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ebea20086a0d54c411ca3e6c73520e2429346eb101a7ec8dbfaa1fbac4a1131
MD5 1e0335cc89c68661399470ccb8fbfaca
BLAKE2b-256 b51522b6bb8046b62f111c478757487348b99a9db64bcf68c490534eb0bbd215

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56ff9439dbd437c132451f335dbe157d1c5cbfd2f8e517c4413416391fb80e22
MD5 86169e052b9c7aabd3a4aad22c987112
BLAKE2b-256 45e5f4b313cb33fcec79bb420e710acba9183972a34317c4ef9af0f8cb650e84

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2710069d683fb859dc033421eb1c8dfaca89ec55388f010b2e7f8fb1a4a85574
MD5 3f931b163b1e82cf4111aef684508df1
BLAKE2b-256 07b6367a15a9ae99f4592878bd3c960ef5f5808e5bbac29b9abc577985f1351e

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-win32.whl.

File metadata

  • Download URL: serpyco_d7-1.3.16-cp38-cp38-win32.whl
  • Upload date:
  • Size: 130.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 23eb198daf79b58aa7569834f70fdcef41a623a60fde3b361d9f27837c8f8427
MD5 a62b633c31ea1c3c6c7d89ab8a920ccb
BLAKE2b-256 ee8dd5f6278e8405cb6ca20ee332c1b3de92e670c48915b8767760fd65b37d6c

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 787f3357860696580603c9a3aa2fac8c9ee8481cfee23d14d57884bca03f36ae
MD5 a002789e6d79408fa40c7f333fbd5488
BLAKE2b-256 18ca35d94793c59ef8c64c8364501b5e6ccde8f6aa8c0d312e228a64783740b2

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 665e53ec2a3e97291d63a0fff1975946faa48d8680d7a704f715d60c902637f2
MD5 d3ae8a6f892045e6cccd920ce31f5311
BLAKE2b-256 d992f546ebf68ce51e45311f364866c5d89ce0f1e81dc8e85bebe8cb576e7d51

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 06716df3f900ac0a4904c0c2e6ebbdd1a296baeb3594b521ead22fb93aa773eb
MD5 bcf3918689e862717451291938076f4c
BLAKE2b-256 3b2fbc43647e52f6f0dd3afdbd991be538d012b75d6f046af389a26ef8e3230d

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5877ed39ae1a9881e4fafbd41b6986327065bf81b464bcc2e0e9302e795cb07e
MD5 85dff9c84232a3c8c1e9be440757b1df
BLAKE2b-256 b10d5cb21693b1a0b82d6867cf2a3103115015b612711702d2e80e995c46b2e6

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b57c90d741a296bcdb8117e03256197e1a64984de78337ec178e76b3d779d828
MD5 7a16019f67603d50ce27f1caa1b13c8f
BLAKE2b-256 6cf01a8775afc7be694bf65236e6c141764943ebeeb96b9ed09525c4c0973c38

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73a84a3ba3cd45c5226671555fe2853f32e89efd720d9be97a76241aabfcd6e2
MD5 03793e8bafcee1f424090d1a3fe515e0
BLAKE2b-256 72314d602c01dbb55b5e4ab98cda5e249574fa80ae3671a21305dc3c7201e4ff

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 358547ecaf0bc37ec35c045daf2534fef000ca7ac7126d4ec8aad9a9f303b4ed
MD5 bf9817f4c17fc68dd4d1b17b42aefb05
BLAKE2b-256 9b54a74d5a23014f9e40ccb862abd69b9ac4b9a46ead43d438e3ce49a6621019

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb0b3b7b0d7a66f16a7b32aa5cde67bbaec1bac6f9415dd43833e4ad41f42ddf
MD5 e90190ea973f556de74a9503cd68934d
BLAKE2b-256 e8bffbd67643103ab0975a79227f16ee7cf56c9d0d7295b19ab9346a78322433

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c743d6cbb9b946da28af03d4eb234a5343661bef00e1d5bbaccd0aafed81c5d1
MD5 938e7298f05ee22763b126c6716b17fe
BLAKE2b-256 1e585b550a86c353fd22de8efaea29bb306ee5970da76992ccbee73580ab3840

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp37-cp37m-win32.whl.

File metadata

  • Download URL: serpyco_d7-1.3.16-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 127.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.5

File hashes

Hashes for serpyco_d7-1.3.16-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 24241f0d0afc9ca5c6c30895f95522a8734e2c49be3a98a1ec3c2011cfb6fefa
MD5 b4bf66f97710c90e7ed2270a97645f7b
BLAKE2b-256 6bd870d5e7b461f48100edb324bda0fc12b6d1df0f54a86cb924d1197f1bf4ba

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3da9813d8d647a732e5b324f8c3f42ab78021e48bf2ed2e353ed0d7bfc69a9e8
MD5 3c2f59c6c87da231233efdad0fef374c
BLAKE2b-256 862d4237edeef3fefaf5eef4d65937b3d4d4c1b8884e34fc29cf50e41ed35c23

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 760617172e9a6d213c36e4e5000b182456929380ee74ea7e7ec60ac46ef2ee20
MD5 dac1fef0e94b7d3d18a7d3dd01740637
BLAKE2b-256 1da64a0ac6d23a7277669232bff307840f0b323fd44a96036a4f2d12f754ea8f

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 49fbcec28d79d968d877860e9fbe41e20ad00570fe8bf71bf29627e8aa5d2fb5
MD5 81eb59f63db45d0e615c4a55708e0fb2
BLAKE2b-256 6c42844e8e74a9ecd1b4a416b62641842f8e797961fd67c2e86653ffd2d2de58

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78ecb4f157fcf18796bb09eafa359614c5e48a32d6cd8f9938ccd382abbe9cdd
MD5 14bfb75f2595465c59b16c90973b7a9a
BLAKE2b-256 55eb2908a8ce723d1c0caa0d72acd53bbc3a73e9ffbb87c50e86b3ef7c49bb03

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edbd0c2e2345200464b13dbb0fb5cf7d413f793be2a4f8651e2f21fed0a6a628
MD5 927bbd5adb533ee8c6f1602d40e13879
BLAKE2b-256 8ab8184ec5f4dbc85b21cf5af0d46026ca3973f4c0df3788fbadc2337962abf5

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62fc40983538648896e70ce256af54008387c6e0b908d656ff73db326154c72e
MD5 125becb98d47f20cab65e1d92875125a
BLAKE2b-256 ff40e8501aa26c2512498b1dd35e20c6149587cf58a26b462686b5c52d2edb0a

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.16-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.16-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd96d78281b3bf54ac651301c880a7b9acbd25e2abc5101935a2e84e14e27f97
MD5 dcbd33604b19af6540d604a090524757
BLAKE2b-256 21a8c6ea79a0b46eff31e0b9fec80089c30342005ae0229682dac737142bfdbe

See more details on using hashes here.

Supported by

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