{"id":16387894,"url":"https://github.com/dotmpe/x-python-vfs","last_synced_at":"2026-06-23T05:32:17.357Z","repository":{"id":138233170,"uuid":"111461020","full_name":"dotmpe/x-python-vfs","owner":"dotmpe","description":"Python FUSE filesystems, maybe other VFSs..","archived":false,"fork":false,"pushed_at":"2018-06-03T23:35:21.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-22T12:25:00.983Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dotmpe.png","metadata":{"files":{"readme":"ReadMe.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-20T20:46:05.000Z","updated_at":"2018-03-29T00:17:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"ed8db8e4-1617-4504-9595-b275901bf5c6","html_url":"https://github.com/dotmpe/x-python-vfs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dotmpe/x-python-vfs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotmpe%2Fx-python-vfs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotmpe%2Fx-python-vfs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotmpe%2Fx-python-vfs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotmpe%2Fx-python-vfs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotmpe","download_url":"https://codeload.github.com/dotmpe/x-python-vfs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotmpe%2Fx-python-vfs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34677382,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-11T04:27:50.378Z","updated_at":"2026-06-23T05:32:17.342Z","avatar_url":"https://github.com/dotmpe.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Python VFS (Virtual Filesystem)\n================================\n:created: 2017-05-25\n:updated: 2018-03-28\n:license: Simplified BSD\n:status:\n  .. image:: http://img.shields.io/travis/bvberkum/x-python-vfs.svg\n     :target: https://travis-ci.org/bvberkum/x-python-vfs\n  .. image:: https://img.shields.io/github/license/bvberkum/x-python-vfs.svg\n     :alt: repo license\n  .. image:: https://img.shields.io/github/commit-activity/y/bvberkum/x-python-vfs.svg\n     :alt: commits per year\n  .. image:: https://img.shields.io/github/languages/code-size/bvberkum/x-python-vfs.svg\n  .. image:: https://img.shields.io/github/repo-size/bvberkum/x-python-vfs.svg\n\n  master:\n    .. image:: https://img.shields.io/github/last-commit/bvberkum/x-python-vfs/master.svg\n      :alt: last-commit on master\n\n  dev:\n    .. image:: https://img.shields.io/github/last-commit/bvberkum/x-python-vfs/dev.svg\n      :alt: last-commit on dev\n\n  test:\n    .. image:: https://img.shields.io/github/last-commit/bvberkum/x-python-vfs/test.svg\n      :alt: last-commit on test\n\n\nThis document is on the current implementation, see also intro__.\n\n.. __: doc/main.rst\n\nGetting Started\n---------------\nExamples::\n\n  python x-fuse.py /tmp/x-fuse/ \"OSPassthrough('$PWD')\"\n  python x-fuse.py /tmp/x-fuse \"OSStack('$PATH')\"\n  python x-fuse.py /tmp/x-fuse \"HideBrokenSymlinks('$PWD')\"\n\nGeneric invocation takes a python expression to initialize filesystem::\n\n  python x-fuse.py ./my/path/to/mount/ \"\u003cFSType\u003e(\u003cFSArgs\u003e)\" [ FSName [ PIDFile ]]\n\nThese environment variables are picked up to customize FUSE behaviour; defaults::\n\n  X_FUSE_THREADS=false\n  X_FUSE_BACKGROUND=true\n\nTesting\n-------\n::\n\n  make test\n\nIssues\n------\n- can't test pyvfs and py9p on OSX::\n\n    $ mount -t 9p -o ro,port=10001 127.0.0.1 /mnt/py9p-test/\n    mount: exec /Library/Filesystems/9p.fs/Contents/Resources/mount_9p for\n    /mnt/py9p-test: No such file or directory\n\n\n- `gdrivefs` must be compiled, which it doesn't manage on my OSX/Darwin.\n\nToDo\n------\n- Add-in LoggingMixIn, see fusepy/examples.\n\n- Build a slightly more complex OSPassthrough with path renames/filtering.\n  Besides names also may want to map or filter on type (file/dir/special),\n  size, access mode.\n\n- May want to have a go with other libs: (py)vfs/objfs, py9p.\n  `fusecry` seems to install cleanly also.\n\nFurther reading\n---------------\nSome other things to look at. At PyPi [#]_ [#]_, at GitHub [#]_.\n\n- `gdrivefs 0.14.8`__ access Google drive\n- `mockfs 1.0.2`__\n- `SVFS 2.0.0`__ - Multi-purpose virtual file system inside single file\n- `fusecry 0.11.2`__ - Encrypted filesystem and encryption tool based on FUSE\n  and AES.\n- `CouchDB-FUSE 0.2dev`__ mount and edit CouchDB attachments\n\n.. __: https://pypi.python.org/pypi/gdrivefs\n.. __: https://pypi.python.org/pypi/mockfs/1.0.2\n.. __: https://pypi.python.org/pypi/SVFS/2.0.0\n.. __: https://pypi.python.org/pypi/fusecry/0.11.2\n.. __: https://pypi.python.org/pypi/CouchDB-FUSE/0.2dev\n\nOn a sidenode, PyFilesystem is a suite aiming to bring a universal file-like\ninterface regardless of the reality. [#]_ Very neat, does it mount too?\n\n\n\n.. [#] \u003chttps://pypi.python.org/pypi?%3Aaction=search\u0026term=vfs\u0026submit=search\u003e\n.. [#] \u003chttps://pypi.python.org/pypi?%3Aaction=search\u0026term=filesystem\u0026submit=search\u003e\n.. [#] \u003chttps://github.com/topics/filesystem\u003e\n.. [#] \u003chttps://www.pyfilesystem.org/\u003e\n\n..\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotmpe%2Fx-python-vfs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotmpe%2Fx-python-vfs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotmpe%2Fx-python-vfs/lists"}