Lines Matching full:from
7 This is the main entry point for generating C code from the QAPI schema.
11 from importlib import import_module
13 from typing import Optional
15 from .backend import QAPIBackend, QAPICBackend
16 from .common import must_match
17 from .error import QAPIError
18 from .schema import QAPISchema
39 raise QAPIError(f"unable to import '{module_path}': {ex}") from ex
45 f"module '{module_path}' has no class '{class_name}'") from ex
51 f"backend '{path}' cannot be instantiated: {ex}") from ex
68 description='Generate code from a QAPI schema')