---------------------------------------------------------------------- This is the API documentation for the gdtest_ref_big_class library. ---------------------------------------------------------------------- ## Core Core API Manager(name: str) A manager for orchestrating tasks and resources. Parameters ---------- name : str The name of the manager instance. Examples -------- >>> m = Manager("prod") >>> m.status() 'idle' create_manager(name: str) -> gdtest_ref_big_class.core.Manager Create and return a new Manager instance. Parameters ---------- name : str The name for the new manager. Returns ------- Manager A new Manager instance. Examples -------- >>> m = create_manager("main") >>> m.name 'main'