16 lines
384 B
Python
16 lines
384 B
Python
import bopytex.default_config as DEFAULT
|
|
from bopytex.service import orcherstrator
|
|
|
|
|
|
def bopytex(**options):
|
|
|
|
config = options.copy()
|
|
config["jinja2"] = {}
|
|
config["jinja2"]["environment"] = DEFAULT.jinja2_env
|
|
|
|
orcherstre = orcherstrator(
|
|
config, planner=DEFAULT.planner, dispatcher=DEFAULT.dispatcher
|
|
)
|
|
for message in orcherstre:
|
|
yield message
|