xorbits.options.get_option#
- options.get_option(option: str) Any#
Retrieves the value of the specified option.
- Parameters:
option (str) – The name of the option to retrieve. Can be a nested option using dot notation (e.g., dataframe.dtype_backend).
- Returns:
The value of the specified option.
- Return type:
Any
- Raises:
AttributeError – If the specified option does not exist.
Examples
>>> xorbits.options.get_option("show_progress") 'auto'