Skip to main content

No project description provided

Project description

Schemars

Introduction

Schemars is a Python package, written in Rust and leveraging PyO3, designed for efficient and flexible serialization of Python class instances. It provides a simple yet powerful schema-based approach to serialize complex Python objects.

Installation

To install Schemars, run the following command:

pip install schemars

Requirements

  • Python 3.x
  • Rust (optional for development)

Usage

To use Schemars, define your Python class and corresponding schema class, then serialize instances as shown below:

class Product:
    def __init__(self, name, price, created):
        self.name = name
        self.price = price
        self.created = created

product = Product("test", 10, "1577836800")

import schemars
class ProductSchema(schemars.Schema):
    name = schemars.Str(strict=True)
    price = schemars.Decimal()
    created = schemars.Date(format='%Y/%m/%d')

print(ProductSchema().serialize(product))

Documentation Coming Soon!

We are currently working on comprehensive documentation for Schemars, which will cover detailed usage, advanced features, and integration guides. Stay tuned for updates, and feel free to reach out to us with any specific questions or suggestions in the meantime.

Upcoming in Version 1.0

In the upcoming Version 1.0 of Schemars, we will be introducing additional functionalities including both validation and deserialization. This enhancement aims to provide a more comprehensive and robust experience in handling and processing Python class instances.

Inspired by Marshmallow and Django REST Framework

Schemars was developed in response to performance challenges encountered with existing serialization tools like Marshmallow and Django REST Framework. Our goal was to create a solution that not only addresses these performance issues but also remains user-friendly and familiar.

Easy Migration

If you're already using Marshmallow or Django REST Framework, you'll find Schemars's syntax and usage comfortably similar. This design choice is intentional to ensure that migration to Schemars is smooth and can be accomplished in just minutes. We have prioritized maintaining a familiar interface while significantly enhancing performance, so you can switch to Schemars with minimal adjustments to your existing codebase.

Benchmarking Schemars

Quick Benchmark Setup

To compare Schemars with Django REST Framework (DRF) and Marshmallow, follow these steps:

Installation

Install benchmarking requirements:

python3 -m pip install -r bench/requirements.txt

Running the Benchmark

Execute the benchmark script:

python3 bench/run.py

This will run serialization tasks using Schemars, Marshmallow, and DRF, allowing you to directly compare their performance.

License

Schemars is released under the [MIT License]

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

schemars-0.3.2.tar.gz (33.5 kB view details)

Uploaded Source

Built Distributions

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

schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (290.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (290.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (290.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (272.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (292.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

schemars-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

schemars-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

schemars-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

schemars-0.3.2-cp312-none-win_amd64.whl (187.6 kB view details)

Uploaded CPython 3.12Windows x86-64

schemars-0.3.2-cp312-none-win32.whl (166.1 kB view details)

Uploaded CPython 3.12Windows x86

schemars-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

schemars-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

schemars-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

schemars-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (270.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

schemars-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (290.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

schemars-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (243.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

schemars-0.3.2-cp312-cp312-macosx_10_7_x86_64.whl (263.1 kB view details)

Uploaded CPython 3.12macOS 10.7+ x86-64

schemars-0.3.2-cp311-none-win_amd64.whl (184.4 kB view details)

Uploaded CPython 3.11Windows x86-64

schemars-0.3.2-cp311-none-win32.whl (174.2 kB view details)

Uploaded CPython 3.11Windows x86

schemars-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

schemars-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

schemars-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

schemars-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

schemars-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (290.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

schemars-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (243.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

schemars-0.3.2-cp311-cp311-macosx_10_7_x86_64.whl (263.3 kB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

schemars-0.3.2-cp310-none-win_amd64.whl (184.4 kB view details)

Uploaded CPython 3.10Windows x86-64

schemars-0.3.2-cp310-none-win32.whl (174.2 kB view details)

Uploaded CPython 3.10Windows x86

schemars-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

schemars-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

schemars-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

schemars-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

schemars-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (290.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

schemars-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (243.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

schemars-0.3.2-cp310-cp310-macosx_10_7_x86_64.whl (263.3 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

schemars-0.3.2-cp39-none-win_amd64.whl (184.6 kB view details)

Uploaded CPython 3.9Windows x86-64

schemars-0.3.2-cp39-none-win32.whl (174.3 kB view details)

Uploaded CPython 3.9Windows x86

schemars-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

schemars-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

schemars-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

schemars-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

schemars-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (290.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

schemars-0.3.2-cp38-none-win_amd64.whl (185.8 kB view details)

Uploaded CPython 3.8Windows x86-64

schemars-0.3.2-cp38-none-win32.whl (175.2 kB view details)

Uploaded CPython 3.8Windows x86

schemars-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

schemars-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

schemars-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

schemars-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

schemars-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (291.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

schemars-0.3.2-cp37-none-win_amd64.whl (185.8 kB view details)

Uploaded CPython 3.7Windows x86-64

schemars-0.3.2-cp37-none-win32.whl (175.2 kB view details)

Uploaded CPython 3.7Windows x86

schemars-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

schemars-0.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

schemars-0.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

schemars-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

schemars-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (272.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

schemars-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (291.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

Details for the file schemars-0.3.2.tar.gz.

File metadata

  • Download URL: schemars-0.3.2.tar.gz
  • Upload date:
  • Size: 33.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2.tar.gz
Algorithm Hash digest
SHA256 9fca3f90274c246d20fd9a1f66911c5036a79db4759c198463545daa642c1e2d
MD5 bd635ed0df3ddbc68895d09771d0de4c
BLAKE2b-256 727ba9bf822964b82d274d0426b7513d9ce53fe66ba76ded9c5ae493a58a9913

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5724c7db0575647fe5f011a533117b35c0938513051f5d1097bacc273da416e1
MD5 e2c0a15cdb8e55ccbf83603a1b0ff313
BLAKE2b-256 5702df43bb63a073ae799f52b4a8b93736d61aa6af614d893cba5609f0bcb6fc

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e18a17bccd30ab6720362d717581993973402f7380afcc358351993000b7e8f
MD5 67c5e5587305290b1711dbfbf9bf47b8
BLAKE2b-256 bcef6d54a260d52a18d7aa40bcd0511e70203ddd64aead5a5ac85346f4dbcc76

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e89e76bd0bace038510e6de16181743537115c1c1b50e27461299b6f60b9eb6
MD5 00e869100fca59de0eb35e27bf8417ce
BLAKE2b-256 40e9ce74e46094086aed77d87e6fe11b57e59186de07d516057c7afb9049c34e

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bc368514e93715a0b381a757b59654414d3104b0d54cd430b71c8d7b450ad46
MD5 5f14a20296278e0e8f466c40d04e52d2
BLAKE2b-256 0aa3c550a9b4a29b09e2971c37620322baa83552681887fc96a957a5b7c642b7

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a748a7093aeea3da0ade8f4025b5e30de438024386cbafa03900096b43cd796
MD5 527cc06d04d18d336428b7e0b464c5d9
BLAKE2b-256 be75378c71a79f90450e597eee3e691c5ff94f1f0e95960234eecb02cf7e3d3e

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ff186905df63d240027a51faef749774d2cdbf04ce27d37428a75fa69f46d47a
MD5 45f4589216be012e3251795144ca6bc9
BLAKE2b-256 0d727df9dd6622233511fd88c740bdcd2563c4cb00bc0cca581378834b15e15b

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d56caf6cb26c2624d268a26cc14ae965c36cfc928844daa3ceaf7a824d9c5225
MD5 51e55bc34f8f60bb2b57f831c41357dc
BLAKE2b-256 db7e8907fe7be64ebfc2399191135ef491f6700615644aa6521a26202dca6b7d

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed3a5c5d2827267858855e094e616d2bd3f23b1efe35704c430b2505d6072ccd
MD5 25701c2e2d9de5d91684b50ee8520ddc
BLAKE2b-256 28b1d7b303255b4deb0f9870a51980d20f83df06c27bf6ab4c1f67d5271ef71d

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 caf5b9af6913d2bffe853bdc40351e3e3a1c981333c91681c29b89ff9124ff00
MD5 9d4f5be47e25bc2be0bcfb810a372b4d
BLAKE2b-256 724c1d8b5e122ec10a113178cf2cb74f57307c173bdb5efd10c03758544bc00c

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f5e724892fe3877e13ac65cbc6dd086622ebf14612bedb161ed2b5d7f810ee0
MD5 2b24e95d83d58a8be17fb924a62b2506
BLAKE2b-256 bdf7d1aff57b3fd0f004753f61c07c125fdfc03e6c8f1fb2c40e924ab4c01da9

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 770895eeb7bff9fbdec55356cd01fc696a03115fa7c6d43a0bf7f962c7b6c9d5
MD5 101416b49c25c0577e14ff6e2a3f8f4a
BLAKE2b-256 edeb8aaafcbb5cd4a35a200454b3991d419e5f24960e86c308f9fdd945f84f8b

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d95693217bf6479aab79ec172303b032a2303d74e0f1f0c3ea5f3e51c3f6e71c
MD5 2e32a74d34e640901b86a3f27373160a
BLAKE2b-256 c606621ecd284fa7bdd9a7a3fd456650d47f5740615e61dda00e43e387197ba9

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 594a6596b7809eb43b3bba7fd3589bb3def8ac8040b31328cbecbdf83186bb65
MD5 9847be2bd2abf0a9fdd29be5c9d63010
BLAKE2b-256 5b92f9f5fe226643a5b300caf6b22fcc540a529f241c45593bc3a816678796fb

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df41e41201f498815c4d9f9848e380eff7192313744f310a7ff3436e23360d3e
MD5 3bcff3fba182285a4e89a6451c6e0c6c
BLAKE2b-256 601e87e8dca6d072aaa0640d43d522b9e9c14b2e8ef9612b8c2871f91b2a19dd

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af53feec66c580de6fec4c49db4e37dc641d9d1572cf6fcac3b5061a921d0dfc
MD5 17d4c76809a5a56b7c6125283d2ef32c
BLAKE2b-256 53d3d66130fb458c0f999b536f79ef28e39b8053efd58e87df01e489ac8a3f6f

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69a5d9512fa2726fa89e108fc929790b158748c15c5e5a2ec54e36a5dfb442a9
MD5 d0009eaf6198be8659b2b1802a83b9d9
BLAKE2b-256 bbff295aa8fb90bde4ed795ee0d9558db624890d543a4dadc60a942bc3ca9ce1

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5649a16cda2f33428db57f330d5e62bc54a567a40a316c7a4813c621cc5b8dc6
MD5 bfb2b16f598483ba3a1cc55937dca041
BLAKE2b-256 ffd0e48fe5611c0c8915cfaf3c785b914a04b9586ee0d1eb1daef711e0cecf6c

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9de033e79d04163d5aec56a5da39758e82a59755ebaac8b8244a58c88e6cf055
MD5 730cb1a9cb2ffbc0266b0767ba36edee
BLAKE2b-256 5da64d7bc614c6fede096291f74bb7d0c9a6afef51a3b892dccf608a8d599cd7

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9607acdcac0b092ef6292782ab7839a5c9d46f8468865c4ef839aad8a38e3420
MD5 6512f592d21e9e30db83a425a3d1d97a
BLAKE2b-256 a3c5c0e80ccefa089992254de9ae622b9c0df3e1b7868b8ec6275c3dc9ef0c51

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5520b3578d76b1e4f14efc7514121c5ee5660583b4271d37373eabb86c62b46f
MD5 7dd8a2382ee69e91cc18c43ed44c6648
BLAKE2b-256 c05fc4728801fd779fd6635e281501fa9ddfc4cd2eb3e85de3b808b5e2467ca2

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e252157569a294eaf80dad32d836e48c6a72d4b7724538b313971818554dea43
MD5 5c707c7ab211fe712e2b0cb63a3f6229
BLAKE2b-256 68814d0dd49633e8b9b206d7151dbc695856f7fc3f4ed0f3fc3685dfc1482e17

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57a83a4173338417bd1ebb5b76032ec78dd75cb5ff4a5ae379e5abd83263a1a8
MD5 a11a2ca4cb5fa949ca4c48f8318ca431
BLAKE2b-256 70a956896e32956ab70a3ae6ba32d36febed2fac0570a36173d6a5afeecc7701

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afbdc9deb157054ceeabdff5236ee45afb86d09d83546d92be3dd368fbfde645
MD5 0b94c1d06ff0ec4915fadebf77e4e7a2
BLAKE2b-256 0ed2b7d76eabde8ecb1b0d3a8ed84bdeffdb369608d94ef1c9857380a31b6786

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d09d5c27207f6cf9f1a1e149581bb57dae839bfbab9a8e8ea4320f0a896a22b2
MD5 858a42d7492edfc530020c93504f80a3
BLAKE2b-256 88797b0a9cc947a3595e1dd9e99a0e9f8793f3831d81143930f805b3281d676e

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 214f0351ecee22f1799fe11d50ea32f1c1ca87b0e27e94a7b968cf432062aecf
MD5 1bc6bfa6c3c9a91b2d332436d89c7dc7
BLAKE2b-256 b7e5b48b0c9909b28288e3348d032de98ecf0d6d4e0f67b3b8222634d6e6fedd

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05946d971f633f92a8976a731c5af5ba4cf737beeb64d052dc8207363f690fef
MD5 1e14e87fa7944ae4f5463dbd6cf36b1f
BLAKE2b-256 0ed742de1cc3fd10526988d4372fee3fc011c80598434a0bb043f713fc118350

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4279c2218e5e01ed9554669a77c2d5f3325b1116b24f668cc2c8904291036179
MD5 08365fd63ada044e820c4b99fa6ab03b
BLAKE2b-256 68595cd42ca7ba11b6172d43683313dda02b65c93800098c922d7e7e4a2844b6

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc4b32de0221dd4cfa8a8c4003bf1b9c05980aba306d32068cd1dcf56786410b
MD5 50db72ea358e0dca0c49456fa22cd34e
BLAKE2b-256 58395e2c9590e65f4d248ac2e70096f1d1c1242717f821553b381a9032b0662a

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-none-win_amd64.whl.

File metadata

  • Download URL: schemars-0.3.2-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 187.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 99e156625046eeeca30c6455e3c8eac3492572a44c1c81d9aff3ddfcfc4ac937
MD5 6021cf7213496a402634f2bde4a61389
BLAKE2b-256 8b44c04fe7b37f20f9b3aff45c3aef72b72a832922a90a399350c1ec1a0500e8

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-none-win32.whl.

File metadata

  • Download URL: schemars-0.3.2-cp312-none-win32.whl
  • Upload date:
  • Size: 166.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 9218596eb00d6a75473581c24fe86ebdb68bcc0af192ac7840323bac3e528cbb
MD5 a1de5f1166cce002380a264bb0fdcd23
BLAKE2b-256 de075f197c3252fc133012ad09b13f3b9e28048d1dd82f6756d2f885abdac8e1

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5743c981e4286ca3ac9c68081af6d695a8be2ab7aae7f5ba944a4d1185ebe93f
MD5 bac0aa07557dec3e2757908678ffe5b7
BLAKE2b-256 ba105814fd44044edfdf274ba5873d2c5b0d2c55552644eb64a8f288dd8f2e84

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 174c04c6d7e884007c180c75f0787df2c25b0cac36b90ac9a8e281dc2e168ab4
MD5 0a0a9e6d489c17311b597a76ec60579a
BLAKE2b-256 2d860c1bf38380f0bc9b23cb65ce795fda0179def5edc3a346238f4adbcfa930

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 480865d2e935ebe8644c203a03d82c15c6df752cbb2ef71234833b7e92fa14c0
MD5 941a67a7f173c8f2f1b5f88d255757a4
BLAKE2b-256 430c5d5fce49a3ea909fd2e28587edded7049c7c384d29a91abf677c8933bfb2

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f61a035ccb346142c7f30fd10e30d48c552a90af49401b04e9c24165ed582304
MD5 1aa0c0cc02062dcf71075c112b0d7430
BLAKE2b-256 3c0b486d66612c3d02363670f70f2f7cd711da72c06afaf573918cfa2acff782

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 333fb150c7a60883bdd5b4cdfc8bca17cbbf202e53fa5edf0d5571ec5ea57a29
MD5 05359ab0047b9aa9c243b71f0a370b59
BLAKE2b-256 8a1b65331aa70a72343620aee891f93641bddf127dab897daa5be7cd1752dea7

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 faa1ad40ae28d8f9058c7ba17ca5b966545389cdb55c93d2b78ca9ecc47d3175
MD5 473fb6403fc7bef8e532d268097208a6
BLAKE2b-256 c7c5e138453342179d6db519afce12398cbf5e696ae94db4254432f82cc94a54

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9334754c8cb8da9dac604a59eb2f22317d200e8abc7adcc3f2d50db166c80939
MD5 ded46572ab12c64845d3cc9b2067446e
BLAKE2b-256 86a1bad5d8e3b201868ec45ae022c19323378f9dc9727bf787e30cf0140ece68

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a1ea7e437b5c2a76da2a53a36d4459ef21aeb945891427e919447e1b05cff697
MD5 66d9c734b0e736c340510cdcbf66a848
BLAKE2b-256 37a340eb04f638ec903b76b194a40a69b8665ebf4a32eca1f34e5c68eb4086ab

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-none-win_amd64.whl.

File metadata

  • Download URL: schemars-0.3.2-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 184.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 009c781a496c00bb143aac3197997b32d3374a09fe514cef382571db29081436
MD5 e1d82ef75a1bad97ee62c0ea56d8ab09
BLAKE2b-256 db5f8225a11c99a9b9a9df52a453fe43019ac5449e8b87a89f3876a63ba750e1

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-none-win32.whl.

File metadata

  • Download URL: schemars-0.3.2-cp311-none-win32.whl
  • Upload date:
  • Size: 174.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 2482c24da7718db5ae4d218d9fe4dc19e91c67b266c6b79ebdce21cf4ea75eaf
MD5 0728f7561fd134000fde3d14f2b9ed40
BLAKE2b-256 e2f48e7849ca9bf4a06aacb16a778989fa54c5acdb09fb0508f38e1e77a25917

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0064bd4b9c70375fa70feed0ee441b7bd149daecfd23e5104e5f0f96f206c69d
MD5 89c16679ea7e7de02b2e65b57184e31a
BLAKE2b-256 45f8facd9fa5ca3df7fafa4cbc1ca22d101f0050f7606d8d1cb0638a35638459

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbd5a8fc9a4419ce8e00ef906a4c457f52dddddb14465df66f235342ed668299
MD5 d84b4e55220c8991ba080b66df1cae3c
BLAKE2b-256 d7c4ec1a89fae2f9b2d7c0657a9a4c1b2fd0ab17863a2cc42f22f91321939c9f

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1f9cadbacd24e1460eaacee8569fa0464e15bd05421bd435faa9aa9409c73ae
MD5 fd74ef2055a6b3004900cd3c2d8d2770
BLAKE2b-256 4cbfb1ba609bba92be084c0d3ec10dd71db4a09d5a32ef2138720dbf1aacef68

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a2bd91ce2aab19b76d5690c736c082f648a91f88abbb85c97a2a9074dada4a9c
MD5 f2cae1cdffd5d093d372a255f2bfa90b
BLAKE2b-256 8a684b6d981db9d1522f4a692e456a3c4014f0a85f574bbb19e01c1043917aa8

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71d713231ef8ddf8d484bead0a904ddb8e667699d385f98fcd1c7fafdcb36c50
MD5 bc83b17c07eba1086ec851e993aa018d
BLAKE2b-256 445793b0930f1ff96c5e30db7f4a728d39d3d8a9b0f4027098de4edcf92eb69f

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dcdad6d73a835299d1788dcc6f722d1e6af472975dee0794f4e7c3754964ea7c
MD5 8d10a8b61131a195342eb5fb41b89bef
BLAKE2b-256 558bc247055836e3ba1e6432004f00c5c9a9abe8de0ce0a08e529a9a26709530

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f931c62f6544abc052896e488f1a68831bfa3fd7e073e31103332fd92617a1a
MD5 135ccb379874970fab063761f8ce415c
BLAKE2b-256 f3c4f1da02c74590aa09b7c1133d60026fa86ff569d34a9ec7e3a6cf37aadaf2

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f0637d4865fecd240eebda1b12c3968ad708a4454c8e17d30052a1bb72a2be66
MD5 0ee64c2d24a2b90d3d7e56a4a54eebf8
BLAKE2b-256 63fdbbddc445e2e6ac7b59438f0657586b0f7079e6d6a1874754d0c1602a438c

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-none-win_amd64.whl.

File metadata

  • Download URL: schemars-0.3.2-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 184.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7ff68935680d749865d634cea3cce28ce63afd38eb47868668e2ba116ab08f38
MD5 8f9ab28fef1497b8197b38c88ac56f84
BLAKE2b-256 97f6f6e5afa89ad07949b6ec607e1989059689447d3657108e17333ef3242944

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-none-win32.whl.

File metadata

  • Download URL: schemars-0.3.2-cp310-none-win32.whl
  • Upload date:
  • Size: 174.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 31cdb5326908ee60058eace8e9fc278468db685d7fa85c725e7284e8ca0489d9
MD5 b09e344bf560a819b7edee6d7b506dc9
BLAKE2b-256 a90f2577b4ce7eb1097f7b3caa226d9c675f2312ec484d8bcba63d58ae8ec47d

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85bd34004545ec5fc88b599f961a55518006bf50c4dfaac13f5f2b21c9e68d5c
MD5 f6fdc4078f2dad5a8248c6826346fb18
BLAKE2b-256 359248d3598c8a64299c806657954ef8288f01adadcc2432172c8a76f1b5d695

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9d8bf5fa88dc70c9c66d3a20a468ce4400a3a8960edf88d81004e15389ecb04
MD5 daf417c3223fbf28e942040668c727d2
BLAKE2b-256 7dd78582716ad528da7f7fce7f55c84fa94672b65e094ea0c088ac6ab96a6973

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c89b2bdbed0e55304e4f18aa86291b090f82df97aea9b79d9ef55f94440256e5
MD5 310f1e6f8721882aefe673de1dac694b
BLAKE2b-256 7efe7967348b23b9a84c92cd25981ed4848b98347150ef913777db06e475d618

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85ccddcbb9372e536270b3a3ffa8fc0c52eba10d3183596f13f9c55e4efbd1ee
MD5 039a15af311171372ae726f0f5f48191
BLAKE2b-256 a5ca8220d7a6ff308c81c397686916ba0a8a445f8f32fbbb19439e4ea3cafb27

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47a563308b5ad7c9cd558a628937a07155301a3e505105417ed74a8298e61566
MD5 758cb2f19ca90e66c516715d2ec34ad0
BLAKE2b-256 2c772cb37349ecc7985ae72f885d6ec8f864e63f0b590ca6e99a306f5df6c91a

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf31f7aafcd3e771cbf01239e5dd8072c4b3950940da78d26e4d403305f72186
MD5 138b659791bdf3601ea5a67e67af70e9
BLAKE2b-256 502c231a90a1a870d2b7f40149a7fa0d4f4af3d0aca4663e43bfaed3440ca3dc

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9b93f77cb04b33dd61a5216195f04c1948d312f7ac08d18bc9b63ea89eea8a2
MD5 9986501efc7955b2cf35b055044e8ce0
BLAKE2b-256 1e74113c7b6ddf56fd506306f5f74d3a4506542dc02a53804d140ff9a8619f9a

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0f0619ffa69793feafb3c07cd1ea3ff243bf1fda17cc3e648e9b124e15b0f6a8
MD5 822d56c475e9d8fbf3dedcdb6de9484a
BLAKE2b-256 0025c6d61d3483369b604054dce09822b23a32375702d650ad4dad2cdd7645a0

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp39-none-win_amd64.whl.

File metadata

  • Download URL: schemars-0.3.2-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 184.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 e5670b2e54eb55dde0445348584dfe018ab4d7561da02a7353b3857969d2b28c
MD5 55032469e2fc8bec838f6106e75682da
BLAKE2b-256 77a888ef2654fab97d9d73bbab5fa9a979a2e2f44f005c5a52d2ce85b9e1feab

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp39-none-win32.whl.

File metadata

  • Download URL: schemars-0.3.2-cp39-none-win32.whl
  • Upload date:
  • Size: 174.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 86de91d88b2cb6bda9c8927d08e5a0dd14435e99a7c22f6e75b27dfbd4a5d6bd
MD5 94d8e205739152c99a3aac4bca7fdf0b
BLAKE2b-256 2687da0714c248211443775d3f4dd5dc81e8d6df900a3503aa681837ee5520e1

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3223cb49d0c50784a42bf8cb7753b6a822d21d27bb11a28305a6b0633bca6e05
MD5 940481861b1e7ecb32cc297499df1851
BLAKE2b-256 6109cc163d4a37b7ffe3699ec5f6d53019f61b31ca1b01a5f172c0ad15118a7f

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d105d7cb00539773b95447ea5e05cae1b4abc803da69c2ff84b951a95b2c8eb0
MD5 99e7cf70d710f2a8ab0780d937940fa0
BLAKE2b-256 d11887b4e7c4aed8397807eb25fc6bbef7e33e427108c04b97080b7e5cdf384d

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fe71b9f9c42b7e73016cf2f9be6de0ba303d5c2e0689fbdada2cbf3bd5a4b15
MD5 3006f402b2c4ae561f00d0c165987378
BLAKE2b-256 ac6e72e66dfd00b2f9290b4eebfbb84add329862d9c3604bc56c77aa81f12eef

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1291bfcb6558474e10e2fea4ec9fb576d872175312e621da208ac8c4d0ec09f0
MD5 f005c217963cb25be9c723cd1ef48740
BLAKE2b-256 b6041b9d2fe4a81b79f0a9f418ab1035addc897faba52063f5abdf815f595f4c

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ef7f52c7c4d5dfa379017d569a71d055ab3051cafd2a23a0a6b1c28ebdb981f
MD5 3a34d9b9fa49badfb627ec2a3d740b72
BLAKE2b-256 0ec491e0d71011acfbde0a9f268045cadad7665cd5783e428d25de9d0ce2a930

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 463020ea8cfb833b0a8dbc4cf76ed8d6ba27d036f1c7a8abce073000d5968895
MD5 ec92cebd2b4e4519fba8e0a038b4c310
BLAKE2b-256 3084d31c77dc5d82c833b1ce29b91d86593f8ed8eee4e5979979a83649ea2123

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp38-none-win_amd64.whl.

File metadata

  • Download URL: schemars-0.3.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 185.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9395af47cc59ee9d0e35444ef6596b758801fe925a8e1bce6fd47e9d2bd5e9ba
MD5 84c28827160a8439980bc855bcefd488
BLAKE2b-256 74725885a37e80fc02cd7222247443e06255b5a8079926452e7e45f2eb2d43e5

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp38-none-win32.whl.

File metadata

  • Download URL: schemars-0.3.2-cp38-none-win32.whl
  • Upload date:
  • Size: 175.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 d97e9b5c506676b7bb9aae4f11e26ec6a60d388aa93d414ddb07b484679a92f6
MD5 a1c35ab389dc72c1c93e511faee42219
BLAKE2b-256 e85a9822258615912dd52f73ac4a08d46eb82f36cb3d8e55f3da4f48477b3a90

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50766b844fa2f6379dfda0556bda69f7eb70ea0aaef272e081367fbe298c1130
MD5 6c165c0d4042f0e60ac8445a8b1e702f
BLAKE2b-256 a22e2f8ed3eb552b90d1f2ec42fbb8d957eb61d6f33500372b579b796644ca48

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af7b018f91a9e38788c49dc1be1294f5921e26b217f82211d337f22fe811e10e
MD5 d06bbbb2c31919d5d75dd508fecd5d11
BLAKE2b-256 8872705521c150b80c63f66d1d731478010fee964f0c58c2ab4805eea4029289

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3cdebfd4a49fd5079694421f19668e13fce1dcf2a9ca5cc0adea6fabc738c24a
MD5 bc4b2bd9d808ec85c1ed743884a2d068
BLAKE2b-256 322183391e648a367c75b4c3d4d9f9a1e24f8c0c5e353c14305f264661a81041

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7a06c0abce9a012b45ac98da3b04c68c23a232cf85e4c1fb150f78e087415f8
MD5 c586d7482764f38a915418b302756a46
BLAKE2b-256 3128218164b6950a0185608e240949012536b41151928027cb3eda0b8de4125c

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b40cea164cc4cb3ede7ec35918242c97d71171fd102a53fbb77480cef44155dd
MD5 fd5f7e51324dbda5de47a6dab92a4d84
BLAKE2b-256 b361dbf1ed01abfc61e79185c435114bef073fe879bb10157e8377d35cce9d95

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7b5acd72f8d4363707db3f99db6aa76e3e6449169244c3a054d1fdbce72d410
MD5 d2dd8fff6541b75f121a2543b3799ff6
BLAKE2b-256 2d664bb6ed4dfeb1c12adb15f41fd7e818004824a653ab25b30b27d5b5ace289

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp37-none-win_amd64.whl.

File metadata

  • Download URL: schemars-0.3.2-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 185.8 kB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 834064d7f4892952c0998d0d8e195d38f387ec7cff97f3d54d758547740fec75
MD5 30547e31a1ae443a3e7346aaff9d8158
BLAKE2b-256 fcf5d37803daa3a3970a32146bf0a9ff8fefd2747d343f62e1c251baaada00e1

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp37-none-win32.whl.

File metadata

  • Download URL: schemars-0.3.2-cp37-none-win32.whl
  • Upload date:
  • Size: 175.2 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.2

File hashes

Hashes for schemars-0.3.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 9f2e01c64eb361125e0609c6c136c7331450ff9c230534462161e89d87fb5e06
MD5 707b39308ab631f3f2d53543d8466cbd
BLAKE2b-256 8251afa0fd4d5dee92338918a5a320a758640b9b99d0c1b755e785d71c568e6a

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 defb051ba4821bb5bff59b00fa0929a32d40cf03e01ccfc2b929a011f41a6115
MD5 e66e4d282c11153a39700e8ed1157b8c
BLAKE2b-256 8cf966cf932d712a211adb23e827a88c30181d6d9cea1643cc7cc811c39aa0df

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 705c0031f719a25962a2d449ece8735624f02ab91b41e8a89f7372a3936f213d
MD5 2e89de5d22722177f4c2bc2530a3640f
BLAKE2b-256 431209cd8b9a8e49eb2a6fc48c7da7dda951987a8cd9c9316a9fca987e6a0d54

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb5bc9afed972188f583a218b1f722e45830f4f1e8efcee1b62806499915a464
MD5 2727e6715b3a7e88e10c43d42e03423c
BLAKE2b-256 2972c879239b0b8b004015db5b2a59db9714f86e31c60f32d12a76c0ba955801

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0343a2804585ab28ae366c85928b7bb4c804658d5acf2d88326094dcefe9346
MD5 1bf88aa2f5fd8b6c1a4848d7e5c993db
BLAKE2b-256 b6e068b3a2b4e894b61a112ba9fc3b83a4ac48795810550af9c2360b73fca6fc

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d86340922f7193863e08a872ea6e8a6e87fb2737de6fe16a556937e664cbf25b
MD5 98f855c84bddaf54720cfc55be2dbcd2
BLAKE2b-256 1759ce4e10d4cd8cc5b81e509ab846be8e9edcbdf6e3ceba2909faa8d45d393b

See more details on using hashes here.

File details

Details for the file schemars-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for schemars-0.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5cd7b39818cdbcc9f0768b04f78811a4d8991020cea914e0022d3834f5df55b0
MD5 e003c2fc9fbdcbd9d1005d85ff3c9fcc
BLAKE2b-256 cce6b3d323f91f15ae3ba7eeb37a7a1413d88fa585658b815735417bd36eb497

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