From 9f55107f9d5a988dfe0a757a1f203527ca54084b Mon Sep 17 00:00:00 2001 From: John Lyu Date: Sat, 19 Oct 2024 20:11:19 +0800 Subject: [PATCH] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3468cb9..01b2bfb 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ dataframe_image has the ability to export both normal and styled DataFrames as i You may also export directly from the DataFrame or styled DataFrame using the `dfi.export` and `export_png` methods, respectively. ```python +>>> import dataframe_image as dfi # you have to import it first to enable this plugin >>> df.dfi.export('df.png') >>> df_styled.export_png('df_styled.png') ```