python-fuse icon indicating copy to clipboard operation
python-fuse copied to clipboard

Python 2.x/3.x bindings for libfuse 2.x

Results 28 python-fuse issues
Sort by recently updated
recently updated
newest added

how to solve this error while installing by pip pip install fuse-python==1.0.5

It seems that python-fuse does not support splicing

enhancement

The fuse API `fuse_exit` is not wrapped and becuase of that there is no correct way to exit the main loop and move on to the teadown. There is code...

enhancement

I've implemented GDriveFS and OnedriveFS, I've inherited fuse.Fuse in my defined class, and instance is created like this if __name__ == '__main__': authed_usr = GDrive() gdrivefs = GoogleDriveFS(version = '%prog...

question

I've prepared a toy example based on [`xmp.py`][xmp] which proofs that there is a bug somewhere: ```python #!/usr/bin/env python import fuse import os import sys import time from fuse import...

I'm looking for a way to enable/disable `writeback_cache`. `pyfuse3` [allows][pyfuse3-writeback-cache] to do it by setting: enable_writeback_cache = False Is there a way to do the same in `python-fuse`? Based on...

enhancement

which function is same as FUSE in new python3 api fuse.Fuse doesn't seem to work where we give filesystem create class object and mount point etc can anyone tell that...

Hi there, was trying to do the following: - start xmp so it mirrors another directory in system (lets say /input --> /output) - share that mounted directory /output via...

question

The current implementation of `FuseArgs` extends `Optparse`, which is scheduled to be [deprecated in favor of `argparse`](https://www.python.org/dev/peps/pep-0389/#deprecation-of-optparse). Although there isn't a schedule for when it would be deprecated, it might...

enhancement
help wanted