Skip to main content

aiohttp basic auth middleware.

Project description

HTTP basic authentication middleware for aiohttp.

Parameters

def bam_factory(login, password, bypass_ws=False)

创建一个basic auth的middleware

login:

username

password:

password

bypass_ws:

绕过websocket请求,默认为Flase,不绕过

Usage

# server_simple.py
from aiohttp import web
from aiohttp_bam import bam_factory


async def handle(request):
    return web.Response(text="Hello")


app = web.Application(middlewares=[bam_factory('your username', 'your password')])
app.add_routes([web.get("/", handle)])

web.run_app(app)

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

aiohttp-bam-0.0.2.tar.gz (1.7 kB view hashes)

Uploaded Source

Supported by

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