mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
73b8a4aac4
* Introduce wiring inspect filter * Upgrade exclusion filter * Refactor wiring
35 lines
813 B
Python
35 lines
813 B
Python
import sys
|
|
|
|
from flask import Flask, jsonify, request, current_app, session, g
|
|
from flask import _request_ctx_stack, _app_ctx_stack
|
|
from dependency_injector import containers, providers
|
|
from dependency_injector.wiring import inject, Provide
|
|
|
|
# This is here for testing wiring bypasses these objects without crashing
|
|
request, current_app, session, g # noqa
|
|
_request_ctx_stack, _app_ctx_stack # noqa
|
|
|
|
|
|
class Service:
|
|
def process(self) -> str:
|
|
return 'Ok'
|
|
|
|
|
|
class Container(containers.DeclarativeContainer):
|
|
|
|
service = providers.Factory(Service)
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
@inject
|
|
def index(service: Service = Provide[Container.service]):
|
|
result = service.process()
|
|
return jsonify({'result': result})
|
|
|
|
|
|
container = Container()
|
|
container.wire(modules=[sys.modules[__name__]])
|