store

Saving, loading and other relevant operations of file-like objects.

Data saving

save_pickle(data, path_to_file[, verbose])

Save data to a Pickle file.

save_spreadsheet(data, path_to_file[, ...])

Save data to a CSV, an Microsoft Excel, or an OpenDocument format file.

save_spreadsheets(data, path_to_file, ...[, ...])

Save data to a multi-sheet Microsoft Excel or OpenDocument format file.

save_json(data, path_to_file[, engine, verbose])

Save data to a JSON file.

save_joblib(data, path_to_file[, verbose])

Save data to a Joblib file.

save_feather(data, path_to_file[, index, ...])

Save a dataframe to a Feather file.

save_svg_as_emf(path_to_svg, path_to_emf[, ...])

Save a SVG file (.svg) as a EMF file (.emf).

save_fig(path_to_file[, dpi, verbose, ...])

Save a figure object to a file of a supported file format.

save_web_page_as_pdf(web_page, path_to_pdf)

Save a web page as a PDF file by wkhtmltopdf.

save_data(data, path_to_file[, err_warning, ...])

Save data to a file of a specific format.

Data loading

load_pickle(path_to_file[, verbose])

Load data from a Pickle file.

load_csv(path_to_file[, delimiter, header, ...])

Load data from a CSV file.

load_spreadsheets(path_to_file[, as_dict, ...])

Load multiple sheets of an Microsoft Excel or an OpenDocument format file.

load_json(path_to_file[, engine, verbose])

Load data from a JSON file.

load_joblib(path_to_file[, verbose])

Load data from a joblib file.

load_feather(path_to_file[, verbose, index])

Load a dataframe from a Feather file.

load_data(path_to_file[, err_warning])

Load data from a file.

File decompression

unzip(path_to_zip_file[, out_dir, verbose])

Extract data from a zipped (compressed) file.

seven_zip(path_to_zip_file[, out_dir, mode, ...])

Extract data from a compressed file by using 7-Zip.

File conversion

markdown_to_rst(path_to_md, path_to_rst[, ...])

Convert a Markdown file (.md) to a reStructuredText (.rst) file.

xlsx_to_csv(path_to_xlsx[, path_to_csv, ...])

Convert Microsoft Excel spreadsheet (in the format .xlsx/.xls) to a CSV file.