當前位置: 首頁>>代碼示例>>Python>>正文


Python flask_restx.Namespace方法代碼示例

本文整理匯總了Python中flask_restx.Namespace方法的典型用法代碼示例。如果您正苦於以下問題:Python flask_restx.Namespace方法的具體用法?Python flask_restx.Namespace怎麽用?Python flask_restx.Namespace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在flask_restx的用法示例。


在下文中一共展示了flask_restx.Namespace方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: initialize

# 需要導入模塊: import flask_restx [as 別名]
# 或者: from flask_restx import Namespace [as 別名]
def initialize(graph):
    api = Namespace('ingestor', description='Ingestor API')

    event_dispatcher = linker.EventDispatcher()
    graph.add_listener(event_dispatcher)
    ingestor_registry = IngestorRegistry(api, graph, event_dispatcher)

    ingestor_modules = []

    if CONFIG.ingestors.prometheus.enabled:
        ingestor_modules.append(alerts.prometheus)

    if CONFIG.ingestors.falco.enabled:
        ingestor_modules.append(alerts.falco)

    if CONFIG.ingestors.elastalert.enabled:
        ingestor_modules.append(alerts.elastalert)

    for ingestor_module in ingestor_modules:
        for ingestor_bundle in ingestor_module.get_ingestors():
            ingestor_registry.register(ingestor_bundle)
    return api 
開發者ID:openrca,項目名稱:orca,代碼行數:24,代碼來源:ingestor.py

示例2: initialize

# 需要導入模塊: import flask_restx [as 別名]
# 或者: from flask_restx import Namespace [as 別名]
def initialize(graph):
    api = Namespace('graph', description='Graph API')
    api.add_resource(Graph, '/', resource_class_args=[graph])
    return api 
開發者ID:openrca,項目名稱:orca,代碼行數:6,代碼來源:graph.py

示例3: namespace_test

# 需要導入模塊: import flask_restx [as 別名]
# 或者: from flask_restx import Namespace [as 別名]
def namespace_test(args):
    """
    Generate a new Flask-RESTplus API Namespace
    """

    CONTENTS = f"""import pytest

from app.test.fixtures import app, client
from .{args.output_name} import {args.output_name.title()}, {args.output_name.title()}Schema


@pytest.fixture
def schema():
    return {args.output_name.title()}Schema()


def test_schema_valid(schema):  # noqa
    assert schema


def test_post(app, client, schema):  # noqa
    with client:
        obj = {args.output_name.title()}(id=42)
        resp = client.post('{args.output_name}/', json=schema.dump(obj).data)
        rv = schema.load(resp.json).data
        assert obj.id == rv.id


def test_get(app, client, schema):  # noqa
    with client:
        resp = client.get('{args.output_name}/?id=42')
        rv = schema.load(resp.json).data
        assert rv
        assert rv.id == 42

"""
    print(args)
    _generate(
        CONTENTS,
        output_name=args.output_name
        and args.output_name.replace(".py", "") + "_test.py",
        filename=args.output_file and args.output_file.replace(".py", "") + "_test.py",
        dry_run=args.dry_run,
    ) 
開發者ID:apryor6,項目名稱:flaskerize,代碼行數:46,代碼來源:generate.py


注:本文中的flask_restx.Namespace方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。