当前位置: 首页>>代码示例>>Python>>正文


Python auth.AuthMiddlewareStack方法代码示例

本文整理汇总了Python中channels.auth.AuthMiddlewareStack方法的典型用法代码示例。如果您正苦于以下问题:Python auth.AuthMiddlewareStack方法的具体用法?Python auth.AuthMiddlewareStack怎么用?Python auth.AuthMiddlewareStack使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在channels.auth的用法示例。


在下文中一共展示了auth.AuthMiddlewareStack方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: create_application

# 需要导入模块: from channels import auth [as 别名]
# 或者: from channels.auth import AuthMiddlewareStack [as 别名]
def create_application() -> ProtocolTypeRouter:
    """Create an ASGI application."""
    # Load static modules on startup.
    #
    # This means starting a kernel and validating all static modules. There are
    # two good reasons to load during startup:
    #
    # 1. In dev mode, this reports errors in modules ASAP -- during startup
    # 2. In production, this import line costs time -- better to incur that
    #    cost during startup than to incur it when responding to some random
    #    request.
    cjwstate.modules.init_module_system()
    if not settings.I_AM_TESTING:
        # Only the test environment, Django runs migrations itself. We can't
        # use MODULE_REGISTRY until it migrates.
        MODULE_REGISTRY.all_latest()

    return ProtocolTypeRouter(
        {
            "websocket": AuthMiddlewareStack(
                SetCurrentLocaleAsgiMiddleware(create_url_router())
            )
        }
    ) 
开发者ID:CJWorkbench,项目名称:cjworkbench,代码行数:26,代码来源:asgi.py

示例2: create_url_router

# 需要导入模块: from channels import auth [as 别名]
# 或者: from channels.auth import AuthMiddlewareStack [as 别名]
def create_url_router() -> AuthMiddlewareStack:
    return AuthMiddlewareStack(
        URLRouter([url(r"workflows/(?P<workflow_id>\d+)", WorkflowConsumer)])
    ) 
开发者ID:CJWorkbench,项目名称:cjworkbench,代码行数:6,代码来源:asgi.py

示例3: TokenAuthMiddlewareStack

# 需要导入模块: from channels import auth [as 别名]
# 或者: from channels.auth import AuthMiddlewareStack [as 别名]
def TokenAuthMiddlewareStack(inner): return PrinterWSAuthMiddleWare(AuthMiddlewareStack(inner)) 
开发者ID:TheSpaghettiDetective,项目名称:TheSpaghettiDetective,代码行数:3,代码来源:authentication.py


注:本文中的channels.auth.AuthMiddlewareStack方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。