![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
.. image:: https://github.com/playpauseandstop/aiohttp-middlewares/actions/workflows/ci.yml/badge.svg :target: https://github.com/playpauseandstop/aiohttp-middlewares/actions/workflows/ci.yml :alt: CI Workflow
.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white :target: https://github.com/pre-commit/pre-commit :alt: pre-commit
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg :target: https://github.com/psf/black :alt: black
.. image:: https://img.shields.io/pypi/v/aiohttp-middlewares.svg :target: https://pypi.org/project/aiohttp-middlewares/ :alt: Latest Version
.. image:: https://img.shields.io/pypi/pyversions/aiohttp-middlewares.svg :target: https://pypi.org/project/aiohttp-middlewares/ :alt: Python versions
.. image:: https://img.shields.io/pypi/l/aiohttp-middlewares.svg :target: https://github.com/playpauseandstop/aiohttp-middlewares/blob/main/LICENSE :alt: BSD License
.. image:: https://coveralls.io/repos/playpauseandstop/aiohttp-middlewares/badge.svg?branch=main&service=github :target: https://coveralls.io/github/playpauseandstop/aiohttp-middlewares :alt: Coverage
.. image:: https://readthedocs.org/projects/aiohttp-middlewares/badge/?version=latest :target: http://aiohttp-middlewares.readthedocs.org/en/latest/ :alt: Documentation
Collection of useful middlewares for aiohttp.web
_ applications.
Python
_ 3.8+aiohttp.web
_ 3.8.1+on Read The Docs <https://aiohttp-middlewares.readthedocs.io/>
_on GitHub <https://github.com/playpauseandstop/aiohttp-middlewares>
_.. _aiohttp.web
: https://docs.aiohttp.org/en/stable/web.html
.. _Python
: https://www.python.org/
By default aiohttp.web
does not provide many built-in middlewares <https://docs.aiohttp.org/en/stable/web_reference.html#middlewares>
_ for
standart web-development needs such as: handling errors, shielding view
handlers, or providing CORS headers.
aiohttp-middlewares
tries to fix this by providing several middlewares that
aims to cover most common web-development needs.
For example, to enable CORS headers for http://localhost:8081
origin and
handle errors for aiohttp.web
application you need to,
.. code-block:: python
from aiohttp import web
from aiohttp_middlewares import (
cors_middleware,
error_middleware,
)
app = web.Application(
middlewares=(
cors_middleware(origins=("http://localhost:8081",)),
error_middleware(),
)
)
Check documentation <https://aiohttp-middlewares.readthedocs.io/>
_ for
all available middlewares and available initialization options.
FAQs
Collection of useful middlewares for aiohttp applications.
We found that aiohttp-middlewares demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.