Skip to main content

No project description provided

Project description

Schemars

PyPI version Downloads

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), Marshmallow and Pydantic, 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, DRF and Pydantic, 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.4.0.tar.gz (35.4 kB view details)

Uploaded Source

Built Distributions

schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (433.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (297.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (433.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (297.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (433.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (298.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (308.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (290.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (299.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

schemars-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (432.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

schemars-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

schemars-0.4.0-cp312-none-win_amd64.whl (231.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

schemars-0.4.0-cp312-none-win32.whl (201.0 kB view details)

Uploaded CPython 3.12 Windows x86

schemars-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

schemars-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (432.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

schemars-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (287.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

schemars-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (297.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

schemars-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (286.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

schemars-0.4.0-cp312-cp312-macosx_10_7_x86_64.whl (312.1 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

schemars-0.4.0-cp311-none-win_amd64.whl (227.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

schemars-0.4.0-cp311-none-win32.whl (209.2 kB view details)

Uploaded CPython 3.11 Windows x86

schemars-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

schemars-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

schemars-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (306.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (288.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

schemars-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (297.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

schemars-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (286.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

schemars-0.4.0-cp311-cp311-macosx_10_7_x86_64.whl (312.8 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

schemars-0.4.0-cp310-none-win_amd64.whl (227.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

schemars-0.4.0-cp310-none-win32.whl (209.3 kB view details)

Uploaded CPython 3.10 Windows x86

schemars-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

schemars-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

schemars-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (288.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

schemars-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (297.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

schemars-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (286.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

schemars-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl (312.8 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

schemars-0.4.0-cp39-none-win_amd64.whl (227.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

schemars-0.4.0-cp39-none-win32.whl (209.2 kB view details)

Uploaded CPython 3.9 Windows x86

schemars-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

schemars-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

schemars-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (288.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

schemars-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (297.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

schemars-0.4.0-cp38-none-win_amd64.whl (228.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

schemars-0.4.0-cp38-none-win32.whl (210.5 kB view details)

Uploaded CPython 3.8 Windows x86

schemars-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

schemars-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

schemars-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (308.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

schemars-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (298.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

schemars-0.4.0-cp37-none-win_amd64.whl (228.8 kB view details)

Uploaded CPython 3.7 Windows x86-64

schemars-0.4.0-cp37-none-win32.whl (210.5 kB view details)

Uploaded CPython 3.7 Windows x86

schemars-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.1 kB view details)

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

schemars-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (435.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

schemars-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (308.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

schemars-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (289.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

schemars-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

schemars-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (298.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for schemars-0.4.0.tar.gz
Algorithm Hash digest
SHA256 b9f85eace7cf895fe268d6dc444d9e807557731bc5649625666aa811e6332cbc
MD5 26f9e0b13c937773663a75b76eed7955
BLAKE2b-256 1f925239752d47c52e471724b067b2345e53fc099f0d085e0d9b848f5518ebff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e683dac763091b1372f3c7997e4565525b3d84bc9bbf8ffd5ea47b62fbfff9d6
MD5 93344e220310c3067d30877eca2e5bd1
BLAKE2b-256 e88e2f3d82b6ad38d576e02c3a30eef6954d8597579b90a2a94174c1382a5064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 513fb898f3e4d39e2bdefd4505a08109327eddd667cb96ca661e244aa037b38d
MD5 5988691c742ce6b6ee9f7a27c0ff7944
BLAKE2b-256 32a9e7a467b353f6e7cb02b4fbfe44df1ed12915c31c9ece61e3b0fe481d0f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dee4ba816368d61e884a2c851a026302ff1461f10a094ac5f5b368dce753adb7
MD5 552a3171a8bc05616816720a0af3bfed
BLAKE2b-256 8d6ab788172d8f98aff3363cef29999661d180fe568ce2d5303c54e1beb7615c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 149c9719906746fec975726078d5768fb072a86e8a41ea4d996c66102ec00289
MD5 ace7b5f298ba409cc74a456272b59768
BLAKE2b-256 e9cfa77ef156059fb17e167544b3b53a2423e32790e1f4cd9f3ee4600bb9f1f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0ffb7c97a431ccccd1966a5b7ab28e5f55375ec009a4ac4815191f1e1d87897
MD5 4234ea884455d99ad5a1be8dd05c4062
BLAKE2b-256 f180bfc2ac7a6363e95d29033fd229f0fc10eba4a295dae615cf79a340f8114d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 78253e41418e90c5f0f48f463186ae9364d73793dc70700f5803c837c3107dcb
MD5 33b9f91e9dfdc38bc43419d14ff26d16
BLAKE2b-256 895f136f11b8d5d514bef5c521d438e31f0cda02bd2ecfc6f0a8c31fd23f24a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b3fd1a1281d08f88e63f03e232a07d6db5e6f2ec23ab4176be5750e6d79229f
MD5 fd3c0b8e259c0abc479c14dffc25dfb7
BLAKE2b-256 c5360df92cb80998a31bdf727aa950b2bbdb04a4c2f3e4e2e30bec1a43e7eaff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96c667bc40c3439f68ed9e7bda0f104ff60013cb20cdfd331172e26e525a0a20
MD5 a43a55f04cf48ec2648900fcbcec3c4d
BLAKE2b-256 7e82c70a818fbef0ece76ce63a3c468a644b2d92bd841622751ed966508f3789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 996aa9c61652e481be0f123dbbbe8324b539435ffbc6b624a5955fcbb25a7e12
MD5 4d4c82d55b53dfc49b715a249eae1069
BLAKE2b-256 6731644aa24d0ab0d4997f4338bbd11ab2a130c1c5794675a86a39d016098808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b558079624ab028b7b6ace4a6932d2233691ba631ab116d5fc7e766f282d6064
MD5 4155e10657aa669f356eaad931a3ead0
BLAKE2b-256 3fa539ccbf93c3c1eeb837000af32bf42b15c41919c8960f39d0cbeeca5fc806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35768415ab65da94e3f1e1e95abb8f302a315363cc8fd0cb0fee34284c18271e
MD5 63bf905a09223560838da289938971f0
BLAKE2b-256 1d7a10be4512fa567fb99fd0becba5247822e52f3385430f3a2670d4e1088521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 701017e765050e26fe9878c908054280cd657c63fb32ab53777789fa63b2558c
MD5 0e01355efdb463b0e9e4ad56a67fec62
BLAKE2b-256 70e0593614eb81f52cb2e91ca61f451131f54255135e0bfb2763536112ea4510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ebcda0f841446ab14e9ec057a3c531f9f5306ba74c588d871722689aa8e4a7e
MD5 7fb46ff998256e75a0e75244f8f2b3e2
BLAKE2b-256 ab832f49732c758862e1c942e38c31c2be140971d74b8fc6ec0c26b628beca5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 404889269719e553a13afca98ccd2cfdb36b8a2b31ff1ce892d9dc5ebe871a53
MD5 43e466daa28381cd2f82833e995c14eb
BLAKE2b-256 0d2cb77e3bd99393bdf8cf54e74865c3a40594fb3c9439edef4c7b8749a63815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d02dac3af228783c157f2ebed2294e24d4943bb6968bbcfe7310b75d97b0db8
MD5 d935960e57dcb1ea4050215e3cb67d8b
BLAKE2b-256 12acc7901c5f6fdfccbf20e4470c0c1b70a9eb0df053d080dd1c5f2cefbab4c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eefc8594654f974724f45be18ebba0d9ac47341447a6e54e6ec0e3832bb2b951
MD5 ee342402e104f74d053db857b6be09c7
BLAKE2b-256 507a3e78af29becb3f7c8c2bed7925635962fc3adbb1db08c2a151582e1703a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13f0708bcb9cc58ec1c90f1048321dd5c0d30f1562709b0e7746e172ec06210c
MD5 0f0cc4cae072c055af849f8310393ff6
BLAKE2b-256 6ce33ec396e173b6a01dbb553cc578608a0f2aa6663f060201c6794940f634f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b28e29cee8ec09d74d2155bc0b7285664e6f2d1dfe2df8b0843ba7029d7df882
MD5 180577a8f5fbacf35b8a2e11c71581e2
BLAKE2b-256 85d0c7fc93e457879b4919bcd4d883102c8c71ff36b514d02c6f277ff72e10b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c54d1620643413d95b1efc41ebc025ea0280487783bdc8309f29c85ed9931f49
MD5 5da72e6f0899d10ef8296946053627c9
BLAKE2b-256 c6dfb281c1165633a915f4071e3b94b866ab6cb2a80faa3d1678d482d31c80b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5af3ceb5c8669be408c48487fc04c97fa67723ab69b82a565638deca2924be88
MD5 f9b6ac9ae2e31a91fc8637b982eff1b1
BLAKE2b-256 7ab1289a68fb80bc360ed202be44e121f282833f90fbeeea13be85c2fc73da33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b35e970ef40436771d16bc29de4b9b99c8c4ff451cfd0e20455906323f7e3ab8
MD5 3bc5d7592254e6ef2090e001c4989697
BLAKE2b-256 cbe88b5d29f245c2f0d36cfa4cd5b8dd6e73a7116460f9b54a178ec8c5916e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1921040c3ff5d0296c7f17cd466514d3e837d7e9fa8c5b477f0b099b81ec1584
MD5 423000de0faec00d4c144f718e0ecdf2
BLAKE2b-256 b648baf030bf4ea7af92a02124a3b4f2ee5f9311b29ebe1ffdca973561bfb19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dea3a2764b0e025ac98154b7112101cacca28fa50aece2cf0473c261f9841bc8
MD5 d6eabf87baf12efa067b86b91d9ee309
BLAKE2b-256 f52f17ec552e02b72f8818f2e5240dc1e2f7176eb73cca60809967c140ea64b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a5701df1a961c368861ee5451ccc3c35ed8896c46b3ed93c672e349448bd5af9
MD5 d21cee496b1a8fcaa7db06f86619561f
BLAKE2b-256 38fe72bcf243e1762c0b48448eaf638675ed13199f08500a142e7e433464056b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31e61dbd18a8f34918b46c9053bcb1a35e5def4836bfc5f08091a48fecd29fee
MD5 e3b47b716d16d37aef8368aca2cd7d0d
BLAKE2b-256 5b48abc69e6be0cf3145bdeaf73136d17167a9bf8f007a5f4fba60ee203bf6e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d1fc511d9f9600bd6bf7047412645e8ed413c3338307da5b22b1e4b9644af57
MD5 f67bc40f1e497c4781e1a7ff2b2f1967
BLAKE2b-256 f92c8396e2b87ebb945e370169e9cf3e80187521c3b02cd2ce23a39d18f5aa60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 712c2a967750664e84baff38dbbac9b2fa4f8cf115a699dfbdf115e2f448140c
MD5 c22b193d14992696f240f8ccac2e8c78
BLAKE2b-256 fc6a24a9ca88c5360444b3d26fa380f9391eee312d4b4870f7bfc9892f9977d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ae9c55f52d758f3e9f8b86738ed186c2c1e5859371d01c7a0813044460423c0
MD5 f7c6494aaea63856e570b42d0febdac6
BLAKE2b-256 3e91704d7cc3ef985d40d83c8e56d4f7b8d30888a98bc548d3d2f2f6ae794b5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 103bafaa1832b79d7b5dd8071c23f547446ec5cdafc315e5a5db1f02aed0c98e
MD5 8bbf82cdd5075ebcdc2c216b4fda1e11
BLAKE2b-256 2a72332292f7279a6b8cf69986c1a8c9d52b52b01971efb694413faffb7ba0c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.4.0-cp312-none-win32.whl
  • Upload date:
  • Size: 201.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.4.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d6c314613629fbae56434ed31a71cf16bb5a88268885b505f0f0211e55653d84
MD5 c065d6a129cd22fa9ed8edcc7a53b0d5
BLAKE2b-256 83463d0eec8ecaeb77f9f66973f1ab45a0f7ae40d23673507b593d7ee8823d53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7771f3c87192ec5a97fe351c5345c969abaceaa87354b4243e12c4ff8a7c1d9c
MD5 00781ef358fc3f89c1f9a1a147043c1e
BLAKE2b-256 125ab26b3fc3274349058170eb5a897d571fb208fe95f51f21254cf576986683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc40bc5dbc42d940abe3b5094ce496c8be5db01f0e0cb55e08c73dd02d24cc0e
MD5 84fb8ada60fc713b735eb37b57e7168a
BLAKE2b-256 afbb7b9f34d3570ae87461bc12de055f23471e151031bf4ea3d0c4f1248f30f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90de9681fda7a6962e998739f325e200805377ea4fcb951c2e5c159352f96bad
MD5 1155ecb689c65a402cdf4cc1956f478f
BLAKE2b-256 30541fcb2fcac5f8942e98464f73103fc9696fe52c81583cd4a50da816da3017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1bec0bcd025342a10913b642b7eb431f1967913ca89a65844c7fa2aa8ec1675
MD5 2f24fb598ae9ad1e4a817e6e08c706f7
BLAKE2b-256 2d2b0c4992b369bdce7f302e7cd9c216f2f2d19a77c812ecc5b59a36f16d855e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d0bcb3fc8327286093c349d601ddc1fb2dc5ec59ac544e097f699e944aaa974
MD5 5d92d5b5150d33a0640fae95bb6fa7b7
BLAKE2b-256 f1d487c8689eede9d89ff31aed5f91e47475b19163dc6540055b724391de794f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7da6e7c74e11fe02a45f70241a52eec00f1db766d3b478461340d6f3783b553
MD5 16af8b0abab555d32d86198538366e1e
BLAKE2b-256 5fcb97fa55641899bb86404f3db3b28851563e71ca2e029df286bcc4cdb11303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d3da3b8d0354cd233bf3b8227502c83253adb63a44a9d4dad854384349240b0
MD5 c48a694fbbf7f468c05c6449cd9bec76
BLAKE2b-256 bc9eb9827fd4aebf60034f32adfd5a87046964f58a4a3895e1388893991ee06a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9c9e9cd6f60d8c9342f387d89296bc59dba50f65085aa1d8123d3b6943f9d25f
MD5 26a57784ab1a55b393c4a044e6651f7c
BLAKE2b-256 608a904e9c62683a5493164f3b8c9f5ef3a7ff1f40c19c5f07541be45c31bf4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a89aba514d5ece9ed21a48408ec2cbc851126d46c44d810eb6a25f7e1e1f6260
MD5 6b06c92c709d293b99756bf047bfba2f
BLAKE2b-256 b7a1457c480898280fd454aba333c7991a57e7d87295cbf431053f040c9b31fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.4.0-cp311-none-win32.whl
  • Upload date:
  • Size: 209.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.4.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 33bb8b8f43b560ce647dedb5d998810d9f3bf740b39361a94fc62e2444adca69
MD5 32f40b816b8cad6689224062ed9cc77d
BLAKE2b-256 5a09977ef1428c807aad40b4a60b61dbe1ce41054620f6ebb528def0388d963e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53651c027ad2fc395591d92bc54c4053f874b003c0ef0ce28663d9671f388dc8
MD5 11354b80232eeac4632a41cb82db051a
BLAKE2b-256 158b2bc05c90bbe0a55fb1d7bb9b19e62af08f9adc9f05a785a2cfb58ebc3b79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ee0e3ea1a85ce3c0e7b32f7c8d6d72dd090178cde6894311bf4ad0eb735a3b13
MD5 29476895c300b17407878b04c55cc235
BLAKE2b-256 4cb96ec9f36351b96799f46d21769a626197405f95cf86bf6511cdffeed6d040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbccdaf94deaa93e48edfac08d266e050098df855e1671074a610a125ce3d3dc
MD5 60aaf49e47ee726d4f2fecd607f80773
BLAKE2b-256 63a4b690551a7b8cea12ca2f844fb10214e71b9752560cac1810782f3f8a6176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f7f65843256a29b7e17de4a259b1bb86be94605de8d5d50fd46f7f997f426ab
MD5 152690f94e8da8fe88c9d65cb08057a8
BLAKE2b-256 849a116c7dc26b9d9d84d34ce34612d1e6fa43b0d53cc63c2abef5fe97f19791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 908d17b491a98715f79810a699fcbca72cd32a1053d2a2729b33a56cc8ec49b0
MD5 5917c41f322ebb8103f51546c85a65f8
BLAKE2b-256 79945adc7768c9832b2adb7b961f0e30d8013560296ebf745f98572063b14f6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dcb1d6e57857cc4f0cb9feb4c20e8e39667b8b2b1cf20f86f67be9abc34a1f2f
MD5 fd1edf59efdefc333927c1052de8ca56
BLAKE2b-256 e24535c051245697b02cf6410312817f86dfea141fb8a07467b5a789b18372e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cebd696e067233e8cb3674ba5afa729e0312ec93a69ce1c5ebc3ffa58e21c27
MD5 f420360a01d10b31215f8ca6ce847f3a
BLAKE2b-256 0b1bc8a198de192932a558470898a9aa75a234619a65fd901c56240f9e0dbc66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fce679f792172ff4da025937453376cd260f693f0d6529f97b6e71c4c164c201
MD5 e17f1bcc810fff6b1a250219d33a31c3
BLAKE2b-256 62c99aa65fb65c6f81cc007fdb1cb4daad8da8cfdba31e6632e5b7bab80a9d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1c04fe8d84a5069784b5ae80bb426d9e4a15d4815e3c4dd8a903a2cff8d45d52
MD5 c0010d31d2aa8fd44c47f962d4a538f8
BLAKE2b-256 576cd3788137a6c6528b9aec031a1491e01893d465a9f81dc7cf25be288e0174

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for schemars-0.4.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ea2c06be482792ef2f60568addbdf6b1d584bd50a4721dbc81def1e0d73f8894
MD5 02377f3b45a8faf674984dc11b0a61c8
BLAKE2b-256 cd4d3755a78cebaf1bf009304b90496317f65bcc1ac4d55f694dafe9a9092ec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d73614e1081353db257bcdf67ea1a08e3d50440332dcdcc848828806460d1ba
MD5 5a8679d7eee2c00394cf821aa9d32ba8
BLAKE2b-256 671762a208af0e23292c4c18bb90ee0d525b70735622f5fd361d7001aca13c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32aefefd763bef4dd4f01df1f809ff4f51930eb893ae9a71916a25e3d5fceeda
MD5 6a5807787465e97c21bd4ee7cc8057a3
BLAKE2b-256 ca72799bed1efc29260d4d61b7ad50812f5523bebfd85606b4eded2b41b4c52d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc7b57d7a5c2ad830ab2be827343763415ae14a4f32d89f4d9073eced793c94e
MD5 4f5464d64d87041eff4229b30e925a16
BLAKE2b-256 2762f453ed31dab93af850410b7e218c68c6fbbf2ebc1ed7c5da093b2df1b671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bdc29ff8cddacb4fa9b6ebed611a861beae9fc4e260055ec9bfd6b835b3710e2
MD5 b5b9951462898b668bc9c6ffcd7351da
BLAKE2b-256 bd9ee944af92cace4f3272758deec4fcf380c2a1e171bf1c399550dbb0f94f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc92d7b2773b0ed5bbf84294948c4a99fe28886524df8bd5876ab009d5d4d060
MD5 438fd375caa33a3e4c84a5363519230e
BLAKE2b-256 7450f00d5c0e741eb029779d2d22adaed375f9a79d407ffacfeeea4b3d7e419f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 202c6e579ea9c0a609187f46eae6d82ba06445aa7c0118a0b53501160f65cc50
MD5 4ce2cfac8c745dec7fbac56abf10da7c
BLAKE2b-256 96c119fa161fb224b3edd8527c2d7b25492e3847f0b796bdec203e5f94854162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e2c97d84c908ee21e068859883fb200617495d53eb4e67f6bb7ff4bf5cb74dd
MD5 0c1bc12f9260ea4422044a7c9404cd66
BLAKE2b-256 e1b98abe678e1fe5bfbdc5b728144c67230975b90ec532392d3b014639757cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6d58f63e4e88634ef15bf1e88d9a0afc56bc9dc7e2bfc2a4ff9b9f88a18f8ddc
MD5 b9424fa32b0979c0e46b1052fa43b4f6
BLAKE2b-256 a30afb034ab056ec23dce4cf117cb015b25b52169d965434f80590376378c95e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 6c50eed28d529c24fc0a491a3f518850ff7b6a57771bff6d534ef18fd4123039
MD5 7396c6df467188c9dc587efce7e9ada6
BLAKE2b-256 9e110b773f8f2bf1fb93f4f24080f6f9407356eea5a87786fc486e63c6060979

See more details on using hashes here.

File details

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

File metadata

  • Download URL: schemars-0.4.0-cp39-none-win32.whl
  • Upload date:
  • Size: 209.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.4.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 629e0920e5ca04141cca8ca4454218cb152b113575c75c226b2a23168ad84dec
MD5 994ae1b476766f249604b624569a0251
BLAKE2b-256 1e51f0d6b2417eb303a0bf4c41f01da988ff736ae6eaa0212fb77443f453d867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a0a6c17142987c63d5a253c0aebb06a925f841c2ec3b3424b9e792c277994b4
MD5 2fc203792971ab1a58f83cd05a8b43fc
BLAKE2b-256 cd595f436ced0b1e791c45f9baad32c1bd5e14820aa865149febaeb418b7c16e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c607d2962088e3756133909aaef5e385cdff1ec066a8c8987841e6869da5a7d8
MD5 fcdcc43f5b7f44e36e142ff046f2a1d6
BLAKE2b-256 613b61979b03cc4f754ff1b07c5225df3a48f2097f97fb452a92d29af45f57ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9bf40be26472f91a2959ca58c3d689b7c7d0e817c37f60837cd82d69e80414a7
MD5 8df1536e309d0639e62c276fdde2f03a
BLAKE2b-256 b302fbdb37fed2eef248efab311eb25e667d0b3e58d5d1ea094edaddcb6ee7bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 042edcdc17354f1362fd11d3717a75d1c9848660d359a5090a0c5e0107595734
MD5 421da4843dfbb903a3ad04e4c7ca8aae
BLAKE2b-256 480928e886629ff80ea5e092fa11b8e4331876ba462fcb840e072af708ccf4de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 461d886815128d39323739eeffdd2f0105f8cab473f865a59e00dd649661d0da
MD5 d18253aed0b8cee0ef9f30b1a9477b2a
BLAKE2b-256 87c3dbde4b8f14484e443ec5f1dc591caff8d22e6163af09f6e699d130b6430e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 244d8641ccd0bba88d8a5285498ddea1bc7421f6f9d9eb89ebf4c51a5c58ac74
MD5 b10a6f174a515d6f16fef72fa7625e16
BLAKE2b-256 b76f4f37cb36a8912c2cdd277e1d044ca745f53e80b8539a787e541f6de8f1b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 dd70ba7cecc4b0c49e9bdf3f8ae4f19024511e6a7a08548313b3c64ac560c4d4
MD5 c589e8ff5e2342acf2f7d8fd279e35ac
BLAKE2b-256 fdbe99e99e070c6e65f39d0cf9bf9d07fa007e7e0c72af579078d7f4b8230dbc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for schemars-0.4.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 741d5275bf8460760ef926d29851333c1b7669d0f382d2ab841888c902e71ab7
MD5 650263943b06f022b93f9f0d02ed2e7d
BLAKE2b-256 50dcd50404b4f8bbd6465d0aed207276d633af27db5b2f557bbba476f3a7e535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a11a044a5dfb92f57ba782657a63500cc0bdb472e1c26b8c7eaec0969e7334cc
MD5 e1c64dcafffe1822d1876446a81b586d
BLAKE2b-256 b2631baf9ab59afac4498bd6ec286ce81f1833acd84a99383d8a46ff1c4fe57b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e536e43ff9913e7acf5c73f13f99eeadb9364d81de770efe1a983b0a5c7865b
MD5 69b6bc9f2264d7a8af8ce85e0ba67073
BLAKE2b-256 dbf23b3fb7f00409c7128d509443e67f04734523d2102d09163f612ab71ba985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb9073480724378b4d33aa3bf72796807abe8648def39b5259383c6f764b9a7b
MD5 2b1539919409a933f182fabf5d26882f
BLAKE2b-256 77d026fdb1d064d85d5f06a09f61aa2ff5e987dc1efb2b39462fd69c8013220b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4dd0b12e57c05483d1b520a2bcb8983c303d53150e946360a673cbbe73b370e7
MD5 f8ffe493e8ba3d5213241b56c8233a29
BLAKE2b-256 5d546600da7ca0349440ef3e415d2c149dae5797623febe8243930da2c65cf8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de2e309b79632afa0bc786e9616ef019fe37d2ec097ae6f2a48c849d2fde1a55
MD5 1a6ea71ae0614ea942079ad5599d91b4
BLAKE2b-256 e1e90df21fdebd2898d5eaab1e33c7dc1c4e5b34e458514e45867af9875789de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e684c88e18562d4b548bbc1d23d1f3e49c43085fd9fac1016c1402440b41a41a
MD5 71274fba0d88b3cac964c660d2eecfab
BLAKE2b-256 add983c8e18be187fa7b02862de16e95c8f0ce9ab49c9acd1fb65cb0da27efc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 cf0afbd68b1eb68338e2b40eeb1d54643e333cbc9abba94e3d96218f157b37fd
MD5 d7be8ab91e12d14a7939df43770ca0ec
BLAKE2b-256 848059cfee5727e2f66a88e58ab2bc1d3d29b1e8d0463a0a1cba5681999e1236

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for schemars-0.4.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 8d24cd6c608347f29f8d7b081bb441704c93fe2e72492bcc5f1bf1f2f249acdb
MD5 5323512831a463cf0ff6b3f17021dca9
BLAKE2b-256 de999c5f308d551896a306ee7010717b339fcfd02139219a0b4815a25b293e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ed384855b8624584f0f5309701192bf214bf3a5d915612024b0e1cf75744bd8
MD5 a8a6c3a5aad29a672b69090315aad462
BLAKE2b-256 12daa82d2bb055b0df6e52662ca1652c2ef28955d71bd1ed88d2f1e897ffbc60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51f2d9a48a2461d871116451b05dfb8cb459c00ed945ded56481ac965d62e88a
MD5 25cea9fab5a609a3f82eed6c21250428
BLAKE2b-256 3f81b8fcf9285ed0805838c001638e1708d7d6b071ed16f0a1d3d2ec08934ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c579e272acaeec5f439fd944e17847db2f3d568c480f22b684b76c0721d59e8b
MD5 2061e42efbcbb0345e79fbb421b65283
BLAKE2b-256 8e95b724550a1a1910e439bfd6c7665732faec867d3aa74c710d254af7709225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2dd867ec046393c80e585b11e92d679c58e1bbe5d20dadd1f3dfd2e5fd40445d
MD5 344c4ffe1451d44e8b289db28f8997c6
BLAKE2b-256 e4ed701afb32523830b854696d432e2ced3e13bcd193857a3af3d0fdbee03bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d81cfd578f9601b383e27c2b911e2425ad98127dcb17da8c8c5559b12b7f5c88
MD5 a0649c7cb75f1c19fbd3be2f4e4582f2
BLAKE2b-256 67078aaa5367bc1cd55fd436eca064d05d86337c534f5194a0944cd52443f2af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schemars-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 507d99c260507f1a1cbe17aed420d16cda48acf14520b2167a714639b7b3ea9e
MD5 9cc7486653f24799e535c076890b4758
BLAKE2b-256 3f6a23033e19c004579ddbdeeb3af3f2ab379b4636c21d7aa630034be24ac3a0

See more details on using hashes here.

Supported by

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