https://github.com/mirekys/fusefs
Python FUSE library for mounting FS URLs supported by the PyFilesystem2 module
https://github.com/mirekys/fusefs
archives filesystem fs fuse mount pyfilesystem pyfilesystem2 python
Last synced: 6 months ago
JSON representation
Python FUSE library for mounting FS URLs supported by the PyFilesystem2 module
- Host: GitHub
- URL: https://github.com/mirekys/fusefs
- Owner: mirekys
- License: mit
- Created: 2019-01-11T13:22:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-11T17:30:00.000Z (over 6 years ago)
- Last Synced: 2025-03-28T23:11:16.300Z (6 months ago)
- Topics: archives, filesystem, fs, fuse, mount, pyfilesystem, pyfilesystem2, python
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fusefs
Python FUSE module for mounting all filesystems supported by the
[PyFilesystem2](https://github.com/PyFilesystem/pyfilesystem2) module.NOTE: Currently it supports just Read/Only mounts of ZIP/TAR archives.
# Instaling
* Install ```fuse``` and ```fuse-devel``` system packages
* Build & Install fusefs with poetry:
```python
pip install poetry
git clone https://github.com/mirekys/fusefs.git
cd fusefs
poetry build
cd dist
tar -xvf fusefs-0.1.0.tar.gz
pip install -e fusefs-0.1.0/
```# Usage
```
fusefs
```Where ```source``` must be in [PyFilesystem2 format](https://docs.pyfilesystem.org/en/latest/openers.html)