
| Current Path : /usr/local/lib/python3.8/dist-packages/fusepyng-1.0.7.dist-info/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //usr/local/lib/python3.8/dist-packages/fusepyng-1.0.7.dist-info/METADATA |
Metadata-Version: 2.1 Name: fusepyng Version: 1.0.7 Summary: Simple ctypes bindings for FUSE Home-page: http://github.com/rianhunter/fusepyng Author: Rian Hunter Author-email: rian@alum.mit.edu License: ISC Platform: UNKNOWN Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: ISC License (ISCL) Classifier: Operating System :: MacOS Classifier: Operating System :: POSIX Classifier: Operating System :: Unix Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 3 Classifier: Topic :: System :: Filesystems fusepyng ======== fusepyng is a Python module that provides a simple interface to FUSE_ on various operating systems. It's just one file and is implemented using ctypes. fusepyng is a fork of `fusepy <https://github.com/fusepy/fusepy>`_. We keep our code in sync with new code from there. examples -------- See some examples of how you can use fusepyng: :memory_: A simple memory filesystem :loopback_: A loopback filesystem :context_: Sample usage of fuse_get_context() :sftp_: A simple SFTP filesystem (requires paramiko) fusepy requires FUSE 2.6 (or later) and runs on: - Linux (i386, x86_64, PPC, arm64, MIPS) - Mac OS X (Intel, PowerPC) - FreeBSD (i386, amd64) - OpenBSD (all archs) .. _FUSE: http://fuse.sourceforge.net/ .. examples .. _memory: http://github.com/rianhunter/fusepyng/blob/master/examples/memory.py .. _loopback: http://github.com/rianhunter/fusepyng/blob/master/examples/loopback.py .. _context: http://github.com/rianhunter/fusepyng/blob/master/examples/context.py .. _sftp: http://github.com/rianhunter/fusepyng/blob/master/examples/sftp.py