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.Condition import ExactlyOneOfCondition
from flask_inputfilter.Enum import RegexEnum
from flask_inputfilter.Filter import StringTrimFilter, ToIntegerFilter, ToNullFilter
from flask_inputfilter.Validator 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.4.3a1.tar.gz (323.5 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.4.3a1-cp313-cp313-win_amd64.whl (519.8 kB view details)

Uploaded CPython 3.13Windows x86-64

flask_inputfilter-0.4.3a1-cp313-cp313-win32.whl (501.4 kB view details)

Uploaded CPython 3.13Windows x86

flask_inputfilter-0.4.3a1-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.4.3a1-cp313-cp313-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

flask_inputfilter-0.4.3a1-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.4.3a1-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.4.3a1-cp313-cp313-macosx_11_0_arm64.whl (529.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

flask_inputfilter-0.4.3a1-cp312-cp312-win_amd64.whl (520.8 kB view details)

Uploaded CPython 3.12Windows x86-64

flask_inputfilter-0.4.3a1-cp312-cp312-win32.whl (501.8 kB view details)

Uploaded CPython 3.12Windows x86

flask_inputfilter-0.4.3a1-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.4.3a1-cp312-cp312-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

flask_inputfilter-0.4.3a1-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.4.3a1-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.4.3a1-cp312-cp312-macosx_11_0_arm64.whl (531.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

flask_inputfilter-0.4.3a1-cp311-cp311-win_amd64.whl (522.6 kB view details)

Uploaded CPython 3.11Windows x86-64

flask_inputfilter-0.4.3a1-cp311-cp311-win32.whl (504.2 kB view details)

Uploaded CPython 3.11Windows x86

flask_inputfilter-0.4.3a1-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.4.3a1-cp311-cp311-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

flask_inputfilter-0.4.3a1-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.4.3a1-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.4.3a1-cp311-cp311-macosx_11_0_arm64.whl (532.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

flask_inputfilter-0.4.3a1-cp310-cp310-win_amd64.whl (521.7 kB view details)

Uploaded CPython 3.10Windows x86-64

flask_inputfilter-0.4.3a1-cp310-cp310-win32.whl (504.4 kB view details)

Uploaded CPython 3.10Windows x86

flask_inputfilter-0.4.3a1-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.4.3a1-cp310-cp310-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

flask_inputfilter-0.4.3a1-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.4.3a1-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.4.3a1-cp310-cp310-macosx_11_0_arm64.whl (532.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

flask_inputfilter-0.4.3a1-cp39-cp39-win_amd64.whl (523.1 kB view details)

Uploaded CPython 3.9Windows x86-64

flask_inputfilter-0.4.3a1-cp39-cp39-win32.whl (505.8 kB view details)

Uploaded CPython 3.9Windows x86

flask_inputfilter-0.4.3a1-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.4.3a1-cp39-cp39-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

flask_inputfilter-0.4.3a1-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.4.3a1-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.4.3a1-cp39-cp39-macosx_11_0_arm64.whl (534.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

flask_inputfilter-0.4.3a1-cp38-cp38-win_amd64.whl (523.7 kB view details)

Uploaded CPython 3.8Windows x86-64

flask_inputfilter-0.4.3a1-cp38-cp38-win32.whl (506.0 kB view details)

Uploaded CPython 3.8Windows x86

flask_inputfilter-0.4.3a1-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.4.3a1-cp38-cp38-musllinux_1_2_i686.whl (2.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

flask_inputfilter-0.4.3a1-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.4.3a1-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.4.3a1-cp38-cp38-macosx_11_0_arm64.whl (534.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

flask_inputfilter-0.4.3a1-cp37-cp37m-win_amd64.whl (521.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

flask_inputfilter-0.4.3a1-cp37-cp37m-win32.whl (504.2 kB view details)

Uploaded CPython 3.7mWindows x86

flask_inputfilter-0.4.3a1-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.4.3a1-cp37-cp37m-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

flask_inputfilter-0.4.3a1-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.4.3a1-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.4.3a1.tar.gz.

File metadata

  • Download URL: flask_inputfilter-0.4.3a1.tar.gz
  • Upload date:
  • Size: 323.5 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.4.3a1.tar.gz
Algorithm Hash digest
SHA256 f54f7b33a825fe731b8de3467d42a56c241809911bcd5a693d942105f0ff1443
MD5 b7920a5a2a03945fb2a81e7099f764c6
BLAKE2b-256 a5ac39de87d42dd1fd356d5cc1f8fa341f25de69655e5e7eb843bb8630137efb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ccc18e54e26e055c5d8ebbae27dc3d7138dfdc02e777993c4e38a643fbacaa6e
MD5 2bec373a0eb5ebaeb3eff082b49df296
BLAKE2b-256 f85057f754d73596543443aebec1c838dd53c5ec6d3ab4446f69cea15a819884

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c22bae203eb5b51549226bdb3ba229269303268b3dc55d7f92e99d6ca212f032
MD5 d9f25d01de8fe359134d0a5a754f77da
BLAKE2b-256 46acfaee96ee3dabc1613de7522ddbad2c66c0e566caf51b22e9a01a380cc6bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eae2a436eec50d8e0c651d417d1b607e35d06e4696c1f0fd4091a042b14e7601
MD5 34ffa150286ab4d6d6ef407c541a9089
BLAKE2b-256 52f661b4667c1d40c71e0d7f663dff1f2e3a291501aa83a79e20caf61fa185cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d7461ea469f22f04fa0cd3baca20ebf8496127852a541cb9af799ff8282114c
MD5 05e49ef985ca631d000ee937cfd7a7b2
BLAKE2b-256 56744a3569b0210e51516c3eb735f2d7f30385aee65e9f9228f407cba745e19f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb407c0da646b5392027a1d76efed9c46c06b0603c983ae957c5195b9c6642fb
MD5 88185e95575628d3fd63928c0cc1238d
BLAKE2b-256 79ea6dec9a2a4f444634413adfc94ac745247f2d848256343da5fccda6a841a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab60fbc9fd535a9745bfdca460a8009a483e364fdb6e981682d8132f48c770ae
MD5 91732da04b18b530192d04fd450c0627
BLAKE2b-256 dc5c6020589d8371ea541f57738b7a6147d66b02d06eea7bb6efe7dac7db80ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e822b974c15f970e50013a8fa08f0ea9e3de9611f118391753d9e89dd2c79198
MD5 208f598b13e02367e14e04f066eb44b2
BLAKE2b-256 68d4e109fc3f8e4c71fa631d51dce96ef073d6512f6bebfa56a7006d7c52c578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f06930918cd9daaf62643c561ca2c1a45e92b3d49af8364dbe913db2eee693f9
MD5 ef67db4c09c34c263b745d31d370055e
BLAKE2b-256 12deb116b62dc12656ad68f4658786ec7b830d0c6f71903b2e7c68fad391f87e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f39dc79aadd3c3af5aa2421fa680a32b28a0393d638ef6a13f51112b154b53b3
MD5 c3058933ac391417cc25d6fe92ab65ee
BLAKE2b-256 3fcd93fa01ffd51c641c589767a6be289d10e890e13679a419034885c6464806

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 511fe59608d965585b805fca18c7b6bdaaf495666ab522d2083b8888317257e5
MD5 e1f000d79493f75ea3dbbc587912eb85
BLAKE2b-256 2b58f9771a8278fbbb370a7f303320980635c123a7a1cb6019e5f63a657cf7fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5b659bec4f0374fc7ac3e60447520d88276c86b320cf12fc242a9793d29f048
MD5 cbf664095aef0047f05fa6d3127d661a
BLAKE2b-256 4079d5559073068d9885913370ec0b729acd2e5b25494bf4a2bd1a538c5b26ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15757179449bf8940a3a708e05f0be8987225fc16b96733bfc25fd1fb2e1aa62
MD5 8ffc340fed35a02f01ba7083e63dd03c
BLAKE2b-256 9bb6f7316c7cd1db8e3973303d647c4304fb6b65000ec983092f9b9fd928f5c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7dfbb0cc0a60e4b2750068b27edfe9874695b7267732af0d1114d371fbdb6c28
MD5 8165fa633f467534e02b418eb599ebc9
BLAKE2b-256 db55becd076ffbbca721de42f1b55b308d4b25658515f8ecf23f91b8529103cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c12869449b27a0b160aeb0ac652a211cc4673735b8f59a034760deab5ff94a09
MD5 88674a5f2a2e59f7219784b20ee2052c
BLAKE2b-256 3e2b7eac52f664a19fe58ad88c52cb12727b97b0e922a4d25cad8ed7058d6d34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6f2c25f42037f4c2b6d1bf980b7dde500e487048154fd6db4788b30595245e3c
MD5 9f4daa5163bd4d582e56494934effd37
BLAKE2b-256 9d0044501375a8254b9cf70ee7fadd80a609a2b6eede955e8cf474416389805a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f51a54fa53ebd0e980d5336598d91b0b17a5fbf4df8d6519273df0c1922c7220
MD5 186ce1637d9f16b499ef92cfa90c5f51
BLAKE2b-256 38af8034e84ebac0ae8dcf078d4df08319610f7ad2053eec9b4eb1665038d900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb34c6e63795ddb41ccaa3daf186c6d198c4d5239b6ca3edebc87f3c6be31151
MD5 3fcd0eab164e94b46f10b9ecd60f8749
BLAKE2b-256 caf847cb3a518263cba5085947752be7411f644fccf7cb0c1a5683eab3f8a42d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f1c313ad66f5f5a4f390b34495cc330212aa430f9a2d5b5442166809c187301
MD5 ff377e53db00b4504bb8829a67542785
BLAKE2b-256 7a2d1473b050afc1df9237f22c40ef519c647ef824938b7b246b355e45ce26db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 168a4179829390d052236f502bccff4a7ee96410103ee86eb9ee03dcd9b28152
MD5 89b61a626cb1527d50f4b8ca11ed4b96
BLAKE2b-256 ca6307a9917c8a2ba928f8c3172c82ba8cf354c625316847a390a5bc7293f034

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f8058084435293b3c5ea0d30ecd615d07d9bf03c372ff5b18e7ceea32b74a81c
MD5 0f4a4468f19f5df2a77269c3880a6676
BLAKE2b-256 2a553fa5ee6ad77e2d80bdffae29408d3c447bb3e4cfcf3bdf5c0f97d06a1ef7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 027ddacd965e2e500178718a5f1be1222e126f3a097011cfb8ac6aee49706697
MD5 475ab372c427f7f09de7cc436d353936
BLAKE2b-256 e5a30caf7ed6c989c691a20f716d0ed69baa1aaf6d2143fd2fb371c039304980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8a7430792b0fa866a286a151a11cb52f4130e270e2f9990626cdcada8f85f11f
MD5 1de7153e32e9598f2716f36cbb145273
BLAKE2b-256 10e9000ab47e975257829ae9516bdd50e6158e0c95f49c8c2786f9331bb1105a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 81aa036f37e6cf06dcdfa537014f8f6307247173f2f73ba139f1d4fde0c07a35
MD5 00f4aa335eeb81c9b238a45e02996c92
BLAKE2b-256 ea9987936ff9c873325373fbb7fd288ad8797f7873a287cbe3b4fda5c4d15ad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7dd4c9b0826d7ad69cbdc1db37a11885fe7c0d573884fc2128c7988f3432927f
MD5 0df3478fb4a9331cbaf1c9278be01179
BLAKE2b-256 e6cca33220ea38b247f16b604d57bb95d712d4a283e5485986f1b5cbf1f28a76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc5d14e41ff82c74f99180ba5a2be419d922c2ebbff00e6dbf52ec6a50b886ea
MD5 e805d34c8a13f96469f7d3086031eb83
BLAKE2b-256 e6d770772b8f38fb83e0481fdb3d49555f81961aec93ffa6ddf275e1f3928ffe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b57aa24a24987c253e9540759d7f815f163319249aad3025b579b57968ecb8
MD5 72044943a49361fc7bb9c68b741fdf0b
BLAKE2b-256 9244c63e0eef962e4356e38f2744de3498b549c61dbcdfdad729da1cac3de218

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54384e3f686b855d547640c9355878502b82bf0fd0d7c18577a23c3fa9d1a14a
MD5 1317398cb666dfb1070925de502446b2
BLAKE2b-256 a023b29f962ec20f34abc2929f9c458cf1cfe1d5019569b2d364d56f9ad50b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87226a2789ed6f7bc2628d12e3ad7aa02c008cf562fadd500f13149366d24d97
MD5 c052ad99e63b552d19f70806e4719de8
BLAKE2b-256 abe4dc477dea67e0496f3a847c0da2256b7c9184087a4c93cf8fd123dfa385fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 160fb2327b03e9840b41921bdbc6b4f9c74b0cab55e83a511786421e418102c5
MD5 26985a19ee9bfa16e913fd6f791375bc
BLAKE2b-256 2e6918399cad2429e9943f450187289ca584856fef10dc694e20ff1a415ff8ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 90bc4145289ef427a9297ca9990edd74d5ac19eefe9b6d7601746b65bbf441be
MD5 1b2f4fe536818692d8a4544e080906da
BLAKE2b-256 fd09eb7e7bf6c79868e9355299f67a402290c33d7c0f4faf8d3be2849d1614af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd97d13ef4aa4961e9a507ca511e70dfd357e327f558662c5afbc6c759928b1d
MD5 8cdef8efafb3731f3ce01f1e2b367836
BLAKE2b-256 f69b1a90d526563008862d3110096306a5e044d5492fec5bf4a79302a70ca743

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ff6c8aa4e5ee617c26ce231879c70fbe5b4b03f930c602d1224d776f8a10783b
MD5 bc3da35e5f69b0d60d94c88135560a28
BLAKE2b-256 9895bd41d7695532b008886ef5cc010a77ad0a4bf2f4b454b560582ae8ec8335

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84c5320879aac3170d8f9ae0b48b585e8367f17d755be1237db74b3afe7f43fe
MD5 78c002c8ab516f3728becf4c2890c626
BLAKE2b-256 321e2a4114b65b807837628c92cd4037ba7d4b2edf664da9dba8dc18c109f61f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1634396cb106201bbf424da982ef4ad5ee653161c8eb1f8d1e6ba4a39cedec0d
MD5 1dd1fef65d6a830dc2927060c0571a77
BLAKE2b-256 936350b03468219b5c60c6cc061360abe0c4fdf81b3c9f92b4610e1db67b9917

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83266179561a63d0d02a7af61405555dec8cca84c590e78e1290621c0b2ff2f6
MD5 83643c4e6c6ea67087a98c0cedc9b73b
BLAKE2b-256 ca27799da591cb083b28c104af1b75708519cae2756a6a2c9200ab4414902dfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ee6401ee6121fe1329c1b9f6ba047f9ab6bc5241722729f7250fb9a5177ef525
MD5 24c23daea439e7f6c93d666edec58004
BLAKE2b-256 e0065a33540d7ce360a922cbc47527819553a8663a5dcbeb67de37a217ae04cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fb7c9101f5c8957a4f71b41e184bc02638d5d25e0c2909670a98ee74fac725f1
MD5 635555ac58575b158ad11fe2a3455eb2
BLAKE2b-256 f941bc9b8b0f6d8355d7d34d76565c833b3ca621b186d3706eadc6e13f1e4dc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c85c048dc79ae729c5098e936404b92c173fbd501dac1d34c8fa31360e6019a
MD5 0da6aec0672fd7f3ec38a6a86a9d8981
BLAKE2b-256 2c6e4ba2592f94f97d3efaa4873239711de099c8a07ba9b71caa3b92d3a866d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96ee0dcebefbbbef8ac732f233948201c0e974717c832fc547e377c4d6251779
MD5 3554c86ddb363b419ffe394965ee79f1
BLAKE2b-256 6ff3102372181b88773dc20f57db54f037c8cbc28b2bf16c6e3f6db160495b58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32b31dfd3384ca073f26ff602fc34ad9b5d9377568965f82693e05fbebcf6855
MD5 fb1ea337fba99b93603d62bc45e1f180
BLAKE2b-256 a973dc4584a9401a3404297ab3ae003868bb4b2665c5ff8df5ab0ff2f43515f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e562a52a9f1433ecfdf09e382ec6ea3fce1871a7fac86efc98e69b3d3001710d
MD5 8ee5a71adb93c4b3541e5422660a2adb
BLAKE2b-256 87a27445d78d802bbf6627af09a930e910eb7e071a29199ed4bc6260392a1249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55068d8a2f921832f8272bc47fe42321a9f6cb3195dfe2420b8212062dd76141
MD5 4eeeb495bde920a903b1d4af1782ae6b
BLAKE2b-256 3845a6f45a25652dce76b9b3482e1ed8149ea9c8683ab79b54cb7ea88f0eab6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eaf26a324083cda54d5933563f95d79ed84fa81b67086cb4c3ab14b5b65bde77
MD5 df4762ac7a556da39d3bc06f5a91fc75
BLAKE2b-256 c8da7f6cd17f65b8bd3cb024cbf51903631221235649cf028118e15b48e367a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 62dec48d6501361ec23a6637f436eaabcb7c339ad935ef5f237289b5ea92f389
MD5 b33f5e092be779be56ea4c7b33fb27ad
BLAKE2b-256 8a56c1c921af17ca98ef30125f252f7f4d2e4c043942769d012b2dc5dcf9a54e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 568792228732ae3c625a6f6c2fd0207db59851de40670c2571492b6662578240
MD5 5b68692c34d648232a6677a261cd8b08
BLAKE2b-256 d61f81a5738ff0283ef76d6d11a1ac8360fff2158920a6f8aa5e6af0ab11bb37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 897f4a2408061f945e8061ab9bb1367838d7109cf5ca247ac380f0192658c330
MD5 1152014dae059fdf90ba0b63f2937822
BLAKE2b-256 a51756327be6bcd2d3970d7aa58651a6edc9b8b5a1885d1eeb0a8e82b9465901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e7146a5542d9b877ab6cc66ccfa1ff0701cda2398611fde66084641e5f5143a
MD5 47ed22d57a937c53c89367eec435ad4a
BLAKE2b-256 84dbb6074304f5d37b94abc1b72d8c35a5ff17a53d11d186659836952518a843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.4.3a1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 542f90d035259fc7e200230b55f1a68a6e0ee943b435e9f3f16bcf5398b03eb3
MD5 1f365876d5e7d3bee643f11236d9edf3
BLAKE2b-256 9b567c731ac5f9cbf3f98b9a6340e80930ba85888a4a19bc9161186c0933c706

See more details on using hashes here.

Provenance

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