From d8fc18166dd441a661f9b71f3272d213057eb526 Mon Sep 17 00:00:00 2001 From: david-ajax Date: Sun, 21 Dec 2025 18:48:25 +0800 Subject: [PATCH] =?UTF-8?q?feat(synctool):=20=E8=99=9A=E6=8B=9F=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E7=B3=BB=E7=BB=9F=E5=88=9D=E6=AD=A5=E6=96=B9=E6=A1=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- src/heurams/services/vfs.py | 5 +++++ src/heurams/services/vfs/zipfs.py | 0 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 src/heurams/services/vfs.py create mode 100644 src/heurams/services/vfs/zipfs.py diff --git a/pyproject.toml b/pyproject.toml index 0156761..400baf1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "heurams" -version = "0.4.0" +version = "0.4.3" description = "Heuristic Assisted Memory Scheduler" license = {file = "LICENSE"} classifiers = [ diff --git a/src/heurams/services/vfs.py b/src/heurams/services/vfs.py new file mode 100644 index 0000000..5fdecd1 --- /dev/null +++ b/src/heurams/services/vfs.py @@ -0,0 +1,5 @@ +""" vfs.py +得益于 FSSpec, 无需实现大部分虚拟文件系统的 Providers +""" + +import fsspec diff --git a/src/heurams/services/vfs/zipfs.py b/src/heurams/services/vfs/zipfs.py new file mode 100644 index 0000000..e69de29