Metadata-Version: 1.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
Description: 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
        
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
