Skip to main content

flask-inputfilter

Description

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

Quickstart

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

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

Installation

Using pip:

  pip install flask-inputfilter

Using UV:

  uv add flask-inputfilter

Using Poetry:

  poetry add flask-inputfilter

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

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

A more detailed guide can be found in the docs.

Definition

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


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

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

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

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

Usage

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

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

app = Flask(__name__)

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

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

Generate InputFilters from an OpenAPI spec

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

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

Or programmatically:

from flask_inputfilter.generators.openapi import generate_from_openapi

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

See the OpenAPI generator guide for all options.

See also

For further instructions please view the documentary.

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

Download files

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

Source Distribution

flask_inputfilter-0.8.0.tar.gz (94.2 kB view details)

Uploaded Source

Built Distributions

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

flask_inputfilter-0.8.0-cp313-cp313-win_amd64.whl (484.3 kB view details)

Uploaded CPython 3.13Windows x86-64

flask_inputfilter-0.8.0-cp313-cp313-win32.whl (454.7 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

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

flask_inputfilter-0.8.0-cp313-cp313-macosx_11_0_arm64.whl (538.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

flask_inputfilter-0.8.0-cp312-cp312-win_amd64.whl (491.0 kB view details)

Uploaded CPython 3.12Windows x86-64

flask_inputfilter-0.8.0-cp312-cp312-win32.whl (457.5 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

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

flask_inputfilter-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (545.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

flask_inputfilter-0.8.0-cp311-cp311-win_amd64.whl (492.3 kB view details)

Uploaded CPython 3.11Windows x86-64

flask_inputfilter-0.8.0-cp311-cp311-win32.whl (457.8 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

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

flask_inputfilter-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (550.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

flask_inputfilter-0.8.0-cp310-cp310-win_amd64.whl (490.6 kB view details)

Uploaded CPython 3.10Windows x86-64

flask_inputfilter-0.8.0-cp310-cp310-win32.whl (458.8 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

flask_inputfilter-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (551.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

flask_inputfilter-0.8.0-cp39-cp39-win_amd64.whl (494.4 kB view details)

Uploaded CPython 3.9Windows x86-64

flask_inputfilter-0.8.0-cp39-cp39-win32.whl (461.9 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

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

flask_inputfilter-0.8.0-cp39-cp39-macosx_11_0_arm64.whl (556.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

flask_inputfilter-0.8.0-cp38-cp38-win_amd64.whl (504.6 kB view details)

Uploaded CPython 3.8Windows x86-64

flask_inputfilter-0.8.0-cp38-cp38-win32.whl (470.9 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

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

flask_inputfilter-0.8.0-cp38-cp38-macosx_11_0_arm64.whl (575.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

flask_inputfilter-0.8.0-cp37-cp37m-win_amd64.whl (513.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

flask_inputfilter-0.8.0-cp37-cp37m-win32.whl (476.7 kB view details)

Uploaded CPython 3.7mWindows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

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

File details

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

File metadata

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

File hashes

Hashes for flask_inputfilter-0.8.0.tar.gz
Algorithm Hash digest
SHA256 745b113611b5b87162a6088ef62814392ba70d59f51aa1ce3bdb065594262581
MD5 be699020ecca369b5edf7a83a5f69f28
BLAKE2b-256 f5f90e2a38349323fee81ddd8a1b6a129535173ef56eeed58a8df981e7d24baf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d889865c858cfc23ab1497c189e1e73430094b8f9b4868024f64fbb2f1e803f
MD5 c58f93f2e27cb84b0debd3282905df95
BLAKE2b-256 54364646d8a420772362b6093ce8d10d164d504543b27ba9e4678d9963f3b1ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a57912eb025f13671f6fbc7fd5161021bece59fcb0a40e2f3455a3ccf4b97d51
MD5 6316dc00219178bb666721964a80f6b4
BLAKE2b-256 a6e41e7c23aa00e1e2f61dcf7a593d2f3d7548491e2b2e08249905e677ef8fdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54f354148f1900ab368ff5af379bcc77c3d67d2a1373bbbfa283bb48e3e6e6fd
MD5 171b9ce3394df5920a4d702421b70dc2
BLAKE2b-256 9777ce4d371cd4e149f050caa675dd283b0533b978525d52f9493277a4387a51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb18e5666e57f8c6ef842e874408e91ccab77a309f9e9a90aadb365ac4364781
MD5 6801c6f81f1eb919f25a64cd601c2c71
BLAKE2b-256 33926467f3e80ded6d0969fff9ce763b7273123cd703697bbbac84a05733bfa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 795780ee14e2830df698f411ef6f95eb03ef36955ce986d40d28cc314c9d4cf8
MD5 14de68c2f06e18fbbb4e057d91546d22
BLAKE2b-256 b223450e38ce2a26e50397c03a4fd33b1343d2c40537b1f0ed818d325a13b81e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 933965a5282fc5e3f03eda3284498f2de9b87820dd30f94c5feeb4e5060b171a
MD5 6da493c2eddfd33c877665acd64f5edc
BLAKE2b-256 354a6fb69ee3469fb0c661d7d7a7064ea67e7583a2316a410d657c5d03abeae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaf28eda6cd619dacfd300cb1c1b3a8487ab71c1541d3e0d937fe406139ad47b
MD5 3357290d34c8586a5dc291564b8a014f
BLAKE2b-256 bb8e0a59df05409340a4a21dc7f7c28908064e8f2832a62fd91d68aa4ca6f993

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.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.8.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.8.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca0d007810c23be1dd1ee79acec61ae9827ad694a1c88348897020df1ee5c84b
MD5 99356022d38a077ac8c0e90aa25aec97
BLAKE2b-256 28045dd791208b54c779e410d2c204774884c875f2ebb73f076bc80cca86e3fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dda556405760c936d1ec4b3c0ec302c34802b6426b87995954765501ec76aa69
MD5 eeb81cbcb4661ebc1f21ef6659324efb
BLAKE2b-256 af4c9f73dd9a76825ceeec570d145b957a2be681162256478f3b2e3cc10d0c96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 824ec6f053e47d992e9848bf0108c6f9e1589177e032ce1318e9efadd6138cc2
MD5 47629f7e767bdf7ec0b5269dceff7370
BLAKE2b-256 1c3d79c61a774def39e8c62572d2eb1f7172b94d77d26a536509cf286408830f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b43a2ae2a43f1fb623ab80a16708341abab440241ea6a9fff30c5a70e760df9e
MD5 e2c92c36d90a4e8af57fae2eeb9cf399
BLAKE2b-256 01bcfb34ee9326e3c2228a767c91dcc58d0c55daf3afc241ae1d8145f3d56655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a2c17c8a8879045d54f6ec5719a6cee99039388c9a2c1da449001fadf6e64dd
MD5 8b952d7b15558a59a280b9ab180382d5
BLAKE2b-256 2217a50d6f61e81797b3031733be1a352b90320789c98807d982d4e034c94042

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0120253fd4150ed2e77a9e7037e52408f37ed999fd1df5012d7c6084a4074144
MD5 c058b7cb8feb70695cd68014bf0e6b4b
BLAKE2b-256 189da74e4bd2649c6c9c1a24d2c36c40365f34cd425da69af4ad7aed5d1a5ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b6d8c914e48d8743d587791b33728bc9ece3b0d3a160ed66e666737e4e94a07
MD5 d6ee8e1b70cb4a65f4ba52a21f6dcd20
BLAKE2b-256 e1e68e76bd429431d52dcc1f1966d28192eea0aed476f6b8bbd27fed6ccd4111

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80b435c11d843c2f76d640af1ee074a5cac985e01a83db6ac04c5b5848068624
MD5 4c991e00ba09a9a1a48a56bac78f1890
BLAKE2b-256 3876976f93797da54ab0adf624f2614b1492c0f103ed20699450a81ed7d36a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4b13b32f32450001121100073473640e26078a81ea4a995726671654454bfb1
MD5 fde775c7e6697739a0c83fa890bdfcab
BLAKE2b-256 ff25bf31a7f31c80710416956a0e44b721512cdff520fd968a93d66c5144f935

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.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.8.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.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 553f1d796587a9f18eeab73eb625902da7ae219a396ad8a2cfa268dd3dd8f33c
MD5 dacff5e5037907829315af333583b61e
BLAKE2b-256 2bf465484662a04d9e84d06fa5eeb85d15369ad03c65c618167a840787f944e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5ac6110f646d5d4240ac70b4b66991d52077fe927838e2faaa9a37350b90e1a
MD5 e82ff04d9318b557b775805818d52ba9
BLAKE2b-256 599a91d6a56beca1658ae73b457639fcc59a314f7428b7d478eec316c7bf40d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 06fc435944c595170390c6a574171fc0738da700903e6dedd0b46a817b626c08
MD5 bfbace748882cf1fc42229fc901aabfa
BLAKE2b-256 98d33817aae98c404e81891c41befcf6d9c7c440ad2901e26b7d23f4279eb30d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7e34c2a1e0e67de6fb1f631825072d347241c175da1a0bf5a9b3de0dd9f36078
MD5 00962e2e082c4452b536dfb777b7c6ef
BLAKE2b-256 41efec860021362776bb4efc90d3db15cbe790a2b9b29e85e94fa7a8d9faa285

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07d2b4c1cb02c9fd22d4e0fce08ef36efcb0e07526b60d8e9459ce75abd5ba33
MD5 bae5899932fffcc6186fd44973a45768
BLAKE2b-256 711fd7f2bc71a1626986f3f1ca76c07afababfb66a1aa41acd379824405591e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2fc9db9a8283dc0df5f0e97d18bbc28cbdce63cc10e6909839ba367e328034bd
MD5 05c642937397b94a369a8fb707946c93
BLAKE2b-256 3b02fb292d6e67250e56a0e70460a5727281ffc9943b2f54a0c0e594cc781391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3afa0c255b7a09090bcd625a7f7ff9ae555ff4604cd6416c1195872bc5322135
MD5 056573784cf9ce9e199bc6da6609890f
BLAKE2b-256 93c2927daa45cd7c17a02330c3fd77c055dcffdc6e0231dd13134e954c00dca5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bdb1bccedc76cf6f45e3ba363a5cb259823fcb4422ec7beede415ededb90890
MD5 d180b6fbf2978328fe3a734e1631b361
BLAKE2b-256 1e4dcaa0a4e223c3f34165165290fb30de27465e26aea8011cf490dd4757140e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ab12b5fbc93878c894b5fe1fa4c7f2d7a19c98c2a8a4b823ca0bad83e879b71
MD5 c57fcc94db88245330e2bf64fce46724
BLAKE2b-256 14274e941ec920b6984a0801d14c9eafe077f33783893bf65d11907c2e7cffa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.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.8.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.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7beed51aefb53683ef11be898147fa2052290a5f289d7be93226e1f305bbf4c3
MD5 411f08086bb90c807e24b8e5fbe4f188
BLAKE2b-256 9809f9cd42bf23c6f98122e0cbb4f1b05b6d4138a15b5ae95ffe6d53cd361604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc3dd4e68873e368024b9fefa3456f97286db4608ac430bc3971868ba3f2d614
MD5 1a5a9bffe445b89fee261016cfcb889d
BLAKE2b-256 fb1f501db467c0456ab8f8db31f2b023c6b3089d61fe811ba0b168db8b1ac721

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e77584e72ff2accae8471f35ba664a10b00297c34aceafb5a1a996ebbcbe87d4
MD5 edacb37d27285f5b11374b6544796fc8
BLAKE2b-256 37b97c7baffa33afb8ed3573a41255fc635e2897f50280dc6863d140a502a58a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 84c15b5861cd689f6c5e0f1051b69c7d1da7f92eee3df0483287658cf694a926
MD5 1c97b5e72e146d34c5e99eac4ea99c18
BLAKE2b-256 c66b6a975f029467a1bd96ad53a239a915880c86b832af6951345f8c099e6532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba959fa1df2b1c80f77e1bf0ac22b3e2774829ba04e7fe4c2bd68e25bf4c3ee8
MD5 2a25bacec58df6b48e78780a59498739
BLAKE2b-256 1765f46f8ee7c37ac6ca50d2f25ff81a2badfdf25445ad0f47c6f19afa422350

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ae5a88457935d253affc695006a0e0d7dc0cf869778ddda8ebd997c59a4227f
MD5 c83d15215ec7a8d3f705f08a81ab64a4
BLAKE2b-256 1b58b80dcf522d06513b071a646e31cf4e185ddb624231732dec8c032d2e48a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47780bf19edb9c7b6fe3522e6c3b08c9d6eb3715ff79d1189114f5ba8874bea5
MD5 f8121c7cc031f2dbf90f133b8bfbdf65
BLAKE2b-256 0e240670b92a53b1fac73facc1a3fbe143093fc4327a41d6c1df74adcf4ff11b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfbd79fb9b2f2306eb17bd38c36f12b289b5c85808c520851c727d23a45a7fd0
MD5 009e41918090819388eaf4b2f540b8bf
BLAKE2b-256 db8a64262c8efc7ff0c1780e38dd18cde8764a9991d6b3f4fbfdc3550b248440

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb08435b5d3312681b347372654c6af8e2e82730626a0328aa7c0fbe4a401629
MD5 20385fd7f05fbb304e985af19e2aba0d
BLAKE2b-256 1ae8659b95208a350e5d56cd17e7e3461ec8bd260c1b253d81463f79fd0276e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.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.8.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.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc654d47ec13233992c7b2c271988f793ef46327e4731b149497e7ea78ac1785
MD5 11074e0debab76e1373116f075b628d5
BLAKE2b-256 1458d493256350a22ad6a1a46dc1b0d34feca7c9285fef4fbf581ed9a8faad84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 881878d0dc69e281e2f807f30a2e3fa0288dd4cbbf83b0b0b4aea20540478bce
MD5 a923fe2579e6b63eaaa87d67488bcd5e
BLAKE2b-256 2e846b53b83a3b1fb8cc42313ee2ec14d846d18429efe71680899e17ff727268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 25cc0a46d295b8be95fd1b871353fc185108d3692f8fa948fe2e76c2883b730f
MD5 5644567420ec0a15191c9232505dd319
BLAKE2b-256 d3522ab5751a817cf80983268320d16ae72c23873c88a736f6548ae648e5805b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5e0ae924c6ab82041542f4f42d03f2690a7b3533cc9544c9b09044a157994946
MD5 c7bc35859a4dab20f83a3eccb07888b2
BLAKE2b-256 44a867e0546f5b93201d611983bf2d570303af5099a2296ba196b7682566e230

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0a3b5ceb9e9cf987a9cbc4f8a43643245b837855fdc5997260592edfe9be0eb
MD5 1ae581eb17fbe8f4144cbabc7fcffed2
BLAKE2b-256 bb8a92f5353e5e27c0b42099d292d55c4db4d5454d431b0713257244006521b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f58ffabe03e2e040813550697ebc20b2ef15e81c2c7b2420af016dc3f53ccca7
MD5 0d33f12585bc4cef6ae24c776618025e
BLAKE2b-256 968bb50c9eacf50c4476ebb96c5d416bbd45a226f89da5f8790679ba9f8966ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0bddb5cbbe66dd9a9cfde8e6903e4ca688dd217826ba34f25e6e3fe74cde02f
MD5 76c527f1bf7e8277071d21e98f66d427
BLAKE2b-256 02991a0f25193852be05ac37ecaf4d560fe40d0164f0267d5fd1ea621ef4bff0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ca085061307afdb230e25b9d905d8c293a987c6d87cb75486802f961fd26731
MD5 af334bd577bd67c0c876b447267431fe
BLAKE2b-256 c9531e6ad985ea3caf2d535a053cdaba90a5307f02c92d3c19a40afa81f17e83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cae03968ca971977667d928977f46c3b1cc14595d6b628a12bf2e3c51d33def2
MD5 f8f1051bc799f910a561542f8f9dc2db
BLAKE2b-256 ef2e6aa1686496b250cfe899329ecaf47d0f4a5a6298a3e4f642a1202addcf06

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.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.8.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.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 706c2317f88c3dd2864bbf5949567babecbb2e7c30a3b6720575aad650495927
MD5 e37c461409c7a356b2921b0ce87f5c48
BLAKE2b-256 189450d05942f2730477e87c9de9cea3c830fbde0b2a52519aecf7cbdd8bc3e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c99206147d0034cff0ccb46cf6429ba2ecb64e4b03c33070c6805532db881816
MD5 a6ffaa65dbe432046221bb0b6cae96eb
BLAKE2b-256 66c34feac5ad63c6fb9b0ee597046765a36cfd143e6f5477ad19b8908e447a4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 73c36361bbd45209075174ddf95caf39f8b44cc7e4bae0b39bbcb0d5ecc55dc0
MD5 d638381af9c4d934d62a01d3b2618786
BLAKE2b-256 5f1cf9cbdac26f41ccf3ba9c6bab95bc3c248620a9784b18586751d7ff154710

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 674ad155e438bc0ce31f789f2b874a94fcb96f3bebb5286ea37f95f21b9b5600
MD5 7d7f632ba7fda67452a1aa8a256f4bcd
BLAKE2b-256 caf9494b6621b38ddaab37be89e687c26aba540a51084a9a9098ebd106cb5e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8473c7ada80818371c648ddeb9f53ae7699d220866ead5cdcb1806df5b7c270b
MD5 baa8223d520aaa347463bdae2a0e5333
BLAKE2b-256 370006d6cebf9a05ddd7aadaf507d1a754719b1a59584f2c6d3f0630716cf15f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96e01a503229caac603f7e289034f1fed35d60c7f3cbac1ba828730e66db8f99
MD5 4e634374d6482e402431d35fd6cba297
BLAKE2b-256 54a200b20e9beb7450dc4732414793a2a0e55a016c92fdefe18df60e6eeab492

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17be4ba78845ee79bfcd9b373006ffdc8eea8438490dbf41518a2c4014c54ac3
MD5 dd95dec6faf8a493d1f8d50058c4c37f
BLAKE2b-256 a47a1b0e1dea1b770ecb869ffc92d2693132e7d5a7791e54c7a6e243f5d7feed

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2912be284aad11839f6ded40b687b22bfccb53e2621edd34c70f52e49b4a8682
MD5 b264be51516a1c0e86ba34995c4d303d
BLAKE2b-256 8d4830020c78fbf48ff589e113608c7b61ba5ff4ac42688fc50ca00b97fd672a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1dd00051af7cf693c587a017a98a3bde15ddbccb618cfad0fde88e3c6963ef0
MD5 8fab3e85896de9f02844ffa013dbac9f
BLAKE2b-256 5b7845bcd70b029ca8773466d9cb121587d1c8e635dcee8417e93c739f9bfe94

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.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.8.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.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11b46dbc7141f8404ada06988d9c7a801ad56389c56185e179e938cd9c1847f0
MD5 92723b92e46b8fb227095e8a3cc5760c
BLAKE2b-256 d306f0e42be9ec48d9985343baedc8eef3303ae40c70bbd9ecd871ad1ab807ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 915b61c3d8b5c39bd9a6cea9316587cabeafe10954ee9171f9b0d7b3868ae5dd
MD5 b7c6d4a1e172315159daeb27eee99e37
BLAKE2b-256 5f9f799c43469d5dd6f0c5fc40c68ee95d31fddb54870b92f5639aeab6a765d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0dabe07a093f6a6ea8cb7129b010d56bdba61a41548da3090f06d575df53fdd1
MD5 8b0fa07c87f5b741cf4eb90046fa5c2d
BLAKE2b-256 e9a9fd4700963b6c14a8a3137e4055c8cf161708270454d177014e034918e1be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b01662a1f77c7b9b8444fa9d24a1b02b752f6e65ecab0d75c0777cbb9751d4c2
MD5 d11d3c046df99146f58a6d01bfbc0753
BLAKE2b-256 260e3b2ddbc906c46436ed0953fe48a9349ca29aac6a0f275a05d553891ce1c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5f42b03cd9b15a7eceec889d21d9ac18b82c2d6b9ed86b7ae2fdbe1046c6a30
MD5 ef1a02bcd570bf10c9547ed1c421c779
BLAKE2b-256 049d92a9d455413a3731c82b8c282235b8a397f78786f1512676f8e801face3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69d0c6c4402c7b6f4ac49e186fc01946276ef4f5f20ecc84976a4ffb58d35c08
MD5 4135301122c2eaf0552592011ceddac5
BLAKE2b-256 1ac521e3fe73caff6be6ea9d426bad6f675437183f9af53d965ca6dbdd8dc186

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac20667e2b4aad775d5558acc39e48822b9c374f5ef562ac2229861e8962956b
MD5 1ffcdf37e0bb36c877e73c32d28617cd
BLAKE2b-256 46f62310bc8ddfa632adc6abd4599e467cecce3efc54efe0ffc8a03030a663bc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e18e4b12e2cce7145eb9d85a76e95889c4d8cf454f3edea64ad174199550c253
MD5 cd1921c25addda7d74960437c0984925
BLAKE2b-256 71f2277618b6d106687370e848761aaa69721ba59854a911f4955c1865da9468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for flask_inputfilter-0.8.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b56e32100f38c1fc0ab580dc1fde8e8cb7082eee66ec64ada42b4692c23a174a
MD5 7eb3e3e58d2459d902de1a256c3e9f0c
BLAKE2b-256 770ae230502a615eafc278e0663506446975c3ad31f8321841d453a7d7a37128

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_inputfilter-0.8.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.8.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.8.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fec21acb1ab88ac8657d7e6fdda40616e1921658041660e6c8997d3d00f4135
MD5 eb69cd123bdf30b5f1a47e53fbee9f8c
BLAKE2b-256 bcb6fed1b9d1427074329e4d493750bb26308c5887eb6f0714cf9436f427b36e

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.8.1

63 files

This release

0.8.0 This release

63 files

0.7.5

63 files

0.7.4

63 files

0.7.3

63 files

0.7.2

63 files

0.7.1

63 files

0.7.0

63 files

0.6.3

63 files

0.6.2

63 files

0.6.1

63 files

0.6.0

63 files

0.5.5

63 files

0.5.4

63 files

0.5.3

63 files

0.5.2

63 files

0.5.1

63 files

0.5.0

56 files

0.4.2

13 files

0.4.1

1 file

0.4.0

1 file

0.3.1

2 files

0.3.0

2 files

0.2.0

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.10

2 files

0.0.9.1

2 files

0.0.9

2 files

0.0.8

2 files

0.0.7.1

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

0.0.0

2 files

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