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.1.tar.gz (22.6 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.1-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.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

schemars-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

schemars-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

schemars-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (289.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

schemars-0.3.1-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.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

schemars-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

schemars-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

schemars-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (289.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (290.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (272.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (291.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

schemars-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

schemars-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

schemars-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

schemars-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

schemars-0.3.1-cp312-none-win_amd64.whl (187.5 kB view details)

Uploaded CPython 3.12Windows x86-64

schemars-0.3.1-cp312-none-win32.whl (166.0 kB view details)

Uploaded CPython 3.12Windows x86

schemars-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

schemars-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (415.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

schemars-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

schemars-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

schemars-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

schemars-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (289.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

schemars-0.3.1-cp311-none-win32.whl (174.0 kB view details)

Uploaded CPython 3.11Windows x86

schemars-0.3.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

schemars-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

schemars-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

schemars-0.3.1-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.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (290.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

schemars-0.3.1-cp311-cp311-macosx_10_7_x86_64.whl (263.2 kB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

schemars-0.3.1-cp310-none-win32.whl (174.0 kB view details)

Uploaded CPython 3.10Windows x86

schemars-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

schemars-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

schemars-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

schemars-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

schemars-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

schemars-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (290.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

schemars-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (243.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

schemars-0.3.1-cp310-cp310-macosx_10_7_x86_64.whl (263.2 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

schemars-0.3.1-cp39-none-win_amd64.whl (184.4 kB view details)

Uploaded CPython 3.9Windows x86-64

schemars-0.3.1-cp39-none-win32.whl (174.2 kB view details)

Uploaded CPython 3.9Windows x86

schemars-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

schemars-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

schemars-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

schemars-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (280.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

schemars-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

schemars-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (290.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

schemars-0.3.1-cp38-none-win_amd64.whl (185.7 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

schemars-0.3.1-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.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (418.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

schemars-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

schemars-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

schemars-0.3.1-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.1-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.1-cp37-none-win_amd64.whl (185.7 kB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

schemars-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

schemars-0.3.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (417.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

schemars-0.3.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (300.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

schemars-0.3.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

schemars-0.3.1-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.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (291.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for schemars-0.3.1.tar.gz
Algorithm Hash digest
SHA256 e8a2ac1157a8cb2f5f782dfe24e1a8c0ea5100f8dd222bd7597be2942ec64f00
MD5 20e7fef8a340ce9c0453cfb86620493f
BLAKE2b-256 ceaab5bb21bd6b13822b39c13bd40f8b95c1fa7fbe3cb2cc118452cdbcddadcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56b807aa176f071e567fad34d93264ab4d065b5addedbfd11f30b8aa5db364be
MD5 7910f9e9d97d06602df5dab124ad609c
BLAKE2b-256 26f85a7ca8109a654b308950c88e456ed59e3029315daa2b9ec57497d74fb08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1648ab6b20d93a2dab38316e58a06dc94bdf4555b0f74bf88793b65af80fe0de
MD5 93d284cf76e27207f83f3d1af683bfdb
BLAKE2b-256 796025bba6c46cd483a0a5ee39c73becb6b17b5d4b65898194cf329a9f9878d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 76fbee1f7e637c15ea500fa98a0eb4f9eed81d59145654b9d6888339511e5077
MD5 b0885d8c3d0925a457c20a379c356f8a
BLAKE2b-256 6ad1a0967ccfae134fbb2d007377bac8889b4dd300c1f8c267e3a4e50406f999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2698bd5b83e53f3872b0ddbc5282fd149cdd6726544ae992c863cef32a0e5cf
MD5 1e38b02d4d99ebb67f80b0ea1ebda1b0
BLAKE2b-256 ad3cee50fb3c4c747be0bff1c2c12c2c8b9f89647b643d8529795230454f5e60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e33b79afbefce207e3f40f0950d7fde9e785769fb6e7853f22ffbcbfe1b9202d
MD5 46b7b6aca35c74869b3932c6e7e258fe
BLAKE2b-256 49ca22df2b0c5ce84da82fa91bf879f026a747c18007974d1dfd032cc9d20b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f268c5bd0ebdb367f9d6b6fb9f053fb1db5d52f33bc1e3a247535da08274d964
MD5 e1f0d4c0960a62c7d98a71917a933654
BLAKE2b-256 f2455aaf8b341d95676b176dac900f07fb2f833fc166328ddf32340b6fba8e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca68547ee5ed334215f8cbf94d195b26688fe6eb2cd4279f49d7f9224b72af7f
MD5 e9ff740a53c25dc59afa252e3f68d6ce
BLAKE2b-256 92765a0d6d9b74e88dcd03db99def183bc9fe3f49f191ff11d6eceaaf14ef88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9648708bc00ca9458c0b677ccdf4481b6bb7233b3fef21e66670b6dad48aa620
MD5 67d3b311a3c898faee31f5202edfd19d
BLAKE2b-256 3d6b7a460f6bf381958816e32d6481dcf9f8dd23d0a96398e054408a408c7038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e72ed3443e62fd1d7209a24c4d4cf7ea68c5ba67dd04fbdab823e83fead41c33
MD5 55b2d3d9cd379171d0a99eeb1aa44552
BLAKE2b-256 52d0f8892ee3186084ef639725124329edd4b6998275050c73a2a0d9ae834674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74e5e53308b7f823ef861c3dd09554f8d7ffcfae6f8b365690bd0f2fe9b718cc
MD5 50603b58da7cef84d44addcae86dbdba
BLAKE2b-256 42f592b62650186218b742adc90f39b5ff1e9cd0234bff92133eb0619454554f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f876214e74e191e7c4d8a3610015d6bef8404a0c173327ed1f05712bf784084b
MD5 c85581abf279321abeaaeea3832bbc01
BLAKE2b-256 ece01178316279d590ff7a0a383de5303f2c32b963f5587f92fb2fa97771b5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69df9540ad87402bc7eeaec817eb3d0d9fc50053d188c405b7a0d8fe9eed1355
MD5 4734bdac9acca0b771d98851c32e954f
BLAKE2b-256 2b8e67a844673c1ff2575163b3d6805f19dbb99da7c558cbb8e0b6f8744899e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5913353f4517352b2450a267369b80b3b4c6e913bcb5f8d1ba95194e504c7970
MD5 92a03e858f00c24cc9a0f3db22223825
BLAKE2b-256 12a3abad9722bba24c7e8efc11fe8abe494d31bdc3bfbdc0f7689df2baacaa35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7097615933de024a8e43a5552acecca415939598abf223ab9e89e4ea40b7b08
MD5 1121577f9bca008ccdb3d7c877d8292b
BLAKE2b-256 4b8ce9496c975564247366d61a033f033f6d099c0dce5970475be729819fe6ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56b2997a538696ed17c834dab8abdcb61f360988492db7dd4166be38a7fdc4b2
MD5 69e0073b95a64c7782c80fb11a09dd32
BLAKE2b-256 c27dd1329450fd71f06bd60192e7ebf6698d3e3e4eeb1615538968d1edb3e8c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9994c1658cc2f2cefb0b80d48894ba0cf40e4d964d8dcba68bd67f9d5f0b2c7
MD5 d307f7f771c04598ba1978fe38061530
BLAKE2b-256 83ad27bd73045357f89935715445f2c1c4097f34670b63e0e842d68478f7d00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd2a1b6a3e0c7b13b2306cddd8af1fa092a0ad3a5a74c66a0603c949a8602d55
MD5 1203ac89ac955447e0ba3eff5a47085c
BLAKE2b-256 6255d39946ca52d0f7de7bbc05fd5200cf651c44f9e5363703c46ee54a90ca3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 957e78563652952cb35dfd0ff107b1a5075a2804c9ac2a284f4ce74e6fb70156
MD5 aa3160d4db1b13217b45e3790763c45c
BLAKE2b-256 e48a1b1fc1b76848dbaee6e9bbc57a15646ea5cceb5d5ee366849deb991d61ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9978175617edb341435f0b7324aebb89bd9ca13a7ad0ed1ce40036881947e793
MD5 852db3ac9d8925b53d809f9f7d508829
BLAKE2b-256 2cfc60757e0351ad2fe31820c274122d7a77475d9eb5d7c2a5a8c154b4b9418b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d385359438644a235bab7653d248827860bd06316e51315fe8cde78637000324
MD5 fbf177b51e05c8d5ec6bd91fea4d4957
BLAKE2b-256 c66f8bd4f9f83d4be0815c15e4ce67044d435b925b5ec0c732cb0dcdf2577a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c03c5131987c3c7dccd9e32cd6344e06a1d91a99d3319cb3f894b1ac81d010d1
MD5 646dca9d369244f66bef6426a8777708
BLAKE2b-256 efaa3bc855b5fb47d35a788f49e0334ea728708f0b7a0c38058837d829a609d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08b92687af189a1469145f5f384a9161c46dda058b40420b443de71f170c280c
MD5 9786f1b3b9b268221f0c92278f24e2bb
BLAKE2b-256 2e39e39fae0c5a8491e3751e9c39763d3f4a594bd77868a0906236f27e24a56f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12251a2366c6fb4f386f1fab0d02ca3689c705d661c3509f4df0af5669fb2e24
MD5 be68043d09bf82d1052ce2f8dbb53751
BLAKE2b-256 16d7721254573010c4c4ee1d1f0dac42dbdb5e7af109dd58e4e998f4b102f216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12bd995f9c67736d866e13552617fbe1a8623b14bb56414820c7c2ba5cf12453
MD5 bdc2ce25cfdea10aad56b63803b553ba
BLAKE2b-256 2cb05878c9aa76cd0d90f816410cb7d8cbf241939eeefd1426525d343bba4e46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ced5b786bc63b65ce17308b0bb1e275d25ec2df79031294d7ab0d47b591d7876
MD5 b20112028e6190f23aa71a1e6b0b8300
BLAKE2b-256 ebb7a0b9864ac2b6f10a5b7993f4372693c5adac8d68117eaca9b1a1704eeddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b54e56b66b5acf0bf39794fcdb8a17d5d9ef0a98ca81547376d2578768480e1
MD5 7c6ec8186ee4cf14a72c524c03f9c394
BLAKE2b-256 740a071fa964ea632115e294ca50ed445aea020aa70f7c177df6348772219abd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 674b860dca3dd5c1263391746f0c4f324b9fdbcd1c5306ec15b763e22971eeee
MD5 f3605168d3c225d165af11ac64c04922
BLAKE2b-256 4e3e459081149efaf738c0adba3a6123f5ecd0d36667e7110fddea8040619f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99c8e36b500912280910f18bdbcce2dfaa0407f7f43261d2a6ca16ee87976555
MD5 c028c447934d4ce187c88cc547a21176
BLAKE2b-256 c786d13e0f98a75340ae017bf7f870ad145a618b3693a53b44c8d602f1f1a2c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 187.5 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.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b4a4ca3a3e6ff824ed5789f5223a789f346fea9cdb7381016ebb3ab2ab26c7ea
MD5 9af701d425f60b8b51d3329056a499ed
BLAKE2b-256 fcaca0a19fa19c548193a0bbac9f6904c2cb9be4a447488596ecb1764c49804a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-cp312-none-win32.whl
  • Upload date:
  • Size: 166.0 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.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f8f5c21ce7cf59162c7e18b294ed533d47b83b52fe9b8ecfc9b32c27d843afdf
MD5 4586b9021de0d80c563d815ebd30d322
BLAKE2b-256 0625a131f3b177ed844f74c12dfd6860e51d6ff3be3e23875f6aa65a37710283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e75dfd3943f7956753e4c79139f54592601cc96a16516d513e088c5184a4f092
MD5 537c2ec0aba145cb59c1e69629ff5940
BLAKE2b-256 eae1767db038fad90b06f8bfa96320577c6b3923df94ef0580cb8e601dd50b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4848fdbdc812c6b7a8567f1e689b195ac83105a0bf24fb9b5ab0de701cf2cb93
MD5 ca2f04518155b3fde3f5b3c3b2ced57a
BLAKE2b-256 f4d67e3cf0445f47fd475ff6993a2e5fd36dc1ecf6efa28126fc94c134250d7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ffa93e0a5fdeb281cc9d03f96a5b262f2b33e5d48ac9459840cc25fead1b12c
MD5 5eea4acadb1cf8ae036d54708712e25c
BLAKE2b-256 f233547ae11be9a71820e154d3a9f4be263bb33b31694ba67bfcab7ad96851c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8436cbcda67b85057ca2fc61444caad948709e6dd8e752759d32257978d7d6f
MD5 1630d1fd9d5b694b3b26c50b3fcd6cd2
BLAKE2b-256 91c513c09c349feffeb3f69061e30111a60b9cde7d0a9f75617f653f0a06e0a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25d1a00dc51f7940f44df33dcbe6f6e8dbb5c0b0b4d53f37e0eff417266335f8
MD5 bdd88d772696c6aaa851852ccb13dcb6
BLAKE2b-256 0c7d5ebe65ade723cdd896f46e8df8167407dcdbfadb8af13dca1db01b10ab83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e2d6537f5ce2381a44bf88ec9e57f965eb8901129a2414c62db81dfbcff03cf
MD5 f5fcdc8593568cc0ffacce8780b26061
BLAKE2b-256 a5d5fedf369ed13262f357dbc60f1a1c5eaaa8af5ea7b318565086e6e651f040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 680d609ee87943f11b83c92fa9a3bf41f30147b01fbec00b49905e4c47de04ce
MD5 64f9a150a1789f4fb7391cea8064ec5d
BLAKE2b-256 07a50cc4b7efb171d014727ea10b4533a44e32c17ce5fb6cf8ca08b6f75a1739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ab9ee0ed25d389daca4f490a93c2d69f7a4d3e5098878052b8b46114da8a4fa3
MD5 cd26a5e182eec6eede95bdb7499e2d99
BLAKE2b-256 1e4ab4560777c72191e1a258494588ab30f57323ec55bc835be29004e4761195

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-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.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 97ab2306831d50e21779ecb8f1b1943cae6127e0c5f650a7c3994b7272ba8f18
MD5 89185aca016ebf1dacef9899f8c93a46
BLAKE2b-256 2514f560da0295f175c70dcaad18de8cf35a4e8c51e122e7a060dd547b0f4107

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-cp311-none-win32.whl
  • Upload date:
  • Size: 174.0 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.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 6cb0f85b931e46ac89b7ad77ec29fb5a2df2e50d8ce3290c94e634b25576da46
MD5 468dacdea9241a2e9dfc8651bc766455
BLAKE2b-256 2fcd2360205061b612e9bd5e48171b318390b2c958da1a50111b6e8dbf76cfd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4148eac5176dc8a3e9d1a6a3693ce328a34fdfd8a607b78468df5da5ca7b5bc0
MD5 3b168d6ce9eeb3ea9408273450787b29
BLAKE2b-256 71ff32ba29678d85e4892bf693d6c70a320454af1fc2e8009a6f5aeef469245c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc04641b217d999b91f86b8808a9d4e56f8d77b2e4bd5f1c4fa3593d48a0fdbb
MD5 5dcf5c85bafedfaa5d63d59da4a0ad9f
BLAKE2b-256 781c696c86ff18127cb9815e9d9849a46c790e59b3d8074ed0e53ab7666a3845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ee71d929f256338f1d6dbae53d1e214647ea549b0bf7847ce9c3fab09a68c1f
MD5 363a020ef708088250ee54a5b74f617a
BLAKE2b-256 1c23bdd70923d2f3a55e87c5128b947a275694e27189cca7e6c6aa3767af55cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47f7eb4431af12ba4840c31e16d1e146095b5b2ebc7d5342d14ca93850aa279f
MD5 c5e0f102e3795d18e53b1c2316676f2c
BLAKE2b-256 5df3335de6fbc9d847cd1f7e1e044fa756aff2f01baf92ac7edd1497eadba03a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b49da70774be85d87bf668872d6e14188ca3cb1950a8090c403e850ad283df0e
MD5 0612a0ddb1e38fbddf8c1207dd98566e
BLAKE2b-256 7525fd69b18b77770fab047a7280887997247a2fb4176d68a2cc1d7ff541eca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bd8b3169e64fe833dff05fbdb1efbd0ef06ae5a94ef3a357cc53f5b2bb5b456
MD5 ea46cdce95833d66a2a44581742b9f3d
BLAKE2b-256 ec7e911934f5a56fbf74ef462b9fef05592d9a915cafcd185b2bc6ecbe2b8556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82c69718e277e31fc38d51c9bba673d6cd3cafc102fd4551aa4cb3dd6190413e
MD5 f01bcc1c10239758db6fedb798195862
BLAKE2b-256 4634993d2b438c18d7fd58cebb4bccfe7e7862fd92c8fcbd3fbae0c3d6a236cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e90ff4281e37b777721a0cc65bddd2a69c1188d534aeb58dc8ae4d033dbaf041
MD5 0763c6141d1e232db76288f5f459196a
BLAKE2b-256 89a482c5062f2adf55ecec63d2950615c282ee6e152297275cd5453e605bcd19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-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.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0f5f16a2259a38ce9ef7423bd8b6f37417f579b12ac65d3f2284fc49d79f7e46
MD5 70a29ea4f379a74df8bcc28d4b695c93
BLAKE2b-256 0683e053d56939ca7fff917938b593f33521d217d5983067a5ac66895454b487

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-cp310-none-win32.whl
  • Upload date:
  • Size: 174.0 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.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b8b7759e1833eb659d34b457563d20f97bf6f1dda097bbe286b07d5c2aed4cc7
MD5 3a274d25e4714c5854c78ad1dee2674f
BLAKE2b-256 1c7c1ad3e3aadb817db06ec32ce942bbc716960609fbff0d14712798acad60cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 befa7dbe79b474326f4ab954c8b46f0bb25a63451794bb5d50faa374f1c99c75
MD5 d8dec69c96a4092acf219569e9d0dffa
BLAKE2b-256 647ebab1477f92d1ffcea8cdf51b7d47568844fe3670645a9240750d9e734b72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45e2fc1761a920921cbe42bd29e519b73e4bf62db12368fd6a093061bf9fb007
MD5 f61cd58440aa63b2aed62b2a50a77ff4
BLAKE2b-256 f41bc76e22e594bdb2e04e9a5ffb0a25068a7bd43efa4a4a15d01fd20cee860d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2887701b10735592060c1edffb66f041ae8047bb47c4c905abc2d625e89fc2a
MD5 25b406e77b4a59a0afd264b1831ed3b0
BLAKE2b-256 e4926a540aef3fc0f4aa45095b73270628f918904324463d13d3712b99fede83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 223d1634e1ea3ae19ad759a286ab0a7a50450febc5ec3ecfdd75c6afaf24e340
MD5 e48a2f0b7a857218633a33ae2808582f
BLAKE2b-256 8a30331e9952d60ffafb00ae3598da7a2314ba75de7fcb51d179ccfb8db737c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 855ae60fec8cabc26654cf296183d8e5e60853227fb37bafbd17948768c5e395
MD5 512cd0ad2dd77f6f53b772b1ab1b8aae
BLAKE2b-256 b21afa32a64841023afe0962eb20b5c228332c9c9f988de9998360328e3ef0b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74b628958b5a1de48522740882d660c9cef95142097b85358e43e9cf59db01b9
MD5 1a7eb25837e619c66f36d05628a90545
BLAKE2b-256 700b0c3b29f2b087244d6b23b413d0c87176afe65a0f707f24739a8e54a2edf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb6a9526ee4c79f435503a40e896b7eec097a0fd85a4c761e23b78108eae6ef7
MD5 67af1b51b0fa70bc0080a6a520ed9003
BLAKE2b-256 d9cb73e113572760fa12c27d0eeca13dd1a74094ae2cdb60e42bbd5473b2be54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3a0e9b9b2e16a5acb169300c711de78d81e354bb6504bde55cece40b28a30b6c
MD5 42bf5802ddc2fd23d636e7465288c95c
BLAKE2b-256 530b421bc89f1226655d8cc30b8e3e8c5e5e319a7887f1c934e10e4124c9dda3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 184.4 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.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 815a81d128582d8d07e6460c88378d62995f27b7af3deab7cda47858fbb773cd
MD5 47f769aa37694576cf3a87f124654224
BLAKE2b-256 f226193fb6209db9d91503dfbdfe62f8340035ace1d5467f390ace25d0c52b9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-cp39-none-win32.whl
  • Upload date:
  • Size: 174.2 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.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ee14e6fa729a2c1d4b78952759b00797e75dda04d17c3bce7a03fc6657d6e908
MD5 03605d0ad0ea72f2bb0cddf86eece49f
BLAKE2b-256 aa79e3864b324f0c0a3d9b91ca4166806b6aa683909a328deff685aee91f7319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0920a94c0cd3cf798515ec6aa1b2b2a02023b6e5b682c37f42f4d45726bc1d55
MD5 6ee7aeeb9bf8a9042ea494b4ea9952d1
BLAKE2b-256 0cf11026868e07f11e30c802975fde1ad8ccb7ae4d59439daa0da415269e8b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4a27aeb7d92ae14895e0b69462b8d1cf941695e916e388a395f612750c0db3e
MD5 298d7004020f9cdd08524dfe86c008ab
BLAKE2b-256 18f7b21101254b49a2a127f4dfb0da1d715edda977616fa265575c2ea3ef3ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3939086d921ca3c9fe322a2c36ffff218ea6822e8748db4908a35592b015cac2
MD5 b4b2312d5e3f50f6e75cecf50ab61b1a
BLAKE2b-256 1a9818797e369c720eb09ca1717b32a38648e8e5d25c04fad7bc6db3c5891c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c38b4a46e2b36a1e85e11dc1a9f7f6d433b7824c1d06f3dd5924ab26ff344f8
MD5 543d9a6e32325ef70a6c34795a9c6b92
BLAKE2b-256 8fd8e224f95ebc4ba6479d684acc6aff4e0a03fe9e4f66e72de56641d1c73301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19dc7c4cc241654770668ff5a0add64a8abe06ea1b0d438ab9159c3cdbe111d6
MD5 37424295e2d4b6e8ac12240ee8b5929c
BLAKE2b-256 a6b0efeff390ea6d59a70663ac1b1624a1083378a495062f781e28e828dff47c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 35d1414b4efb0d8f61aa489eddb430d2e4cc3ea05bdf8dec64e97470435ea5a5
MD5 f1c1a388bb168a0850ea9229999c0223
BLAKE2b-256 163e207b90b7ce535675cd696a7994b56482d0ee03b42876ccf79a60990872c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 185.7 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.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d3248de9aea0fdc89827c2c7a9492f6575ef4819e53ffe00b11a44d0d04734a7
MD5 22cef60325b6a2517ece19c1ffda0afc
BLAKE2b-256 616387599407d844513d45e51178fe385b648bd7ed56173df6593658e6cd5b49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-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.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c55e9e2409f31b112e636384063163886bb5a5fac4b31bbae372ebb7a65f54b2
MD5 19db38994329588c4c760db6b6e750ed
BLAKE2b-256 0f46a9e0fe7363a8638799baae35f186491d790881a62673ea1bc31741c9d90b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44e82c422a163d8d66ea41d8fb4e1b2c01cd3794fdd39865bc742e7a36bb2706
MD5 b734db82a4bbc0f4975c2f32371bc76b
BLAKE2b-256 68921909af64f5aebde7bb612b9ac45ae21f6a9c3030914dd69a20cb682ddefd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c37a84d92e3902833f6e3d465315ae07cb5f416e93491b18c14c2fe8959339f3
MD5 e5bfa2509fbd5a0d915a150e5fa1aebf
BLAKE2b-256 6736cb0330a41705ff7ef39186a187c9c93cdf33501d13e59331ecf1be6bf763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdb6d6d11c934bdb2e1512ffeceec7f0997a1ff45eccccd37af7f962611bd069
MD5 0fe7843a85104bcc7135ad47f82f5845
BLAKE2b-256 c9ee4e397217904fad1921ceb236489154a02ca8b7fa7224139bb6c0c56e90dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6c4eba1a8acd1c24e68cbe7a57598ebd3455ebedd9d55f85bcd9772aa1652a4
MD5 e61d9a868f4f974d11c9a8d449591153
BLAKE2b-256 3874bd94d95571eedd7b318abed1d1815be905e8a905972050e3fc29dca9b9b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 730807f996558d473a98a94dba86969d82baee629e16948bcdd8e8ca7ee74346
MD5 3c35663f259ac41b6b604f1ab5262ca5
BLAKE2b-256 9e6b67770a7a78395e413c68d7844b12b87b3ae5697fd15d1ce11f37192555e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34227bc04efaae456ba55b403a54b2631aa22885eaf2eead7e65083e7ea06b79
MD5 48632f438a60d52542331486a60fa279
BLAKE2b-256 bc8af5fe8f7c6dd65138963e74d89398cfb4eea7cfe6c40f8c594a9503dc5402

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 185.7 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.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 1ddfce8e997ec9926a8a56e4cdfab317dfc5e712190098904f994c7d6644994b
MD5 d3b4e0781227759c5e99188f7d028505
BLAKE2b-256 27e164a739a4192c0d5a305300aaed3e0f09f0201df59e82b8400598df20c2c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.3.1-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.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 b54a3119673b885cb8e6d6e65b65c60bb435f34f25fa6afd20d060f8e26ff70d
MD5 04ed71de1cc305d5d98d1ecb54edd477
BLAKE2b-256 87c9b411c7d11fd5c9d029a581dc045b5cf7ee46a2d226d753f635e60b643bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a652884b1e5acb2859e63b5e6d503579e6e87f2941482cfae04d7d586b446b03
MD5 5efa56ec8365d85b1f6e85e9546a7922
BLAKE2b-256 cfc6531b370f322943b01706e101de800d87826ef314ff99bbc7a4137ec5a09b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0aac19cc21f9cd650f5d8ebc33e96fafd134c55dffaa46bdee410e459d90f731
MD5 5d69c6faf5deafe473d0b1f7515e6c3d
BLAKE2b-256 77f1fbecc7163fde0f263b309271abe356e3fcc5cb356180e6f5d396653146ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c52566d17c7785ef77c34afdfd21c73b6e63cb6f584bfcd29b6f65d90b2c038
MD5 25582e100ca1ecf139c3403778e440c2
BLAKE2b-256 8dc28abf54ec6dbe4507bb6bdc1d5edcc94f03b4ecde5fe44d9de6e31c0fd9f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc94e803f6935357beb0fd9d46b3812fc7885fa458f9992ed89b175fe8194989
MD5 d454afec0954c10188066d3e377be0a2
BLAKE2b-256 c51fef765773b032ef348a25ab48c2f0548fabd50359ec86cc8fe77e7b9f2f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9113f81890f0f078125e8fb80f68307e095ad42ac16907663d6b288f39d72c4
MD5 b47852dfd687e50cfdf8ad822b12cb2e
BLAKE2b-256 8378ea3ad37ec681590bfe8dfffadd9984b63c7c0ba0c3315ffb63ce73939be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 606eff0cbd9fe314da1a7da8d6d9aeec517ba8a7f03bec2f8ee38fc5343a24ac
MD5 fd92324bf2fb89c8224ebee2bbd1286d
BLAKE2b-256 26ceca76376e159854b49ffe81fc374030fc5fc3e5b80412b7982868e4dfc37b

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