This is an automated email from the ASF dual-hosted git repository.

xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git


The following commit(s) were added to refs/heads/main by this push:
     new 9c1155c58 fix(bindings/python): wrong filename used when reading CSV 
in pandas exemple (#6057)
9c1155c58 is described below

commit 9c1155c584aceaa418893a3a257803907eb86951
Author: Frex-is <[email protected]>
AuthorDate: Sun Apr 20 07:09:36 2025 +0200

    fix(bindings/python): wrong filename used when reading CSV in pandas 
exemple (#6057)
---
 bindings/python/docs/examples/pandas.ipynb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bindings/python/docs/examples/pandas.ipynb 
b/bindings/python/docs/examples/pandas.ipynb
index 8a444ddf1..071163ea7 100644
--- a/bindings/python/docs/examples/pandas.ipynb
+++ b/bindings/python/docs/examples/pandas.ipynb
@@ -27,7 +27,7 @@
     "op.write(\"test.csv\", b\"name,age\\nAlice,25\\nBob,30\\nCharlie,35\")\n",
     "\n",
     "# Open and read the DataFrame from the file.\n",
-    "with op.open(\"test123.csv\", mode=\"rb\") as file:\n",
+    "with op.open(\"test.csv\", mode=\"rb\") as file:\n",
     "    read_df = pd.read_csv(file)\n",
     "    print(f\"read_df: {read_df}\")"
    ]

Reply via email to