polars.Config.save_to_file#
- classmethod Config.save_to_file(file: Path | str) None[source]#
Save the current set of Config options as a JSON file.
- Parameters:
- file
Optional path to a file into which the JSON string will be written. Leave as
Noneto return the JSON string directly.
See also
loadLoad (and set) Config options from a JSON string.
load_from_fileLoad (and set) Config options from a JSON file.
saveSave the current set of Config options as a JSON string.
Examples
>>> pl.Config().save_to_file("~/polars/config.json")