Skip to main content

flask-inputfilter

Description

This library is a Flask extension that provides a simple way to validate and filter input data. It allows you to define a set of rules for each field in your input data, including filters and validators. The library also supports conditions that can be used to enforce complex validation rules. It is designed to be straightforward to use and flexible, allowing you to create custom filters and validators as needed.

Quickstart

To use the InputFilter class, create a new class that inherits from it and define the fields you want to validate and filter.

There are many filters and validators available, but you can also create your own.

Installation

Using pip:

  pip install flask-inputfilter

Using UV:

  uv add flask-inputfilter

Using Poetry:

  poetry add flask-inputfilter

There are plenty of wheels for all major environments and all supported python versions. But if you happen to use an environment where there is no wheel prebuilt, you can use either the python implementation or you can install flask-inputfilter with the dependencies needed for compilation by appending [compile] to the installation commands above.

Note: If you do decide to recompile PQA binaries, you will need to install platform-specific C/C++ build tools like Visual Studio, Xcode or GNU Make (non-exhaustive list).

A more detailed guide can be found in the docs.

Definition

from flask_inputfilter import InputFilter
from flask_inputfilter.declarative import condition, field
from flask_inputfilter.conditions import ExactlyOneOfCondition
from flask_inputfilter.enums import RegexEnum
from flask_inputfilter.filters import (
    StringTrimFilter,
    ToIntegerFilter,
    ToNullFilter,
)
from flask_inputfilter.validators import (
    IsIntegerValidator,
    IsStringValidator,
    RegexValidator,
)


class UpdateZipcodeInputFilter(InputFilter):
    id: int = field(
        required=True,
        filters=[ToIntegerFilter(), ToNullFilter()],
        validators=[IsIntegerValidator()],
    )

    zipcode: str = field(
        filters=[StringTrimFilter()],
        validators=[
            RegexValidator(
                RegexEnum.POSTAL_CODE,
                "The zipcode is not in the correct format.",
            )
        ],
    )

    city: str = field(
        filters=[StringTrimFilter()], validators=[IsStringValidator()]
    )

    condition(ExactlyOneOfCondition(["zipcode", "city"]))

Usage

To use the InputFilter class, call the validate method on the class instance. After calling validate, the validated data will be available in g.validated_data. If the data is invalid, a 400 response with an error message will be returned.

from flask import Flask, g
from your-path import UpdateZipcodeInputFilter

app = Flask(__name__)

@app.route('/update-zipcode', methods=['POST'])
@UpdateZipcodeInputFilter.validate()
def updateZipcode():
    data = g.validated_data

    # Do something with validated data
    id = data.get('id')
    zipcode = data.get('zipcode')
    city = data.get('city')

Generate InputFilters from an OpenAPI spec

If you already have an OpenAPI 3.0 specification, you can generate the matching InputFilter classes instead of writing them by hand:

flask-inputfilter generate openapi api.yaml --output filters.py

Or programmatically:

from flask_inputfilter.generators.openapi import generate_from_openapi

code = generate_from_openapi(openapi_file="api.yaml")

See the OpenAPI generator guide for all options.

See also

For further instructions please view the documentary.

For ideas, suggestions or questions, please open an issue on GitHub.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flask_inputfilter-0.8.1.tar.gz (94.7 kB view details)

Uploaded Source

Built Distributions

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

flask_inputfilter-0.8.1-cp313-cp313-win_amd64.whl (485.0 kB view details)

Uploaded CPython 3.13Windows x86-64

flask_inputfilter-0.8.1-cp313-cp313-win32.whl (455.1 kB view details)

Uploaded CPython 3.13Windows x86

flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

flask_inputfilter-0.8.1-cp313-cp313-macosx_11_0_arm64.whl (538.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

flask_inputfilter-0.8.1-cp312-cp312-win_amd64.whl (491.6 kB view details)

Uploaded CPython 3.12Windows x86-64

flask_inputfilter-0.8.1-cp312-cp312-win32.whl (458.0 kB view details)

Uploaded CPython 3.12Windows x86

flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

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

flask_inputfilter-0.8.1-cp312-cp312-macosx_11_0_arm64.whl (546.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

flask_inputfilter-0.8.1-cp311-cp311-win_amd64.whl (493.0 kB view details)

Uploaded CPython 3.11Windows x86-64

flask_inputfilter-0.8.1-cp311-cp311-win32.whl (458.7 kB view details)

Uploaded CPython 3.11Windows x86

flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

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

flask_inputfilter-0.8.1-cp311-cp311-macosx_11_0_arm64.whl (550.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

flask_inputfilter-0.8.1-cp310-cp310-win_amd64.whl (491.3 kB view details)

Uploaded CPython 3.10Windows x86-64

flask_inputfilter-0.8.1-cp310-cp310-win32.whl (459.4 kB view details)

Uploaded CPython 3.10Windows x86

flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

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

flask_inputfilter-0.8.1-cp310-cp310-macosx_11_0_arm64.whl (551.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

flask_inputfilter-0.8.1-cp39-cp39-win_amd64.whl (494.9 kB view details)

Uploaded CPython 3.9Windows x86-64

flask_inputfilter-0.8.1-cp39-cp39-win32.whl (462.4 kB view details)

Uploaded CPython 3.9Windows x86

flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

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

flask_inputfilter-0.8.1-cp39-cp39-macosx_11_0_arm64.whl (557.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

flask_inputfilter-0.8.1-cp38-cp38-win_amd64.whl (505.0 kB view details)

Uploaded CPython 3.8Windows x86-64

flask_inputfilter-0.8.1-cp38-cp38-win32.whl (471.4 kB view details)

Uploaded CPython 3.8Windows x86

flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_i686.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

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

flask_inputfilter-0.8.1-cp38-cp38-macosx_11_0_arm64.whl (576.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

flask_inputfilter-0.8.1-cp37-cp37m-win_amd64.whl (514.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

flask_inputfilter-0.8.1-cp37-cp37m-win32.whl (477.3 kB view details)

Uploaded CPython 3.7mWindows x86

flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_i686.whl (3.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

File details

Details for the file flask_inputfilter-0.8.1.tar.gz.

File metadata

  • Download URL: flask_inputfilter-0.8.1.tar.gz
  • Upload date:
  • Size: 94.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for flask_inputfilter-0.8.1.tar.gz
Algorithm Hash digest
SHA256 719a9813e6e00fb1b0ccf824f949fd666554a6625d4cc4a6f6729c3d3205b407
MD5 65575b941576eb86efa8faf571199526
BLAKE2b-256 b6b2e591893d85953686dd0e2e240e9a56a15d3d00e6028c753446609eedeb6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1.tar.gz:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e658636b4315837dfb3dfce42876d149be9be8d73c79939c347516eebcea9f7
MD5 6f9d34b35e909addc04bcceaf16f6618
BLAKE2b-256 54b4d5f2c4a7e603cf485675d7223a61ca24ca422b4cb22576c68b0a3b75ea17

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp313-cp313-win_amd64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 33c5c29e75b74a513e8c84890f3c8fcf221c9ddd308745d06581c19d4ea80bbf
MD5 5218892334d7141eb88466cbac2bb749
BLAKE2b-256 0147e7675201eb1d260fb6d4cf1fd1a7fc43a51e6794baacd6e1b402723381f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp313-cp313-win32.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8560d414093d34233d8d1220d10cad8bb5aeeda2a267297ce6caa27e1cdf358
MD5 118049db4068e763c1c721d11dcb76d4
BLAKE2b-256 7aa7a9d41ea6805d4485cba9e9c01bbe7f9797d42d2bedf7594d1c5f8e130c2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad33377d5553892a18d0f7e0addb1a6dc738ea98fea75f00e9bfbc785260e36c
MD5 380a4203602136494b260127259b0dda
BLAKE2b-256 b08014965c27614428b1ced08f21b8582fe2e7c53a86ea5ee514aa9e660fed36

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2218afa17f4e18cad8bc69904b5df47365ff09a79468a417bb30d11827c1225
MD5 4cea96aa0618f26bbba552af9a5847ca
BLAKE2b-256 a9d2ad294e875b4335ee9be77c0b85834bdefece57a69351cceb8785e8341fa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13f7e5d759134f25b4ae955fccd389503b271c89b1211a75317bff43e0b78fa8
MD5 b9d814c29140bd76c15be35d861a4404
BLAKE2b-256 d32b869b02f666c32d3b7b054952f0d94a9053b5d8106fcbba2bdb5535556744

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bca5a20eba99801760f6edf62043d4ef14660af67385eb9b889e8d0feda3ed26
MD5 5f78a52de0a084193ce93f7bf925fea4
BLAKE2b-256 a1b06dbdd26d599a04f710d6e718d63ec2cb34041829400f97a798e84b32f25f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58837f6a284547f11290144dd6da52f32393c8d2371c6ce8b31d43d47c7a0eee
MD5 700990e692631466c8f4a7e4952de8d1
BLAKE2b-256 2b8de4cb9f81903d04e39686c7bf79b62b55791db6d3ff4a71fabac3b6c076be

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a8547a5ca0df4d27be8ff537b51384318bbe93206e927e588078f93d0816abf
MD5 b47fd34e0a7507225be4fdd40fd10a57
BLAKE2b-256 5e46dfb843bc2d51fbfb9ad7f8f1add5debc79b64d525fc38b59fa06a9b7a69c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dff492b45a2f736a0f8dd99db1c2d4dd32316baeca74ceb02fb87c0bf981ba24
MD5 1174ee180fef550d4b55ff39675d828a
BLAKE2b-256 4d08c6f77525360b5940fed85e95b5d9e53887a2948ca3b59c26906133755641

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp312-cp312-win_amd64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1edab9f4e1ede1e54765ff5d24cc7c474cacebf532c3b3ec49aa0c4bc8f36c86
MD5 77131ea9a8588beacc1f0627f40e6de0
BLAKE2b-256 068c158755176cfbf614df2828587129deccb85ef2d2f4bee6f62a32f927952b

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp312-cp312-win32.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc597821b2fa5d0951a3f1075eef095f6500251e0c73e235c857ba9a05308422
MD5 1edcc2b8bbadd9158d7599cda9a2b5dc
BLAKE2b-256 2e9c903327dbf4a281e6fd53af0e1771b908fdeea756eb0d3d6a5c74b4dcebfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65222580b8a5e6960cbb2f6043d146fe13433a583defcad63c16e9902e1f894e
MD5 52ddccd531e3452eef8027b412903abf
BLAKE2b-256 7b5fd7afc6a7c2a169ba2c908a44aad6a156dcc916430d790357d1e5d61a802e

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f93596cfed0ff014068ae3b0353da423fe6391cfbccc9c2f847832b5845e80c
MD5 3934aefc3f5e49ca0ae7553fa276f596
BLAKE2b-256 53a095dd08652e80b63cdecce8d07c4fe92acb0678decaa86fef0115d07cf28a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc2ea7eeb84a3c75dab9e5c6bc96d5e0b7cce4ef4f7cf984437fbb85ebd99e33
MD5 4fcbd1eace311b279795daba662bb484
BLAKE2b-256 8a5981d952e6fd04b6c240cff729d11675b21a26fa1aa76c1085c8aa72f5d32f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3572f218d041b5859c631997c95cd9da05ad51eb5455c2feefc8fd7135b6d72
MD5 8a14f487361ae9877d0f1505e696e853
BLAKE2b-256 63d1fcfe672250a16e76eda3bb3e9dd1911c6601dc0f9456b8f117bfdaf390e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90c26fa7807427dc29c867f472201c2c2211ad087197b36f6ff2a28318b09b6e
MD5 3e52e47a12e5a2e2bf507c6e7d7060f9
BLAKE2b-256 ad54a8413e494b53d84a2c61156b53f7d0703a14321174cda14d404351ddd076

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f9e95aae808cf3a30ccac03126278a97836fe66279cf2ad7a4e9e868586a933
MD5 062710b0579dd2f511aaf1d767605802
BLAKE2b-256 4491b8c0ade84058fa40d3bcdfeaa1a158f5be4fe823db80c4c9050e93388a19

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b09b1b026d29433f1dcc0a071e407c24ecd1cf3140e58f870995bdaba50988f8
MD5 5d1c6fcec0fed8cd33161699f731d708
BLAKE2b-256 293a18e83499ca098b1e0ddfefcafd32ca978ea1306362916a1c4baeb4a2df20

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp311-cp311-win_amd64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9d6e4eada42708711e741a7be46cbc8ba4a12b5e8abef10a171b347979633345
MD5 401cf37664f528d5d6d47c14fc34e76c
BLAKE2b-256 b1a513516108df7dbc4d028c998baeca0383ba52bab0126e27d67792e986dcf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp311-cp311-win32.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dc29b52caf3b9439fcf360ce29eb300cb318239d8710ba93ba0410710c5af7b
MD5 3d6c097e4238d989c62b151d8755b8b6
BLAKE2b-256 b9bd145a1daf6eda4ababe8940fdd7f2978e67d30c05d47b14dfb73830959d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df3696111718a8a95db0de0f422daf0ae9e005e862095e73d6209a74552059b0
MD5 d8fbcb1502d4569db69c828f2730a0d3
BLAKE2b-256 2efcc1b83b920f67457be1b22ddf5766c5aed0d51809f1b7e97268141bbc75f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66f5d5eaa1c673be260f21da9a06fa8664796b22b39a790bde46276fa16c71e8
MD5 c0dc29acc7b59a51e4a224c633673c33
BLAKE2b-256 fbd6c55d607a03efb22f9001db46aa51a87a55f84d712b0eb8e232abb597969a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f6e7941b8f777702adaf3bae62bb52776db4ff94564a45312b36d673ccadf43
MD5 5c0a0f0dfe29de8ab1346423b037019a
BLAKE2b-256 2902976507309eac6ca463ccf60dc177e88026aed992af471858e25d7a27b3e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fbf23209a8fbe9c794d1bf07a6bfdd0257e7a47be1a7030990f2177c6124d94a
MD5 788b5ea3f1f74327f8355ce3d5981fee
BLAKE2b-256 ca5d149f2edb53da62299e044e34692b1b47b5988252b4f01e0c358457b52069

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10213404a43afc5f2f83a51302f2538afd06c05cd6ed1bbde89bd9259d706d77
MD5 a5a99577e53ab7a60cf89dabe72a555f
BLAKE2b-256 2fcbddcb684e74467b78a8679458654334ca16515e1d277e2c842806ef7034a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abf9307a293843ae234aa9f3ce4851c45c38e781a8e40fcd8a9e7b74f8dac418
MD5 424223921294f82e17ede8b86f64d65e
BLAKE2b-256 add121b684e88e53f2a460ab669f8336b7bd6ef1941bbe223eb52e09e0f0bd09

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 80d70b8761ffa87fe7fb6374be5d118b1d8082ba1a2c27d63b2681968ed908c5
MD5 94c01b75cb9bfefae3f0a85a03d22da6
BLAKE2b-256 ef0b4902b23822dc5cb54bf0f946ce5600ad4404796e378d93393786e06c2e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp310-cp310-win_amd64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 faab3eb162c8c62da713daca403b9bd55633f99e86d919effa6729e46b26a54d
MD5 82fc98d1b1813e05b57f3f50378fa9d9
BLAKE2b-256 331f1f2a07441256b3ee82a834d78f0133ad50cd5899891376efa1ab8cf3901c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp310-cp310-win32.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da91fb518296eb46996bd7300377946a9e99b01dec8a894ae19fe2167797d48a
MD5 79dd45490d653ece44294363c30b5d85
BLAKE2b-256 b8f4a7a6e3d736cbe048bcf4f19cc3b777880ec40ea78e73a61165710d1cec9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fbc0ceae7d2ee3585c16f0149f04830b417c395e1bbe0f5f0717b26d9237f387
MD5 a087eafb3bd9545c789e008d7440e314
BLAKE2b-256 d234d8b7a97576021fc93e4e12416f597aec8297dc929430de702c9bde839bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6453c374f0af850b58d8d24acb246256cc5ea943537326c2babe0f53c402238a
MD5 c11921acb692b659a595eeb6a47d5bf1
BLAKE2b-256 e920b06a05669b0e6cf03dba42ac8a458267e6bf3c83671dc12daeb24ee6d545

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5ec7ce2806a7540ee193b85957a21dae2beae35b6781970075ba98543e0644c
MD5 a53057e70fb7ad935a3a4e2295cc1cab
BLAKE2b-256 6951893c6a5e598a37853d01b139fb7cc9a96517e51f2af2514753c62008521c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abbd581e431299a71ffc30f15859ad981635bf75726c8504dbafc11ac9f0213a
MD5 98ee433d55950fc996b4fc51989a26c1
BLAKE2b-256 5d8d9745745fbb327f8ab92a46aaa9e7df63225785a6300efb030c3db9936ff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1680c7b9f718ceed6503fddec9479a8b71e065f1e40a9234ac008953dc6fa0d0
MD5 512712081e2c316957e7c22aa05e0615
BLAKE2b-256 cf7ef28ef878d67e97dd64782e9092353ee85a5ee47ee8d9c27c315b2e5ba22b

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19d7457fd1ee0316ab3d6fae29d6b8b1e3c61081ad210b7b24a136c454ab5d66
MD5 faad183e90c141314597ac5cbb460b03
BLAKE2b-256 d5dcfbd4194e520bfaadddba86ce3d0e7ef36c498c610313ed430eb93ed67fe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6857b732999f7410ee10a05cdad478fa59eb4e61de6a7ffde06734817a9f95c3
MD5 e898e2b44e5ed154fb88390aa67cb09b
BLAKE2b-256 a99aa1e6a4e6d9054da46af1890892acbc7618d06c85c42cf476a0c7a3b994b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp39-cp39-win_amd64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5f850dcf458b8343ef0acc9b7ee9530490b1b2c817a8b923ee1fecda3b2eedcf
MD5 b12740254a9487dd5730230307684c44
BLAKE2b-256 af0188b02ac7020cad24153a4d2ea945ba4cf09105f33ab9e6f7c780216e16ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp39-cp39-win32.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2589b505c4be45abb5659e27ddebd7e6d09c5b813631758bedcc7b07756c3bc7
MD5 c8ee73997c8d6020aa7837a7fd5f169b
BLAKE2b-256 34209a4a0e0668f24e16d999a52454662e948e0f9ded2b6c3ae0bfd82b31d191

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57147cd291ff52fbe313a467a30e3350e65ac41054f873d6e7b06680fb5e65e7
MD5 8c09f3bebfa16e0daeb636df8d434c27
BLAKE2b-256 03d499aea22c42df767038c8a74d60dc8ffa3d19e2168ba169b0274ba3b5d241

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02660872a3b75857e459284dc9ef43118ad1434c6dfa1b25eebf2602faa31294
MD5 0bfdafc808c63395a7a13413d8e70e99
BLAKE2b-256 d80204bc3a3ae1b20a307240a603cbde4e0f8f01c794c00efbb8200b544309d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ede6c2faff97f8518ad45d7c5ee4449cdc83a936d0507caf2e7cbbc43511bf94
MD5 fd972cf666bbc3c2096db049d5a7b67c
BLAKE2b-256 0711e61cab89b43087f9b88eae5d0e4524318bdcbbb7698700b597942a42e22f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c69189bb40fbe7768ed8d6cf63df1cc56cadacf07b1d23cf65d80dea8a245088
MD5 d1e2e896ace5bbff34fb0febaa3441bb
BLAKE2b-256 1b4ddf796ced6ac22afce826087124f15189237ec33e5a455e7fc685c140df88

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07122b891bdec3292477a148903bbd5fe03cafe3b41fcf44bb6d731debf7bc8b
MD5 13060f193e1bf76a74c6bfbb89fc8ac0
BLAKE2b-256 fb2ef6486a78ace5478ae973a8bac0de65ea977f7c19160387921b0a8001008c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00766defc94bd35c62498e4f98828d8d1fd9a25ea6ba1ae14b1da25b8cecedb5
MD5 0a2157c4da96717b49ab72efc08f1b63
BLAKE2b-256 75712661fe982227313b8120e2040936c4433d84d8e0627e14ac21e7e15729b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7b34d2259b0293435339f20a039fc4b23ac26da8dfd28ff7d04e59f431fde35a
MD5 afec50e0e654eb84b1d42bb3dcb853b8
BLAKE2b-256 950a0c80c95b8116d2f996aea6f7b6c9b61fc0351910e827fd92081e6d6c6725

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp38-cp38-win_amd64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9a33d35a798077bb223a82a9da1e83956763dfb022d193a49f95a228980f1d8a
MD5 e63b71f08359f58acb7334c9829e07c6
BLAKE2b-256 3015981edbcd1e8e3ea42d954fbb778a40a76f03e983c629701e3c636a0f4618

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp38-cp38-win32.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19a2225459493039e0584bc79530a85882691b9b626e328513f26210d32e0801
MD5 5d2cd5e220d1ecced7b9f24a56efd25f
BLAKE2b-256 c9f9888c11a64753058a87595ef6be9855aadd851e5abf9f63f6bb79b19c9d18

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ddb6eb3a83adde8779a29c03b5f735b54d4d054e8fdb3212acde009a7f42380f
MD5 a77e9785ab01fe80d1f87e1d5671cfaa
BLAKE2b-256 49268bbf30650a34f397abef3173b517838325459b14b546459612985c17133f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6debce2c1a4a6528b8f8a7178e835f4f558a5405c56b3b0d995503cd3bbe32a
MD5 eb845833972c0d7f03ba3672c8fafa32
BLAKE2b-256 aa6beb45b6293650f1396d17f4bd99d68e42c8ae73b822644d2a24f762a9f23c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30302bb8a32977e16b811a135681610ffddad68ffba7a2500223b2e0b3417fd0
MD5 9bc821d3ceca5e0fa3e48bd58fe4e0c3
BLAKE2b-256 7b12bbd5af96e3e41dffb8fd6c4f84975bd5a798c732ee98b4a80653d4be7506

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2da3f63af332439044c97ccde716a2225208143085c2664aa8ad05e4b1d2d281
MD5 53247323a5ac2a6b2febb3009b6bb314
BLAKE2b-256 0fa9c3d575fffdd6619da8672025ebc2b9f3e385087e28a9a6fd6622885727e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 992e997b82faa05afd3981d2d749a208cf5be48f1b88d188a84e99454b92e4d6
MD5 057e12c65e1cd3ed80cb304921b45b84
BLAKE2b-256 25ce2d6332652b2ff6d6924d976ec348707d9cd556eeb975829d0e83585da7be

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e14bc3265547876a3b3deb6cf4963eb774ae72e9c3a9c9f2b75231171cf104c9
MD5 205bcec938446631b7e67e9d7518d70d
BLAKE2b-256 cff37ff8eeba1cf73c0eabfb31afdddbd8a727e6bde1d08006a7048f3a09c71f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0ebadcfea2e32363392fa234bb228871db87b3cd6b7f92c220d58110962ef196
MD5 400c2491db4e085a7784526d6dbfc3bb
BLAKE2b-256 aef1f0a1624ba5a9a55e4e87581ddd711e26e306800f03434f338b8557bb5bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp37-cp37m-win_amd64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 98bc5d4bb6b60cef7e089a02dd9309903a7cee86e3a6f3b9dc23e0b5b868831e
MD5 c7a4ab595aebcb3e1b89bf69fddffc3d
BLAKE2b-256 198ffafb429c070ea7df0dfb20d5bb70be40d6facb370427b8431ba063ca0df7

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp37-cp37m-win32.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ef81830045a99a66e111bfabfa7ac7de72cd0dcb84002574424242ee9a4d0fe
MD5 609785169026dce8f966d1357e1ce758
BLAKE2b-256 dc05b3162013190c187ae4a6a6432b99743895ed29951e18241a891f50d02ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf7480bf3f865180002f6f1d15227371c50771363af5f81cb23950a7337f85d8
MD5 00aba65f425e4811f9312db4fcd8fb0c
BLAKE2b-256 e5fb5cd0b0ac130098472e7aa2bf07d493d25c2abb9078438936c064a8bd5ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c7e0ebc81fefdb7fc17e04c71f08de19eaf4da8fd01827228ba3e0598880f19
MD5 049a0bd398bc246f1bc28842cbf5740e
BLAKE2b-256 bc60f5753917cc7e79efe6c5d3514a9d4af4e5642ff40c3679842bb694ff9c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp37-cp37m-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dff6caaaaaa56774af209cb88f7ac4e6bc1731608b1450df412969f4d1c02e6b
MD5 8e6920446545403ac156243ace1bc513
BLAKE2b-256 65344a7e68faeeb990b60e6eb5c6cf9df43a17babc601a52fd3b31fa66a60bbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2523e02fb5a27646e073b3afa12d7fc24516f379c6e9e7f6f68b2c9d4ef038c
MD5 5296d3c90ab423f90b7e3b7afef0c489
BLAKE2b-256 bfc3db02032a5245c39c0522b810f7566a56352c9d8ba3d5d635dae1cbb4b345

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8accf4e115f0c9c698a05555e3ce5c5320b24c5113e7c711e537692bc61a9a4e
MD5 ece1e03faac50f4402c970cd68ef1eee
BLAKE2b-256 c8817f835db147c08a24e6c159c9640462619b0a3808db6bf0108b90aa8cc33b

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: publish-to-pypi.yaml on LeanderCS/flask-inputfilter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.8.1 This release

63 files

0.8.0

63 files

0.7.5

63 files

0.7.4

63 files

0.7.3

63 files

0.7.2

63 files

0.7.1

63 files

0.7.0

63 files

0.6.3

63 files

0.6.2

63 files

0.6.1

63 files

0.6.0

63 files

0.5.5

63 files

0.5.4

63 files

0.5.3

63 files

0.5.2

63 files

0.5.1

63 files

0.5.0

56 files

0.4.2

13 files

0.4.1

1 file

0.4.0

1 file

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.10

2 files

0.0.9.1

2 files

0.0.9

2 files

0.0.8

2 files

0.0.7.1

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

0.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page