Skip to main content

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

Project description

flask-inputfilter

The InputFilter class is used to validate and filter input data in Flask applications. It provides a modular way to clean and ensure that incoming data meets expected format and type requirements before being processed.

Thank you for using flask-inputfilter!

If you have any questions or suggestions, please feel free to open an issue on GitHub.

If you don’t want to miss any updates, please star the repository. This will help me to understand how many people are interested in this project.

For information about the usage you can view the documentation.

Test Status:
https://img.shields.io/github/actions/workflow/status/LeanderCS/flask-inputfilter/test.yaml?branch=main&style=flat-square&label=Github%20Actions https://img.shields.io/coveralls/LeanderCS/flask-inputfilter/main.svg?style=flat-square&label=Coverage
Version Info:
https://img.shields.io/pypi/v/flask-inputfilter?style=flat-square&label=PyPI
Compatibility:
https://img.shields.io/pypi/pyversions/flask-inputfilter?style=flat-square&label=PyPI
Downloads:
https://static.pepy.tech/badge/flask-inputfilter/month https://static.pepy.tech/badge/flask-inputfilter

Installation

pip install flask-inputfilter

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 numerous filters and validators available, but you can also create your own.

Definition

from flask_inputfilter import InputFilter
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):
    def __init__(self):
        super().__init__()

        self.add(
            'id',
            required=True,
            filters=[ToIntegerFilter(), ToNullFilter()],
            validators=[
                IsIntegerValidator()
            ]
        )

        self.add(
            'zipcode',
            filters=[StringTrimFilter()],
            validators=[
                RegexValidator(
                    RegexEnum.POSTAL_CODE.value,
                    'The zipcode is not in the correct format.'
                )
            ]
        )

        self.add(
            'city',
            filters=[StringTrimFilter()],
            validators=[
                IsStringValidator()
            ]
        )

        self.addCondition(
            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.5.0.tar.gz (325.3 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.5.0-cp313-cp313-win_amd64.whl (524.2 kB view details)

Uploaded CPython 3.13Windows x86-64

flask_inputfilter-0.5.0-cp313-cp313-win32.whl (505.8 kB view details)

Uploaded CPython 3.13Windows x86

flask_inputfilter-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

flask_inputfilter-0.5.0-cp313-cp313-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

flask_inputfilter-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

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

flask_inputfilter-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (534.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

flask_inputfilter-0.5.0-cp312-cp312-win_amd64.whl (525.1 kB view details)

Uploaded CPython 3.12Windows x86-64

flask_inputfilter-0.5.0-cp312-cp312-win32.whl (506.2 kB view details)

Uploaded CPython 3.12Windows x86

flask_inputfilter-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

flask_inputfilter-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

flask_inputfilter-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

flask_inputfilter-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (536.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

flask_inputfilter-0.5.0-cp311-cp311-win_amd64.whl (527.0 kB view details)

Uploaded CPython 3.11Windows x86-64

flask_inputfilter-0.5.0-cp311-cp311-win32.whl (508.6 kB view details)

Uploaded CPython 3.11Windows x86

flask_inputfilter-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

flask_inputfilter-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

flask_inputfilter-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

flask_inputfilter-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (537.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

flask_inputfilter-0.5.0-cp310-cp310-win_amd64.whl (526.0 kB view details)

Uploaded CPython 3.10Windows x86-64

flask_inputfilter-0.5.0-cp310-cp310-win32.whl (508.9 kB view details)

Uploaded CPython 3.10Windows x86

flask_inputfilter-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

flask_inputfilter-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

flask_inputfilter-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

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

flask_inputfilter-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (537.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

flask_inputfilter-0.5.0-cp39-cp39-win_amd64.whl (527.4 kB view details)

Uploaded CPython 3.9Windows x86-64

flask_inputfilter-0.5.0-cp39-cp39-win32.whl (510.2 kB view details)

Uploaded CPython 3.9Windows x86

flask_inputfilter-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

flask_inputfilter-0.5.0-cp39-cp39-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

flask_inputfilter-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

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

flask_inputfilter-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (539.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

flask_inputfilter-0.5.0-cp38-cp38-win_amd64.whl (528.0 kB view details)

Uploaded CPython 3.8Windows x86-64

flask_inputfilter-0.5.0-cp38-cp38-win32.whl (510.5 kB view details)

Uploaded CPython 3.8Windows x86

flask_inputfilter-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

flask_inputfilter-0.5.0-cp38-cp38-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

flask_inputfilter-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

flask_inputfilter-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

flask_inputfilter-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

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

flask_inputfilter-0.5.0-cp38-cp38-macosx_11_0_arm64.whl (539.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

flask_inputfilter-0.5.0-cp37-cp37m-win_amd64.whl (525.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

flask_inputfilter-0.5.0-cp37-cp37m-win32.whl (508.6 kB view details)

Uploaded CPython 3.7mWindows x86

flask_inputfilter-0.5.0-cp37-cp37m-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

flask_inputfilter-0.5.0-cp37-cp37m-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

flask_inputfilter-0.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

flask_inputfilter-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

flask_inputfilter-0.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

File details

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

File metadata

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

File hashes

Hashes for flask_inputfilter-0.5.0.tar.gz
Algorithm Hash digest
SHA256 94fc1183395850e2186d9306726b603d3cb5dab2756e6399a0b83370733ea894
MD5 06bf72a11dd79fe8b7a473dc998bc66c
BLAKE2b-256 db9934224d9cfc37f2d2e4d4addd6c92110e47e11b2ba0878e27d55450dff377

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 08c0ffab2f3ed5771f48faacbdbc76a6210ff30ac7f6ef80846fcb9046bb70aa
MD5 6d71877d784137907479fa4d5fb1dceb
BLAKE2b-256 90c24d95fc6934e478b54dd2784d7a3183a9842d02a23527c41d353dad67f4e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ecbda896d1726fb3ef6008fe39ec5c0d666b7fcbcf899c8eed246b4cee8b15ee
MD5 e89aef3f8a3a615cd3c5e7eb70fcb590
BLAKE2b-256 19b7c34b6b011dfbda999cff195c18ed92773a2e9a8146d197f8c8c7e2c6d6f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a824e72ba97bdb9d68fac4704f939585b84d983aa8f56a3220fa9d228955a0b5
MD5 11b0525151a794bb621dbd380006cf8b
BLAKE2b-256 01d8c18e488aac0bcdb3207979f31196cb47237c5bbb5836abc3f0b481b2cfcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a3deea3e9037b8bbc3bd86b18725940bc6cfbfb4ce7e6ce73a216fbbc8e5962
MD5 2ab8eab514074ecd57a53a151ba3f57b
BLAKE2b-256 5d036f6d10db6ca3c499d0dc102c1b4e28c3585f57973e8ea6a3ea0a878e79eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b4b17aa16a31988254f5dc5ed95e99f49de5b0dab1b28ac4b7b1e1c2ac8a272
MD5 7f653f59bad92f0b28395c6903507a6c
BLAKE2b-256 f442f497a818960a75608bb89c4263f9579283ebdea312e34f01002ac2b1528f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a395b9fb92a5273edef6f29e0f298520c55eee43e8512488256120e842f7540
MD5 8fd4d18492890a851519ae25222fc247
BLAKE2b-256 642fa566f512e68758c871791486e526a114b1a8aee06eeaf8e23817bf210205

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.5.0-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.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 701f0a0eedb007ec55be52893a8c4767a693b91d0fe5040fe15b30e558ea036b
MD5 b82475d995e497858a23bfee77a59c63
BLAKE2b-256 fc69872de29ca6c1a58306257e5c1bbd52d851720e8708845ed4e13961fb3a16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45f1400f2cef722a2ac2e4cf0b6cdc525d0077968a4b6638bfd9ff27eeae6349
MD5 39733ad2319197d23b6c27506368cc4c
BLAKE2b-256 a6124cddd4dfddfd88f89e5a11a0f58a4a8cef046f0f16f8dcc73031927f59a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b1d6261eb054960d6cbd9e4cb904017e48b08085c7f10cd9d205fd0407adeab
MD5 c1341a3e495b5da4012637a2d8047ebc
BLAKE2b-256 16d20233ebaeca8f83875cc911c9eaf1534c3c380d637c0c4813f007dc24e0f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4470fa95711eb0f61683e017e1150fe17dd00650e605439433a0cf85d4ca0234
MD5 52582d8c067c921c0f6de7c09d7de360
BLAKE2b-256 7270581d3fe3449d432ff5a6d2dab962dd5c85f4045a124d034713034b352135

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddf0da411bbfb8b33cd5dae3d31ad65c0efaebb87016450531156e6181882dbd
MD5 f0ac62c991d4920a8e53510a1f1d1e35
BLAKE2b-256 2fa550331bd3d96f687d9e6d1e1adfcc5b59d8b7b76f0e377891ce719c6ee801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5762addef956d90ba02514f9349f0cae9f9296139f5aad4496dd45c30f41a488
MD5 f7be765b2f3d00c61e8042459c1b3283
BLAKE2b-256 1f8172f3dcb92a56f84723939f8f79071505325872749313b282a333f7561733

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89c90b4878751ed51d872e235ce6d7dabd5a84988fb754c8acb0c364044ec162
MD5 63980814687c9a992010b024b98d937e
BLAKE2b-256 91653a2820b094aeb6ea09fbfc5558c39b06c25534906872588f7d7284efeb78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4707651a1beaadfd4bf80f9ba1933dd67f6b10ea5cd114f44d0616389b869ffc
MD5 b969832f177a6078c2b4f1fd1a1b5b3a
BLAKE2b-256 ea3e71ccb1d26c6d07c1d0ad4a62093a175d2a7aa8c5568b26386ae5f6eb35c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.5.0-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.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9afc717ed18775b3fd59a1a3599da3f985f8662499faa444951d3d52b86b45a7
MD5 c2feaf466aec0cdd4d570374c95a6be5
BLAKE2b-256 001103ff9a8f29633cc6e00df331002ac3dae1761049ad0c9d70ea95168eeab4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a88e02a452db10fa07a06c58c0117bf2f985da9debd18d73076df6b077049a2e
MD5 8555ae59ca70c2ea1ff6b08f7e304624
BLAKE2b-256 076ec0c176d994f9d45d9bfd5ddd19161b3c29549a5b39175f41fa716c592856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b9663e6b2032e02d796453db9d426efbef2f369aee7847dc92a1ac6887c45b0
MD5 8c987f75c4dcddd1e02a83a1b2ed9f70
BLAKE2b-256 1cf05a2bb179d8f7828034cd2dc5e9e187aa645e6e17257f2dcffb5b48f8def7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6ee670ac1c2784fa26ea22d4053a33bf0e87ff6f0411ea23299d1ea4154cc41f
MD5 46c6dbf946767faf58b5916501f14773
BLAKE2b-256 844f9f075c0f15c81ecd27709992888d7cbbd32f5ce731d6ab54971326fd4bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82008e4f5c6ecd6f454990378c5094a9e7524452d92181709e6f74cfa5e55dbe
MD5 f229e66e0f4a0eb217af266a323a457b
BLAKE2b-256 a65ddda6a3cafd03077342ddcf399c75a632b9af607c08a63890dc4c164bfc38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12a4b75be1ced2a8d677b56a0b674ee8e3e06a1e5636ad1df881f9af23c77f74
MD5 3bed265096faabf3818dd451109a4b4a
BLAKE2b-256 6a915295180f6ab24e27081273aecf0e561d4b851fa60be5655ff6ee6e2e89be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 658f65a42eb25779292f2665c711c8a30ee9903a638e4a757cd9632e52340756
MD5 8f0f14cc59a178d0f1186a7cc4eec2a4
BLAKE2b-256 1ba9fb2bf1f2eb77c2e488d19478aee3e37a03f9dede046a8da93782de01a67d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 428acfcad45d2a17cae82e194e70fb162576d958aeee79ea2538e0cd7897320d
MD5 cb70599c4e79f2f102b9ed51572addac
BLAKE2b-256 c0933ed15adcb6bd6cde06c44fc1d9851dd78649b4d57bb4cec3f14ee1266ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.5.0-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.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d788b5dc736429b80eec8ac916ddbe5181d08a25b1f2ce17e267b45c1d4bb15d
MD5 523c6e43e034de22be234de8d83747c3
BLAKE2b-256 d5d55395a0c879e55ed185517792da63ef1345e749a990147e93e03a2242ebad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6993a2f9d45a441c0d5c00f9d2b6c1e7d9b1a3dc120b82fe01334578c700f14
MD5 9604c73844dd21b38c354e78d9f354e3
BLAKE2b-256 a175003f26e888d1c6842c83cf1585e5be13d7fe0cc81d8fe21dd368308dfce2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4c461479978855f725936fab5153a4b923a0a2654737904b375555f0e43473c2
MD5 e84e53aa0a45f6ef0711664cc3f21170
BLAKE2b-256 fff69939ad04e1935c3f8e9d948e45e1c49d5cd87e21f1f7062cf8dc2954d016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 507d834f3dc139ef225d1ae8d48070b0bbd83d70a185089714562cc28cca6102
MD5 3c3327c6e3b73e4b2b7f882a66f06867
BLAKE2b-256 2900f90fdc21905db354475aa0bac9eb23b10d737843422213c5011b46296ac0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22e96a7cce7e4b4f306ac7741ba3abb22caaa2bcf4a1360cf0c007aa29db0330
MD5 3bebe69586101741371105d6241d288d
BLAKE2b-256 c51b4731fae1523dbbe5b19ad47c1c079a793fdffb2e3f8e464440ab0498dccb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1cddaf8cb9c7145fb58e2e7ed2efaf6930b6bd56761874ff3cd8f45842b69d68
MD5 f0defa02ec294b4a7119f1e982a0304d
BLAKE2b-256 0e75c152716fdbc6281fa06dfe3b31e8a44c0f019e1c884ebffe27a5908774bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 384dcc2038432502eb9ca29a6b739e2dda9aa216a819dbd3c8f9a7016e908f98
MD5 891c4673027f03aafb6ef43217ab8412
BLAKE2b-256 ee14997a8001d8f5c7fe01b03b0949041a6ce59b5b8edcaf6c4e4d319c1e5235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b958847dd4f8bf95536e780de345d00afe6b9d4d0b16edfa1b629800c646d86
MD5 4d269f9d74a80b6ac53f687ffff36ea6
BLAKE2b-256 fb4c8aa67bd4dd4552ce783a6d9e5f8f26de271ac6ba58a72d926d3a55739adc

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.5.0-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.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9e93fd7a4ac01f47d62372f24c25a4a50287a0524823a7054cc0613e983aaa43
MD5 fed624bdd8a7f7e029966754701de3d5
BLAKE2b-256 33f9c9d16e2aa57067a0c39c6b8a0463f600df405d126caa32b6b8808b260f8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b61ffe9767771f152e5949dfb4985ec09dc0496c15f74745bbc21a0fa429697b
MD5 6e13d8cc41bd5c8abe059145b820172f
BLAKE2b-256 bacf84d900f44d9006c5dbe805fdb95c16f43e7b49fc0ff2520a68902ae7cde9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b7c83d7ef77eba40f49b37095fd3d6072dd5299f3216f723d19ea5cb1ec9a07
MD5 720047e3e50fa2eaeb771434a4137fa3
BLAKE2b-256 3b94f3296ad623a0b56704a72802d721e723026ee6e5bddadc90c00e8f949425

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 40bdca6d35d99c37e52f77a7041e9ae5ad5a8f3d2255ec97e5345f41aefedebf
MD5 082791524802e3f1d7867eb417a84f2e
BLAKE2b-256 06d8354ef2bcde0d31422070335e19898fa5e2142e3d436cc461c029c3777e37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6e82e72ab58e6d28d18e5f19dec4cb27946c43ff7940c56ec924834ffe1f4da
MD5 5f8c8721c98998572e6ea93876e9948b
BLAKE2b-256 600bb0556be69dbd9bc0a9a120ff5e223f57715faaceccaed01a028cba271391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ada5e3a128dc4ca807bec90c0373d74c479703398624fdf16e8afb4b6ed5701
MD5 237960347c3a8b60227ac31b9b7ea2f0
BLAKE2b-256 1fb7da9ccde8041f676b2df80221c50fbb768d448201c26231262e6b374f811e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ceb7e478f70bbf47d1e4676f598822f4a0e53bab15eb8f8af472b74c0361070
MD5 b8a59929c97a1e3fb9786ec04f6689a6
BLAKE2b-256 c885e9be754ff028e0b646ad410b9d2e92550bf2a553c35e1deb3defe111cd5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c98fb9acaa0b53b2e67e5047241ed80db2477be6de95402de79e2651fe9866c
MD5 ba93cfab64795070072c690a468f1fcd
BLAKE2b-256 949cba018ac05d195ebe1e39d453fa8bbe24f0cb9b0dad47183c02851b13a535

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.5.0-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.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d8b195ca8be41d1b249aeedf1d94b35ac8d8ae59a2cfc60daff8f475d9c71919
MD5 8a1993b25c20de8bb41e84b5c249d424
BLAKE2b-256 db9463cee08dcc67db8c4a7d9d1b9218e85b070060f7a119a666c7291f5c7ff7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10dce73dac9f60676252594e97ddb28feac3c5b2ae8db342e903945ebb792771
MD5 d72125c3a426dfbad51e2e6fb73a800a
BLAKE2b-256 fe8e8a608614812317cd7530a2b3e68af3e0d000285e415744d3391e9a1f70d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5a126fb5b21319c223c701422379ed29b3983095e8233a33732050e97531e4dd
MD5 09fc833d88db519abc5db52b56d99aa0
BLAKE2b-256 41aa28fb7ec03af8faf33ed29da41753889ece2ac4941223fcb5e5197ac45728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 251b3a915c780ef0292d2a5e49d7df39e49ada72271f8890c2cf880f7d1827e0
MD5 4c498172a04f67e1ba518413e36d74e6
BLAKE2b-256 ee275435dc92ac0c2a29590e8b498a70b6acfd6a783ec1d2fbcc90537f142d3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 affa5c8b868f1070fdf0a8cfa6fce8463ab2868ed680575650a4676a9dc9a422
MD5 e6eed9d9db215b471d83fbe823edccd0
BLAKE2b-256 e1dee9fd7dbd01f13a1bf4296d0cae1786bf3753de82b4ced66c2e27f6f5394d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 debf84ac45e7bf11925b8f2c58076bc6791826dd0830b7ac5bbe857945d088e8
MD5 da297aeebed4e7396d141a6965181b17
BLAKE2b-256 5fb079e26e378cb4328c4802587c9285f091c0620494a07b7d485a1eef109e1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 445626d92978828ce98353502f630e81cd41a75a827b20efaaa1a9bd61e4bb4e
MD5 8c546c6734c367de5598e07651a69678
BLAKE2b-256 528fa1b4c805995bc955f00999a1aad209d0f98d7e87d1dabcca487b64c9c495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b4bd5fc778b1c1944bc5d2afe20601cf6e35fe77f2dfa244d2ae9273b1b4017
MD5 b6be75b82f0cef0d5787f99436c897da
BLAKE2b-256 418847b5845a2465a5095ebb1c5e2b188a352ba3df2f404956eaebdc8ed22c3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.5.0-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.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9475038359fb8b87356c1b6f2574ed14d6a2cba9ae599afafb5040a2f59205e
MD5 0144a50d10dc3f9c1d3b00bef870411a
BLAKE2b-256 51dd70172bb7af52af8d2bc010bd9e558b7ce5ead9035429184b7b251471950d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9441032982b5d59ec7ee512d750144920749c48ea1a4f9ac28d59058707f31ad
MD5 246dc7359bf32b72e0c7793afe2e6d1b
BLAKE2b-256 99c88f6668e14c3bca782080ddbd41202ac056036f35f6e418d54d333fa4a3f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 46a25fad037749e92ee7c543352880bd7412c6e0b4b9a9e01b98e6601ee7a737
MD5 6f0a6da4ac0bc5dbb6ad027879bf6dd5
BLAKE2b-256 8794c20c1dbd889f7cda7dfd29f03e45a766f8034b26d69d3040ecffbb6bfe09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 82d8c3a855a5e0c8a18aa68ceb2b62a8d88e197fee863829fcfaa0428902a51b
MD5 8e1459423ee06da337f0fa33300e8be4
BLAKE2b-256 f3528ed17ed305b8eddca17151649bbf2ddb75b005a902b3c912d42ba185bfec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02208a76b4dcf2a1c1ae5b51c07f98f3632eee207c0d77736ce4fb576a751018
MD5 5c67cdc33680f14915d78e7a8232ffe9
BLAKE2b-256 e79170b0e52ec318284b35989b6aad33789836f64d88234e550041cd005eb55f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5caad10b3f604b2c2bdd7b97590c4a1d9d4bd60871c0485bea2979dde92603bd
MD5 cb135c9209af2394b7d2b9826a3a07a2
BLAKE2b-256 e63279f5fc79651e15d37e37bca0c7e8e5cd7218e76077bfbe52c246e22ba7ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7d16352e6b343764d6627a34e5b95b800003c907a0ca5c8ba0f5281683b681f
MD5 929e38877988a12c377bd45cd9cfcd32
BLAKE2b-256 494f87e2d194a6d6d0ac5f5847713fd272f5920914bdd849e31a35089b171573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3dba8dbeffd19ce3b23afd1dab4b550d4400d3c8b65985a93c33fc494a9d7a67
MD5 78c064d85317bd03a0eac127f4e1706a
BLAKE2b-256 3860cfea1d12e7a8e9d8d680c98b8dcba87f3210c36af59bd02841f8c4d7263d

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.5.0-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.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for flask_inputfilter-0.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8451c69cc8573dbfebbec8e16d5a1b272974f70761f7f69249fb4e250e9e963f
MD5 64215adee3923a9530553514f6573179
BLAKE2b-256 4a0dc7a405abe82f5c4808eeb7974c534c4a8b5ed5690d911a13e01e9174650d

See more details on using hashes here.

Provenance

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