This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-1.3 in repository https://gitbox.apache.org/repos/asf/paimon.git
commit b572f8173f7f415b7cb60199ab32c4d657476168 Author: Jiajia Li <[email protected]> AuthorDate: Wed Sep 17 09:58:43 2025 +0800 [doc] Fix Python code syntax errors and typo in PVFS documentation (#6269) --- docs/content/concepts/rest/pvfs.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/content/concepts/rest/pvfs.md b/docs/content/concepts/rest/pvfs.md index dac247ef5c..7a68351458 100644 --- a/docs/content/concepts/rest/pvfs.md +++ b/docs/content/concepts/rest/pvfs.md @@ -128,7 +128,7 @@ Example: execute hadoop shell to list the virtual path ## Python SDK -Python SDK provide fsspec style API, can be easily integrated to Python ecesystem. +Python SDK provide fsspec style API, can be easily integrated to Python ecosystem. For example, Python code can do: @@ -136,9 +136,9 @@ For example, Python code can do: import pypaimon options = { -"uri": 'key', -'token.provider' = 'bear' -'token' = '<token>' + 'uri': 'key', + 'token.provider': 'bear', + 'token': '<token>' } fs = pypaimon.PaimonVirtualFileSystem(options) fs.ls("pvfs://catalog_name/database_name/table_name") @@ -151,9 +151,9 @@ import pypaimon import pyarrow.parquet as pq options = { -"uri": 'key', -'token.provider' = 'bear' -'token' = '<token>' + 'uri': 'key', + 'token.provider': 'bear', + 'token': '<token>' } fs = pypaimon.PaimonVirtualFileSystem(options) path = 'pvfs://catalog_name/database_name/table_name/a.parquet' @@ -169,9 +169,9 @@ import pypaimon import ray options = { -"uri": 'key', -'token.provider' = 'bear' -'token' = '<token>' + 'uri': 'key', + 'token.provider': 'bear', + 'token': '<token>' } fs = pypaimon.PaimonVirtualFileSystem(options)
