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.13.tar.gz (289.3 kB view details)

Uploaded Source

Built Distributions

serpyco_d7-1.3.13-pp310-pypy310_pp73-win_amd64.whl (411.7 kB view details)

Uploaded PyPy Windows x86-64

serpyco_d7-1.3.13-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.7 kB view details)

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

serpyco_d7-1.3.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (450.7 kB view details)

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

serpyco_d7-1.3.13-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (429.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

serpyco_d7-1.3.13-pp39-pypy39_pp73-win_amd64.whl (411.6 kB view details)

Uploaded PyPy Windows x86-64

serpyco_d7-1.3.13-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.6 kB view details)

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

serpyco_d7-1.3.13-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (450.5 kB view details)

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

serpyco_d7-1.3.13-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (429.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

serpyco_d7-1.3.13-pp38-pypy38_pp73-win_amd64.whl (410.9 kB view details)

Uploaded PyPy Windows x86-64

serpyco_d7-1.3.13-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (447.6 kB view details)

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

serpyco_d7-1.3.13-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (450.1 kB view details)

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

serpyco_d7-1.3.13-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (427.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

serpyco_d7-1.3.13-pp37-pypy37_pp73-win_amd64.whl (410.9 kB view details)

Uploaded PyPy Windows x86-64

serpyco_d7-1.3.13-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (447.5 kB view details)

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

serpyco_d7-1.3.13-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (450.1 kB view details)

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

serpyco_d7-1.3.13-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (426.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

serpyco_d7-1.3.13-cp312-cp312-win_amd64.whl (427.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

serpyco_d7-1.3.13-cp312-cp312-win32.whl (405.2 kB view details)

Uploaded CPython 3.12 Windows x86

serpyco_d7-1.3.13-cp312-cp312-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.13-cp312-cp312-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

serpyco_d7-1.3.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

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

serpyco_d7-1.3.13-cp312-cp312-macosx_10_9_x86_64.whl (463.9 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

serpyco_d7-1.3.13-cp311-cp311-win_amd64.whl (429.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

serpyco_d7-1.3.13-cp311-cp311-win32.whl (405.8 kB view details)

Uploaded CPython 3.11 Windows x86

serpyco_d7-1.3.13-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.13-cp311-cp311-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

serpyco_d7-1.3.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

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

serpyco_d7-1.3.13-cp311-cp311-macosx_10_9_x86_64.whl (469.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

serpyco_d7-1.3.13-cp310-cp310-win_amd64.whl (429.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

serpyco_d7-1.3.13-cp310-cp310-win32.whl (406.2 kB view details)

Uploaded CPython 3.10 Windows x86

serpyco_d7-1.3.13-cp310-cp310-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.13-cp310-cp310-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

serpyco_d7-1.3.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

serpyco_d7-1.3.13-cp310-cp310-macosx_10_9_x86_64.whl (468.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

serpyco_d7-1.3.13-cp39-cp39-win_amd64.whl (429.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

serpyco_d7-1.3.13-cp39-cp39-win32.whl (406.9 kB view details)

Uploaded CPython 3.9 Windows x86

serpyco_d7-1.3.13-cp39-cp39-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.13-cp39-cp39-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

serpyco_d7-1.3.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

serpyco_d7-1.3.13-cp39-cp39-macosx_10_9_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

serpyco_d7-1.3.13-cp38-cp38-win_amd64.whl (431.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

serpyco_d7-1.3.13-cp38-cp38-win32.whl (407.8 kB view details)

Uploaded CPython 3.8 Windows x86

serpyco_d7-1.3.13-cp38-cp38-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

serpyco_d7-1.3.13-cp38-cp38-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

serpyco_d7-1.3.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

serpyco_d7-1.3.13-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

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

serpyco_d7-1.3.13-cp38-cp38-macosx_10_9_x86_64.whl (468.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

serpyco_d7-1.3.13-cp37-cp37m-win_amd64.whl (425.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

serpyco_d7-1.3.13-cp37-cp37m-win32.whl (405.0 kB view details)

Uploaded CPython 3.7m Windows x86

serpyco_d7-1.3.13-cp37-cp37m-musllinux_1_1_x86_64.whl (1.2 MB view details)

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

serpyco_d7-1.3.13-cp37-cp37m-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

serpyco_d7-1.3.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

serpyco_d7-1.3.13-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

serpyco_d7-1.3.13-cp37-cp37m-macosx_10_9_x86_64.whl (461.2 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: serpyco-d7-1.3.13.tar.gz
  • Upload date:
  • Size: 289.3 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.13.tar.gz
Algorithm Hash digest
SHA256 cb1f1efef98303fa14de46db4a620477e291bb15c60dc3e95a2256fead548857
MD5 da8aec0359b8508dd563e8e130ee419d
BLAKE2b-256 a1450541e9ab46a9a769c11d75a1a566880df6d133fc7c7469312b41c0afe523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 08612a11f7c5baa2297006853d55889d52ef04159fd00d1df293da18852aa17d
MD5 f5dbd135d7bfa0cb4d2ec5e12cad595c
BLAKE2b-256 9ca012c45813e137b260ece52cf20331cc4a4cc33f0dbdc4dc810b6d490a4a31

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb5a4b6c428edae8fa4e1a6f076cf8bf6e5f35452b3a37f5f8878440840bc073
MD5 0eaa74922d4a4cdbd4b34addffd4448f
BLAKE2b-256 b2e79ee390072f5ae28f63b94ee7af3295a6ff5256e6087a5c68e93802d41916

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6491bdff7d313ef4ac9ed23279d69274e42247361ebee783212898c3cd1083d
MD5 01545ee69aa191680897f0d1431e03d4
BLAKE2b-256 67fb635da4454ec3ba28be4026a63c2af9b23434e9193d992a626a0de971bb8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ffad0e4e3dad1fcb0c8e6f98e00aa7231953304c47729418efb11997c4c0160d
MD5 e5cc3a98f814153d2e0d7e1ffd3cbf8d
BLAKE2b-256 3d361bfe5bde66d25d06f7fa115e99e39281e4ec94909f620fa4bc40c5bda769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bd220665199188fcf60deaa9f6b33a027e17cea5e8bcd78c6232a84ea5d5ea1e
MD5 6624867a52a0d3a2ce85714ba8c2a532
BLAKE2b-256 bb157a02f0b76e5f242a567e5f72cda3b7a785cc21b64fdca9c107d769141d27

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1253985b46b704ab3622a32592cdeb4fb1c57d5ed8e2b4bb126a48217a905e9a
MD5 4dc6bbb0d9f36bba9c3e0428f79f14c4
BLAKE2b-256 5ef6a80562a82b70f48bf81d18612992d4886681eb96869113d4182c736661d4

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7cdfb4a083f0f12955913471a49a1a5eb345da5265d6abfd4ac450d197412999
MD5 03b6b4bdb0c8c1638a45042250957169
BLAKE2b-256 b162e1458c2b72c8e0054627f183d75b9143aa6f2cfce7462db868fedcde3d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0466ec69959c6749bb342475ad1923c7bf29f4edcf8365a2880b2d2cd0b5d54e
MD5 727fdecca0bb90ce3e1a73f966c300b9
BLAKE2b-256 ec440b9c93663fb8c0d2e81d414ff0879bcf059f7084d10f17ae3c8f195169b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ceafe60dba1f43a8f057debab8e39c18ff81dbb6218b54f636c5a78f3a81e399
MD5 0dce01cb6f32411cf861521f3101f3fd
BLAKE2b-256 2154a958f851f129305782cb1a3ed70fe367c4f786f9e8e8edb2565373b2f0d0

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5115aa6d9b9e7fba1b150f4daca4698c91291b44247e65040c3d79b267eec848
MD5 508c5f345435f42109c0ff2f4ebc34da
BLAKE2b-256 522e5e3cc471b62d91e92581f60fcafa1ef716ea5b51dc6f13234e1b90c92c66

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3813de4e1bd45960d8bf5955920b86bfc46ae822547b65e44b1970aaaa109fa
MD5 4aa81a7d341de562c29a953729e71c15
BLAKE2b-256 c307adb87408b80afd4a5d5195ed646b7fc2d482b9b25597b9b469ea0b787f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5454df4dfd6d4a7fc7ecae49c9c591f4bb8d863d87579dc544f799697d63fa2
MD5 13b51c4ac861647c3257ba53be0954e7
BLAKE2b-256 8ab99a5b32472b1abeed8af71746c240d1bab20db6bc7c80b40fd621a67e6361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 51738aad735eee45afa50a4e7e4bd83559d3d223b7995745e9af03608b896e58
MD5 40dc1811db287f673b5fe132e285f48b
BLAKE2b-256 6a29e8cd41c22ba04f5cd92df3c7eeb3f78d628689bce00bc4b3b99c2e61fb88

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c19f299911a4e6d67554e5db586a936daaf209562e0adebb64d970ac6d32857
MD5 1474109b98c68bd91e64a13cf200ba0b
BLAKE2b-256 d41d09bdb61f08027bb8292be9a79823e03201b784c8fe3fc7bab78e8c631008

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76a9e383ab31a0a71acd40737640e85a704cb233d140f2ac994d1f91fba782e2
MD5 439f58a9ce2c11f08889295cd9bdea7f
BLAKE2b-256 8943cf332453096345f51a36ef3f862090a0cb249c4a6525e4a4a6fef10dd118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b16b79c3d933c66915f2e1e34ecfc3212c085b46479d82f81d03767b044928f1
MD5 19f82c0b537360c24ba266b91eceeb65
BLAKE2b-256 f67407121993dfaac67b29d9762b22dd54c7163c83b47d95cc01d418b6fdbe55

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c413bcedf5ce455522f51d4c9d144255ab673f5fcd9b6b043ee22b3f34edab0
MD5 d3b2967a20735d63a1138bd962b915f2
BLAKE2b-256 7289d8e6ec763b0aae734e1a1a2b32bfceadb5ddbe4b71813731372ae2d82e8f

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-cp312-cp312-win32.whl.

File metadata

  • Download URL: serpyco_d7-1.3.13-cp312-cp312-win32.whl
  • Upload date:
  • Size: 405.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for serpyco_d7-1.3.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5ed1920af2dd00263c92f3a33834813d00c501552a93929931497eefbf1cea62
MD5 333df2fe227a981c87244944f9ab9048
BLAKE2b-256 873296f5fca67dda5eb0a16a012cf3a1cfdaa6af8b8766a5b0f84daac4cc44e1

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7941c7cb3002c4c22a77bd964479a8b8165dff9236cfa9e3b80d11cea7cf84fc
MD5 c76c5b117af9dfafd50738bc8a976c64
BLAKE2b-256 542b09017de860f46675c86c6b7475831278fa862d121ceb807d02d0f70045cc

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 04d0482ddd5dd37a896de0db636fc654a0cec80088c77484997fd68d3cba010a
MD5 ac277e99e6e821792ae45df5f67d128a
BLAKE2b-256 81234ebaed96a348a0483f9d7ff23ce9c078696c8b3e9af4fc471b4006819357

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b60b92a278d30fbe956931e1c9a6653e5a6469fe81d355877e908560a912b6d5
MD5 1c3796aabd76662b1d72c88b5abd23af
BLAKE2b-256 62c2838dfbc030cf42ab2c5a89fe150f66d21798ed1f8d428605bdf111c63b5d

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a4aa04fb39c9de0cd18dabfb6ae04c51c24d8764be121ba676decd6e665866c
MD5 c5901f73f66754b2360ecf30dc579e79
BLAKE2b-256 920e3392684ec3f410db0e7f21b76cc76edda65b71433afc34f1151c1dd373fe

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d03424e014c7ee2e81d36b519e87da23f05268af91d694a5af8a8bdce77767d
MD5 3f2ad51dab95e27788b88d7f27b4ea5f
BLAKE2b-256 cc028f8e5927ff15d64960d945d0b3dd253bc340ff749849aa930af0c537e5d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a979a3d096fe0dc33452c8ab946d86e9e659e1b1cb879ec0e44f909f983c5be9
MD5 cecbfce6b8f13858fbbb8929e9422ac9
BLAKE2b-256 b6528b1917888319754669ae5cfcce7e69fed2b0ce9254c3a3659ca7db64ece3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: serpyco_d7-1.3.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 405.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for serpyco_d7-1.3.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6cc710883ec4069937a4ff8e72846d07646348d810b2ab6f2eaa8ae20cda5493
MD5 43eace66ab93318c7de4e5d3b065dc5d
BLAKE2b-256 13f866496f4f27cb387ef6f20fa9dcd4e1d5a29a4892df8555aec6ed5170520d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8439f2aedce57f2d9833a923649e9a37c22faecc9780e1cb6ca3d2810232a7af
MD5 2de69c79e3b60c4152c4d82b5a66cf52
BLAKE2b-256 17da6671d613cc5bff52c2acc4f35b485c00e39587dd6e0a495e3e3eb9518b29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b6cd4329c98598dac9edc698ddf36c3bf0258d55a975571f1741c3867453e983
MD5 025550a1a75a9de945501e3a32492236
BLAKE2b-256 0817102c43c7510d77e84bf276214f69b21e00a4c541202dcd2969813b2a9b44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52b21bd9182a7c2bf669428679d0d00b3c3626835ee48800929f849a43e01a0d
MD5 63cdeff205235a948420bb09317ad51a
BLAKE2b-256 132337150c45150a3b7f2e58765740e0fdac76cac6f8a16752b8c00e2af0b28d

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2ddb707bc49fbd42923994931c748cf79e773ac5606c8af122decde9c05e9d7
MD5 cabe2f5b6d5d541f1a9a870fed9a9cee
BLAKE2b-256 8bd0883fece616a105f46798e6960006515404c5966750320a1adb86858f8753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83dbfad0415cd61bc9a8fe61f075412e0da7c5ea524a6e1ccd10fef912439c7d
MD5 4e901ce9fea466b1ddb23ed8a40efb21
BLAKE2b-256 e0bab1c112507e66dd308e0cf549738e2a7f663e48634083e68100ac947227da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4b70fe4ce7ebc834624afd7764e056d4db624dc6669488c78d67482240edfc6a
MD5 6e6d7f651592927b5a34684b257b1bfc
BLAKE2b-256 43a775ec8a312d74cff1174b87fdebb19ca575bcc8ca7ea58c6b2b997f4621ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: serpyco_d7-1.3.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 406.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for serpyco_d7-1.3.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a4372392319c1be38808322411937fd359db4c41639de32d623075174fd7bb49
MD5 b52f23c381a574c3626206b638c191d4
BLAKE2b-256 02c22ff03791700d633805f48825a1ebb783a77ea508f7d7993d074f1da904f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 722b736576fdd9422a39265c1ce59d5aa3e2e0f54f06c4c5b900978ea5508ff3
MD5 9607855120977ab6dc3f9dabab1ceea2
BLAKE2b-256 243c65d7817ee16647f63192bdf848f6a53f995df30bc3e339d861c9498a4e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b17614020ae260ba1b94537a2c95c3bb58ec32fd881972da916add8ee46653fc
MD5 f3dbbd2ae07c90bedaeccbca12965edf
BLAKE2b-256 b3d3e3ae7616e4979ab0fe6259d8b2763051205170da1f121892356da553084a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcfa703943ff7519ae86ef13e009858e9f538ff7977791433c3306b550d1520b
MD5 ea9ad84348eca3a6246bf3858f006047
BLAKE2b-256 7c0a90c03d549b515ed288abf31194704964be2d46bbfdafcda721edbf6d8422

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b04ad996ba85c9996bba7b2e39cc7c20fcee16d270b7a7ec40f68bda902e2e1
MD5 ccd4988b56c0b80d0415416770eb6f3f
BLAKE2b-256 4e247cd5ae8f33b0b196300a64d71afb6596722fe76793565258622e5128f78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba8963c789f79ee608d2818e701e91a69582da8c4b59c9682d9b9178b8a30bd1
MD5 da629568c7c6ed6fd10a4dd2442c02c2
BLAKE2b-256 db6b093597a1292fe923b06086a482af8f61b5ee145cea88057e641cbba17305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 af0dcd5290f921049a23737e6516639b9eb21180357b533667656f5ab6983bfe
MD5 ad03720e8a1d27fe414e2f0d1db98cce
BLAKE2b-256 a5fa7106e55a8839719efa1d1f807f0a723fbd3d86871f7898ec6f5b34060e38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: serpyco_d7-1.3.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 406.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for serpyco_d7-1.3.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 45b4b228127a0a29588733d7980c20b1eebec6a8cca672ef5ff14b484882b998
MD5 d314bb8543c648d11618f6ae8f5581ff
BLAKE2b-256 7d3554c5ecdfb8a1f57cacd9901c90b9d8402358baaf42eefedf56b3c0679b3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 647bb8981b775c1aa74c9224777adf643f6fa7442234a0c21c71311c8e767bc5
MD5 c0afe00e7ab42444851258819d2ecf80
BLAKE2b-256 ef77b2522e08bfbe913d10124e4c782fca6b01780c9f4de7f5a4efff758f23e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f45892efeda6171efe92ab988cdd602f415574e0437187e60e0d8954d1e7a6f1
MD5 f9eff7098ea06e61eebaaceebb4b9e97
BLAKE2b-256 0ec80490959505a3faf455f816ab9a387eea8e6ecbaa32176258a45a93058070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9be7d88eab82eae5266cddf385e229d3ca41dd55822f441c3db2be715fc431ac
MD5 2bda2328012120eacb77a661ed34cd81
BLAKE2b-256 d31eafc213484b8a26415666f342c8938d323774f3463a779ed76b8ec77eb480

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6111bec2850ca965b20df75ea2c5666af5bfcb379da6e7e703f525af09c1a030
MD5 26134e8538754538eb95b14cff4e89bf
BLAKE2b-256 4b78fb2fea3b52134c612c2b719cbd116a1eae8456f67917b851d55b74f709ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab6495f69b4d7b123db062de9326f76cf4b3ccc56cf4214b20608e99af0fb516
MD5 1f82e62e35a4af58c8ba4f170e6c2e69
BLAKE2b-256 62f47c967961b8bfb0166d9158fa133a0807421f5c783d21d1fb6c520a54a8fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b4b740b3965343934b512725767b813b1db5bcbdde5176019da039b29617b76
MD5 c77039047d14ffc8e815634206c26489
BLAKE2b-256 5518b041d7e93d9ad8dfd4bdb6ee5ebe8b35eff76316b732ef58cc384763f1ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: serpyco_d7-1.3.13-cp38-cp38-win32.whl
  • Upload date:
  • Size: 407.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for serpyco_d7-1.3.13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 83932299346fc8f2fef1323646bfd4813fed4989cb3433c898c9f94b8c92415c
MD5 25305e56d99e7a3aa98bfc37023545cf
BLAKE2b-256 4f7430be4d2451dbc19463e871ec4a05f2f3ea3bcb5b43f42fd9706ee34838ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e2c30302a174140912378b2f5973a9336f9b6b857563f4953d08fdc89c89b40
MD5 08ce638aef2ffaf9db1f397a7503fe43
BLAKE2b-256 d52e52e6e3732453195cecb5992f4c446dec15988c2b9b255827f611ca251152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7d833456974d1e89e42379a47f37fe12b384a70acdf435292b807d0f7a0e548a
MD5 755dc2f2d5b85740156fb5efb4fec492
BLAKE2b-256 8c6fbc93ce1e2105343a1a2a086ea28f579566f64afa79cb6916f90daaccb2c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b98dffcc5e49eec40b1fa6fe2da81a07f85bb6d55ed166c81eace51e6743fb69
MD5 ddf71a7dc1e0462147f5dc9976016c32
BLAKE2b-256 cee714dd34ed9ab170f9104b31dd920e62e8f49f7ea705830de81b63562888c2

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b3aafd99971f99d5b58c3aaa08c21dfe0687a2499f9fadbb7a75c1a00383e02
MD5 e09ee91816250f90ea15a00245bdb5e1
BLAKE2b-256 f0fe016bed43287c2ce0049256f18175af6dbc1ee5b645ff084a4e5b128c4ad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0108ff6166e5213e7424985a875a512401901f8661cba78fea836a208fdf9cb6
MD5 b388c50293adbcf4b762c6e2ee47b7b5
BLAKE2b-256 661760d4f7cf18039ad8e8e643399d3b57c80af06d2ee86e8f65e221feaee633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 757cf6af3810a761e5917298069dcd81c5e41179ad1971a84ce8b7e4c40d34b1
MD5 9644998263e631c281fe60ee5522ce98
BLAKE2b-256 5baed09b7210837cb2842e99f06c157ec89f48bc366f0225cf65fa7fe1fbaba2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: serpyco_d7-1.3.13-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 405.0 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for serpyco_d7-1.3.13-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4b05e61f40c61eaf1d70f72e26c6cc385f661c33af61ae3d9fea5a9e070b97a2
MD5 b377ee892118b163c7d0920713c86df2
BLAKE2b-256 ffc4c8dd47c741402662797c7b9c24d387363fb7347f6b87a04160095b273eb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 564c502a86b9d755cf7213675c7cfdc68f78e187d0f45e02040a03bbd7f815ec
MD5 548bf277435d1fd66a339e40bf3027c8
BLAKE2b-256 f95f503c04788c8d10b8afb1243af8c94e1fb8c2a198be0ce99b88c889e727ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8859a2fbe28c3b471f95aaf21ba70db9812670020b337028139de2658ce51871
MD5 0e9446efcae9805fb248755ab6b6ceeb
BLAKE2b-256 08658c655778f9e91a1e516c8c06d6bb75753400dc248768bebd3397e1e46916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3eb40850f1828202a96f600405d97fe7c4e3a9fac52828954633e4fe1d9a17f0
MD5 54f5c40bf99b4dd5ea3b6000fd928c71
BLAKE2b-256 9e7f0447755097927598418f950cb4c2510a77654d8a89eb847e8984fe9b00ee

See more details on using hashes here.

File details

Details for the file serpyco_d7-1.3.13-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.13-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49ace3192cc54c2978f01039face997c2cf2527306ec315b5595ab5e483d4570
MD5 d3ba4407480f97eb18cacfdd41d1b210
BLAKE2b-256 fba97aea2cf466286336cd01d21abba841636b60f456451a4747545954d9c8c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for serpyco_d7-1.3.13-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bcdc56b109d12bc4d879580a35e1ebc5931eeec0f45d866ae947383caf2803bb
MD5 12a40d0ad962f7b83f7a5eedafc15d59
BLAKE2b-256 82f95c585464625e5ac57d3fc0c4cd13b81e2d410d8001c7ff7ca89d4dcbaec1

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