xorbits.options.get_option#
- options.get_option(option: str) Any#
Retrieves the value of the specified option.
- 参数:
option (str) – The name of the option to retrieve. Can be a nested option using dot notation (e.g., dataframe.dtype_backend).
- 返回:
The value of the specified option.
- 返回类型:
Any
- 抛出:
AttributeError – If the specified option does not exist.
示例
>>> xorbits.options.get_option("show_progress") 'auto'