---------------------------------------------------------------------- This is the API documentation for the gdtest_ref_members_false library. ---------------------------------------------------------------------- ## Core Core API Engine(name: str) A configurable engine for processing tasks. Parameters ---------- name : str The name of the engine. Examples -------- >>> e = Engine("turbo") >>> e.status() 'idle' start_engine(config: dict) -> 'Engine' Create and start an engine with the given configuration. Parameters ---------- config : dict A dictionary of engine configuration options. Returns ------- Engine A running Engine instance. Examples -------- >>> engine = start_engine({"name": "main"}) >>> engine.status() 'running'