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

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git

commit d22f14d1fdcd85a4075ca8c1a30413bef2b4bc47
Author: Jingsong Lee <jingsongl...@gmail.com>
AuthorDate: Thu Aug 28 10:58:23 2025 +0800

    [python] Move pvfs implementation to a pvfs.py (#6163)
---
 paimon-python/pypaimon/__init__.py                              | 6 ++++++
 paimon-python/pypaimon/{ => filesystem}/__init__.py             | 0
 paimon-python/pypaimon/{pvfs/__init__.py => filesystem/pvfs.py} | 0
 paimon-python/pypaimon/tests/pvfs_test.py                       | 2 +-
 4 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/paimon-python/pypaimon/__init__.py 
b/paimon-python/pypaimon/__init__.py
index a67d5ea255..4273f0d868 100644
--- a/paimon-python/pypaimon/__init__.py
+++ b/paimon-python/pypaimon/__init__.py
@@ -14,3 +14,9 @@
 #  KIND, either express or implied.  See the License for the
 #  specific language governing permissions and limitations
 #  under the License.
+
+from pypaimon.filesystem.pvfs import PaimonVirtualFileSystem
+
+__all__ = [
+    "PaimonVirtualFileSystem",
+]
diff --git a/paimon-python/pypaimon/__init__.py 
b/paimon-python/pypaimon/filesystem/__init__.py
similarity index 100%
copy from paimon-python/pypaimon/__init__.py
copy to paimon-python/pypaimon/filesystem/__init__.py
diff --git a/paimon-python/pypaimon/pvfs/__init__.py 
b/paimon-python/pypaimon/filesystem/pvfs.py
similarity index 100%
rename from paimon-python/pypaimon/pvfs/__init__.py
rename to paimon-python/pypaimon/filesystem/pvfs.py
diff --git a/paimon-python/pypaimon/tests/pvfs_test.py 
b/paimon-python/pypaimon/tests/pvfs_test.py
index 8bebb9855d..4aa17706ee 100644
--- a/paimon-python/pypaimon/tests/pvfs_test.py
+++ b/paimon-python/pypaimon/tests/pvfs_test.py
@@ -23,10 +23,10 @@ from pathlib import Path
 
 import pandas
 
+from pypaimon import PaimonVirtualFileSystem
 from pypaimon.api.api_response import ConfigResponse
 from pypaimon.api.auth import BearTokenAuthProvider
 from pypaimon.catalog.rest.table_metadata import TableMetadata
-from pypaimon.pvfs import PaimonVirtualFileSystem
 from pypaimon.schema.data_types import AtomicType, DataField
 from pypaimon.schema.table_schema import TableSchema
 from pypaimon.tests.api_test import RESTCatalogServer

Reply via email to