Skip to main content

A library to easily filter and validate input data in Flask applications

Project description

flask-inputfilter

Quality Gate Status Security Rating Reliability Rating Maintainability Rating
Vulnerabilities Bugs Code Smells Lines of Code

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 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.value,
                'The zipcode is not in the correct format.'
            )
        ]
    )
    
    city: str = field(
        filters=[StringTrimFilter()],
        validators=[
            IsStringValidator()
        ]
    )

    _conditions = [
        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')

See also

For further instructions please view the documentary.

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

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

flask_inputfilter-0.7.1.tar.gz (70.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.7.1-cp313-cp313-win_amd64.whl (464.4 kB view details)

Uploaded CPython 3.13Windows x86-64

flask_inputfilter-0.7.1-cp313-cp313-win32.whl (429.3 kB view details)

Uploaded CPython 3.13Windows x86

flask_inputfilter-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

flask_inputfilter-0.7.1-cp313-cp313-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

flask_inputfilter-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

flask_inputfilter-0.7.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.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

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

flask_inputfilter-0.7.1-cp313-cp313-macosx_11_0_arm64.whl (512.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

flask_inputfilter-0.7.1-cp312-cp312-win_amd64.whl (470.5 kB view details)

Uploaded CPython 3.12Windows x86-64

flask_inputfilter-0.7.1-cp312-cp312-win32.whl (433.2 kB view details)

Uploaded CPython 3.12Windows x86

flask_inputfilter-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

flask_inputfilter-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

flask_inputfilter-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.7.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.7.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.7.1-cp312-cp312-macosx_11_0_arm64.whl (521.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

flask_inputfilter-0.7.1-cp311-cp311-win_amd64.whl (470.2 kB view details)

Uploaded CPython 3.11Windows x86-64

flask_inputfilter-0.7.1-cp311-cp311-win32.whl (435.4 kB view details)

Uploaded CPython 3.11Windows x86

flask_inputfilter-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

flask_inputfilter-0.7.1-cp311-cp311-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

flask_inputfilter-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

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

flask_inputfilter-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (526.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

flask_inputfilter-0.7.1-cp310-cp310-win_amd64.whl (468.7 kB view details)

Uploaded CPython 3.10Windows x86-64

flask_inputfilter-0.7.1-cp310-cp310-win32.whl (435.9 kB view details)

Uploaded CPython 3.10Windows x86

flask_inputfilter-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

flask_inputfilter-0.7.1-cp310-cp310-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

flask_inputfilter-0.7.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.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

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

flask_inputfilter-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (522.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

flask_inputfilter-0.7.1-cp39-cp39-win_amd64.whl (471.8 kB view details)

Uploaded CPython 3.9Windows x86-64

flask_inputfilter-0.7.1-cp39-cp39-win32.whl (438.3 kB view details)

Uploaded CPython 3.9Windows x86

flask_inputfilter-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

flask_inputfilter-0.7.1-cp39-cp39-musllinux_1_2_i686.whl (3.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

flask_inputfilter-0.7.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.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

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

flask_inputfilter-0.7.1-cp39-cp39-macosx_11_0_arm64.whl (527.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

flask_inputfilter-0.7.1-cp38-cp38-win_amd64.whl (481.5 kB view details)

Uploaded CPython 3.8Windows x86-64

flask_inputfilter-0.7.1-cp38-cp38-win32.whl (448.1 kB view details)

Uploaded CPython 3.8Windows x86

flask_inputfilter-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

flask_inputfilter-0.7.1-cp38-cp38-musllinux_1_2_i686.whl (3.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

flask_inputfilter-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

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

flask_inputfilter-0.7.1-cp38-cp38-macosx_11_0_arm64.whl (542.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

flask_inputfilter-0.7.1-cp37-cp37m-win_amd64.whl (499.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

flask_inputfilter-0.7.1-cp37-cp37m-win32.whl (461.0 kB view details)

Uploaded CPython 3.7mWindows x86

flask_inputfilter-0.7.1-cp37-cp37m-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

flask_inputfilter-0.7.1-cp37-cp37m-musllinux_1_2_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

flask_inputfilter-0.7.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.7.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.7.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.7.1.tar.gz.

File metadata

  • Download URL: flask_inputfilter-0.7.1.tar.gz
  • Upload date:
  • Size: 70.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flask_inputfilter-0.7.1.tar.gz
Algorithm Hash digest
SHA256 695144a15d9011f376c48f021b67911d8218f751d2712f02ef687504fb21b575
MD5 edaf668a75f1dae48e953e1c44c736a5
BLAKE2b-256 15716b3e43ca2243cfdd1e66a9f93f3ffb675c0e1451fb62e8f4571fb5d005b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7433d743c8e5583ad5a35c54c0943502ffe3e693d9aab125bed7d326ce73ab30
MD5 77f44b272eda02107e9ae3f7cfea8249
BLAKE2b-256 67c6a4d8d65669c6bd8b899443e6239607e83dc0dd48e20637ba4282f59734fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 02d93cfd461642ebcba091ab94eb4884eab59c766665446a1d7662998167465c
MD5 ba6bf67578afb57c5fb4f24bffe9a2f4
BLAKE2b-256 c1505f22f103c1513a6160ab4741d29c87d906ac2fbc39be2ddc5417e3983e65

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 273ecf651a7ad562d9c8fed606d643c7567d9c65af55f2d3d1d1eff105b517a6
MD5 b063ecd7dd03dbc45d68359383ec6d21
BLAKE2b-256 fe0a3c8734c277bca9aae86f55750c1ae9afc481fc512b0390afe094a06c13ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5aaaab59ba27f3a353dd9998e548c2a8e97eda6024ec23e9e9b9ccb288682bbc
MD5 eb3de4344cc48d9a7f90748c0f1c09ab
BLAKE2b-256 457e6c83cc8c76de16149b13f25c931f9fb2d574258e2761515898c7d8467651

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef098cf3beadc174d0bc286fabe001cf362e513e3e7dcfcbfe922bd3989b3d3c
MD5 127aeec5a7ada2e4131c8d6cac2eaf3b
BLAKE2b-256 7b34b14b8d28dad152326c34620111771430c8d9cc87809bf795b54532238d3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 071c77e7cd423da70ede208dd2c1dda66b71b4575bc47e252adaf18bfcb64361
MD5 5184abdd0d8cea05e7ce3b9f953b5048
BLAKE2b-256 c54ebc55bf691e5fcd645128ea1807f9f15fa3526bc10531b26b7179d4f54c39

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4cc3fec1e05c340490988b95d7269b317643aa2a59604082a6c33acb290d947
MD5 6be0ce1a35f105e740000ed388205f6e
BLAKE2b-256 8040d4831b5e80795430bb552df01da5c473b1420e87d2920defe3208af7e73f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.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.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef50eb18d07c88e501952d90ba112fe6fff1479d6a0877068e672bd403b5a58a
MD5 21a8c65c2fea053aeba570becd0b4fdf
BLAKE2b-256 c7c85b69091324202a26dfa29b9624bec717aeb8deeac9f54e0decd0aa9426c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c854582968c3e65b491032290037d5e2fd2f9413421de6513e12bf90191c91a2
MD5 818752249f9392b9ab91559d278f8555
BLAKE2b-256 39d88b868daccebecf1edde0d03a37075a6e82dd3d6ffa8cc6c15872ce42220c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 92df33a732829e4f857713b9d65991f09a5760e7f3dc2fa90dd45390a910473e
MD5 561676de80404f0dff880886c721fcb9
BLAKE2b-256 ed0c466df83ca8a100e506fe91357804ac55cf6fb8ea272bc654c8aa8f4d2fcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6d715666eff300004f03d0b3133e1dd447adea7bc1f0fbeb02855a33d3747bc4
MD5 84c0271b278578475b2cd97b9697a3ad
BLAKE2b-256 882b0a027fc788c2f24dca3604858d7361ea9f0e4a5524a3e7282384d08a255a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2621ab4c7e2757081b274bb7b1bf11a3fc8e4151de9914921fc7878533f8e82d
MD5 39aaf56cd7e0cfd6a9d02abec2568edc
BLAKE2b-256 deeddf5b78c64ca8c9b2e03a4f34cd04bf50da55656d2419a7f12a5733f36bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d8a4b71d1d4d8a36affebf8a9c58745cb14416a76c4623f552cbeef468fec54
MD5 30b9df76c765351742d3650afc11753b
BLAKE2b-256 b55590723b3b9cbbe75d4e151e9967d147c4efaa384b3c07e2f80fd6a9aa3277

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19d55bf9cdea8b879a89b654dcd42e31ae2fa554d195ab45baecbd86d0bb9e23
MD5 8a9ed02700c286ed962ba496d6aa17ac
BLAKE2b-256 b894755842a4f4caf264f32f9d3b0b5c6911c4205dcfd8cbe66d8a5858d758fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c32feca9c73b9d7f5f05078e469e676003b32222abc692766bf7dce967f517f
MD5 f7f3be9dd12588e112662fd9e59095d7
BLAKE2b-256 77dfe88fdf9bdbbb2a564311c3000c136250181617e3300d42398498fd046329

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8b3b22cce593c11dc24e07f67eb6714bab2784d979e50b383a560e4727e316e
MD5 657363be17f9ff3d85d2514cd01e6804
BLAKE2b-256 9b19aec21047f7175fe06545ae0329785c9175c901982c14a8ff683207cf3b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.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.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 619ed206f29e82448467d1a8b826cf8c117842fbb0c10559fe814de8df09cb82
MD5 4c69b867a10859145bb742cb9d6b535a
BLAKE2b-256 9637770cab32e0a87d3983375947b925c2e8b12f8f9f7666fe106bec2988bdeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23ebfbd4698770b249e78dabca21b742c7328d215f0ab1de449f536e68567cb6
MD5 786be67190556bce137f8b48484fe8fc
BLAKE2b-256 679d13a4e178b64e7e3d701087400329d4ee1a77285b123f8dd411e698f5c516

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e67760fe5fd598ee410f96e3c3739d62ab5fb9a9bec70b60c8a5db160ee31494
MD5 372ae3c2a5c3f201f4f7e79beecc2259
BLAKE2b-256 e3f93deff6652aabd02eadd878af07eb6a2cc7cc1856bc80e2a1ac5fc17660f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 61bc86aba43c21c216bd8c8e80b641cc2941720ae75ac368aad129aecdac943b
MD5 14ee8a513986b1e49b2f4ce5a181ca52
BLAKE2b-256 8a64dbda851cefe772cf2ba105255c5990ad8229e74cb384e4cd551025c6217e

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 203318e04c29f36c23ba45106f9025ba5f0df91a2814eb59cad07f5b34921108
MD5 f410493ed5057a1686ba183446a4c4ee
BLAKE2b-256 6ba079e8c28879f8e5dd14cd61dc1c4e88cc3c803399aa392a832dd1ef5c52a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7951b58341bfa3e205a8783d213ba27c22406f2bf0370ef18ebfc2f483c48f8d
MD5 3e08ca2a699f0703635a068f85be7ba6
BLAKE2b-256 7ef2c9250f419e127ef7750f34645121b519fe5a02ec12a39f9a417f38eaa66f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa9681a58dc12da02191c90018fb07c0519ceb86ba3d41328862cf97cf10d5e5
MD5 3d1f2394f197dfac40527a777da30126
BLAKE2b-256 1236052f93b1dd56ee6c16dc8eb9ffbb59bce703692c60dab7c328328d7c5c1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd0a2d388e297d91e348657ae4c90212a33b79d90256ba1d32c3351dca7cccca
MD5 0f674e13e602f540dd36511f3afb18dc
BLAKE2b-256 35372191b4c7bc8013cd90f736befbb3942cc7cd24f394feada63414ef17df49

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73b8605167330b65af7ef068ab0c1af454f41f3f8fdfd414c0b097342ff1afc8
MD5 21948d76dd0d9fe740b2971c4736b1c2
BLAKE2b-256 6ec3c32f1779816003dcb6b4ef78aa743161978300e581c5c18f2aec826262e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.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.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58983c49ead35bc04db4614071e1fb3cf410680f7b714b033ce7bd1f9c98ca30
MD5 891fc2ad1a180f97f1daf96aa6b4f616
BLAKE2b-256 7dd1254e37d02ee652602cfeafe4c2a73e96fd2a5e8acfb842179e4ecf0cb4cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4fe9696e76e765866e967b2f5be951457c95e630ab9cc7e06d5f1d244d2f58a
MD5 1755d67c206b3ab1827b1e6dcfaf1d5f
BLAKE2b-256 da6b712a5d81cb180334c34b46cd92e01570797d28206694a543c80ea02bea66

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7afb2a508010ed39f48613d519291b9090283ea163907e2685891f52d279084a
MD5 0b10b9b4347fce2bce8476df09a9e8f1
BLAKE2b-256 5a4fa14a8822531e7d4044c8183aca55ec4edf939e59dcd7018b4b2e1497b137

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3ad7d4108f3c33d12d5944ba7b1fcd709eda3916eadef2d99fba2288fdaf9a6d
MD5 6041780c143b5fbc55d71e873b4dc118
BLAKE2b-256 265b2944d1e289e1d8baff21bbca4a0ab29e0353d32dda46991301c17a680fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e2af0dfa07d29530649cc689bf3d857c9ea689096ef2471ce37bb82ed65c8c4
MD5 47a98b2eaf442895055ec03d91c1f90d
BLAKE2b-256 a5603d3328e61673248b53daeba6cf3b0f6a4a7b684a2e7c923381b29e100a98

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29c33450927a81fc74e7e237fe657c78510b3e4e9d13b061c6d5a56457c97a4b
MD5 56f9ceaf4558d095d8260dfa74819c03
BLAKE2b-256 0337fcd08ef63fdd10c1c7f9e0a859b6632b1f5627bf7bdc22a697d8b2c1dce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2467404a7a220bfba528ae34411323ed5979f12024444644a354d216f3a4029
MD5 676dd9d37ca87866098f8a1a9a2e0b95
BLAKE2b-256 883ccb622d69778cac78e4fe08aacfc44111bf9e4fd9b796ad70271092c3a930

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ed262feaaf3f98696ab338c4817994a9a5fca8f8f85b0af551250d87c9bfa09
MD5 aecac37a6f6e46f040b7d55059aa6af0
BLAKE2b-256 dd80bfd0f4bb95e00fe16d574d030071d90ac29c9426b012c5097da7b3f17449

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88a9716f3cc80821c117c7c8d7d1054484aff21b78c8b913268482a33a42e46a
MD5 2cbc413d7d6f4bb4da582fc8dab9218b
BLAKE2b-256 eb2bdfef24cbc472fab593d9aa9f77bdb9e697f083b22cc4b4bb7b3a39a38a62

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.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.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 87106cff94d9aa707d359a8dcb883f76409a520f5128fa990d71c0f84046ed73
MD5 756e6a5b6dc8d292b8cdf4873a1a0ad9
BLAKE2b-256 ff08a4ef2284e66c72ada1c574cef4f627f79d160d37d744d5b7f804f048667a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dc5e980595cd2a08aac3f0dfe369aa22a230b2a34f190d75db9ca6ed796bcc0
MD5 9772be1320f9c395b9aeabef4ff1cbf4
BLAKE2b-256 d9b24dc627c9c1ad5b3ed481397daae08cd51f17948c75decdb61bdadd86142c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b586322f6cc8dc0f6cc527f02375929e075ae08feaa682c53927e376845560b6
MD5 e4c52b9c8a771d590accadce4cc3c876
BLAKE2b-256 a35847abbbadb2431eb0f152f8f9cf810bb0e640379fa5435994310872a17202

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d61a7159f24b08785749c973a0f17fd4e4dd13bb4ccbfdabade32a7c864b9e44
MD5 8153cfcc6b84af445f8e1678f74d300a
BLAKE2b-256 768e770687b065665e0d0a5ee40d8c51db74efd316ed0cef616ec764c3ae6d0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8320742fab1aefe979b6656fcc8ff7d2d35a21fb0be6003e69ef08dd4159643b
MD5 8a0945c82b2ae937ed923c638b835b2b
BLAKE2b-256 78f9cd9fff1f97a020caff404bab23d6d10454b6b2c7c9ce11213e1809032d1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70da2114c1b8aac3c007b90ce575da839984899d8339ff62e4955377601835c0
MD5 126d2c59eff421d941f227c8225c9987
BLAKE2b-256 b0eddd462f6fa7f482dbe59281799793acf2fa6fc84ae841553bf9a9739c07dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 584fdc7c36841f1437957deae220805163408a0b54b57d3b3f95b9d923f52cee
MD5 647bc46c428826a3ec97c7be47607749
BLAKE2b-256 0157d7caaf91aacb0ce8ad7599091f35bd5af5638c2a68f362f39ce97357ef62

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 576b729caa2d1ec2f86bffb3f5a8ba36507bad54dbfebffde373d1b9f7bb4787
MD5 6fc2945c84343bc16cc99767459d2e13
BLAKE2b-256 531b1c8250efa418b6d946864ded22024199730c9002ac0cff72c16d41fe04f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71246430cf221a6b0a7cfabf61f88089913326148049cb8edc540f26022f33f0
MD5 f6d33fe24d12fffa917ce1fa6467028d
BLAKE2b-256 8c37724e16e36f7f0eeacb3ffaf4d6070ad94185fdd66dc0cfe5f0cbc572165a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.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.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4b4ab1d10320df298889acf3bce2f65a52ffc822d1e87a036bd0f8145c627ba4
MD5 6157ae3a05c09cf6c7927fd89f63d86f
BLAKE2b-256 531160bb0369d70f0c470ca7731090026d2cfbe9ea2c5697eb55aa73184bee8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 005b008506b3625daaa28f67e1da34ba7f87203d8e324feae2c2a4c0a38ab079
MD5 3869938f49869c21fde9b7ede94c21d3
BLAKE2b-256 cd39443f92412e3d0fd1cff3227db2a5627457847bf7ad48d406885230676c01

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 012eee3eac8bad23d3d69d99a56e52a6ff67a53a8e785d0dde087386826260ff
MD5 7ff21ac212b48f2396a7dc81604c789f
BLAKE2b-256 0c5d94456af65264226a6769433f10157adce6d151a62e0354a087b1bc98516d

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 870b475727b9d05b4a04357bdf1a445a31d67531138a92074f05ab27fa9d61ce
MD5 d9a46c028d770fac19a6981f4cb4db37
BLAKE2b-256 3dc91fb84668562070dd01072cdc729c6948dc7f9dc0ff35daa579727a79fe7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6161453c7d9d978437c6cf266017c886eb62fccf3c91b23845679f028366f21d
MD5 3e77337879ac5fed28b33ea91157bf84
BLAKE2b-256 fe8b5754bfba6c2831ca83c1a9b4aaede6dfc9d730d0533ae4f3dfc9150f4a04

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5476c17748b78000e604df302a735be10dc6e18b4edb668d9e19dc434e3374b2
MD5 83a9b5d27caa5e84bb21e7e25154b23c
BLAKE2b-256 e26d6a0784831e231e81bec2cbed14f1c7038cdeec044cc04b8937556d9c8a88

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac919c5fbed938db351365015480245315611fa5ccb94302499a9b6dd24fedf6
MD5 6eea0db5a0433dba922871f5c1d8d33c
BLAKE2b-256 4c99955c7e76552aaf22656582709bc673b3b4b70b8a16d75a2be8157fbc67a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a43f104c5298fd2fc0b034bbe433621544f630e1b5abfa615bfd81d5e77a55a
MD5 505ef54d4d858452f4f77979b7612070
BLAKE2b-256 d18ebb7ba5e097c905e2a740186ef0093dd0454136ee58a95cdc99c197021e91

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16c3eadb90e9628470017fba3cc6072a1262cc3269942581fdc8a74e2dec3135
MD5 04116aa1da8f4516cd2f9d6379d97635
BLAKE2b-256 60c6e29217010f8c266618e71ed04d78db2333bfcd0f23691648518667fb0933

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.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.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 77b1ed426dc0afa6410ccb49001bb0550d530d22adebdd494a9de74f6c940666
MD5 21daf0797518f4da12c13c7d746a4b7f
BLAKE2b-256 05592fab86452b3ca8b6e0110d5c3621905684bb3ef61960fc95feec93ee1342

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46ef7d8d079bd444d77a10757b29fa92935eaf3833691a9f02060d222659a412
MD5 a3e11b1996346ff3111421571b8dcc36
BLAKE2b-256 008bc2c8f715931baaff9a44a2c8fca9607dab1defdae054024ac6cfa630300a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cbc9080e5193ab72e9667118b2824b81bcfb685e43dc0ccbf05d83fea26cc081
MD5 574a1e572d7ede82d6d84b86fe5d5d55
BLAKE2b-256 1a18863f300af8bb93177a5d92330a3524227e13d2ad21fe0508b726790b6630

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 545c9a3e24a1f922d5c69ceca2a59b51b9ff7888124327696c14bd2f68106561
MD5 35ac9a31ee42a1244138d8be1cff604d
BLAKE2b-256 0842f9d696d6cb7ec5b0256c101ff46da0abb351561a18b0b67c595214d5ea53

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b1ac8613000cd16857251507a95172493774879f1eebce8590f416fff83b3ab
MD5 d7b6d71856aa2b7444185e753b130e49
BLAKE2b-256 a31b9a1fbb0d17a7a931563214e0d0c715e9287cd9c063d086712da474b72fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e320baaf4fe7bfda67e70ebf2c4d88618845352a3a398b74c019d2fc801f4d0
MD5 c452c15626eb88a3c050aef9d4ee103c
BLAKE2b-256 763f606fc4f6e8cbdd7b7c974c252571347e14e192b081109c4e81699c53e8f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cca860f0cf8c0e9efe85b3565c4e32319f5632569dfc65b9c259dde1e4594e21
MD5 fe2f826992a76596387bf31bbdcacb4e
BLAKE2b-256 1e047382a6a33db8ff308eab55754530660fbfb5de86a6da935d7cf3490c8df0

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73e4dec375262df1e13fdff12dd7c6b586de083bf550a5eaa36e4db53d5171c7
MD5 5ab2bb6491e3552b1a3f3a86ea700d92
BLAKE2b-256 cdef018775e4f1d8af7aae0510b3823e876af12128490620521505a049f44763

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d7020e4b395e647b866a44fe06f64b42a8c5d3e099e0886f5f25437b260c1ef
MD5 ccdea7849ba2b00e24edca824e543f81
BLAKE2b-256 81aa8c427a9b76eea892cb87d8891989b682af158b7437a0f7167864fc12a88c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.7.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.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5e470caa5b60470c6526ead4343c41a2bedddae8eb6fe48b9e13bf0c2ec26b8
MD5 e12b670290ee2f3d979a713a76501a1a
BLAKE2b-256 f915d49f9d220184c4a6703ad64f6d33c031910485f52b111eba82cdfc3050c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.7.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.

Supported by

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