1..
2  NOTE: We cannot use sophisticated ReST syntax (like
3  e.g. :file:`foo`) here because this isn't rendered correctly
4  by PyPi.
5
6The Python-LLFUSE Module
7========================
8
9
10.. start-intro
11
12**Warning - no longer maintained**
13
14Python-LLFUSE is no longer actively maintained. Unless you are stuck
15with Python 2.x or libfuse 2.x, we recommended to use the pyfuse3_
16module instead.
17
18Python-LLFUSE is a set of Python bindings for the low level FUSE_
19API. It requires at least FUSE 2.8.0 and supports both Python 2.x and
203.x. Like FUSE itself, Python-LLFUSE is developed for Linux systems,
21but it should be compatible with OS-X, FreeBSD and NetBSD as well.
22
23Python-LLFUSE releases can be downloaded from PyPi_. The documentation
24can be `read online`__ and is also included in the ``doc/html``
25directory of the Python-LLFUSE tarball.
26
27
28.. _pyfuse3: https://github.com/libfuse/pyfuse3
29
30Getting Help
31------------
32
33Please report any bugs on the `issue tracker`_. For discussion and
34questions, please use the general `FUSE mailing list`_. A searchable
35`mailing list archive`_ is kindly provided by Gmane_.
36
37
38Contributing
39------------
40
41The Python-LLFUSE source code is available on GitHub_.
42
43
44.. __: http://www.rath.org/llfuse-docs/
45.. _FUSE: http://github.com/libfuse/libfuse
46.. _FUSE mailing list: https://lists.sourceforge.net/lists/listinfo/fuse-devel
47.. _issue tracker: https://github.com/python-llfuse/python-llfuse/issues
48.. _mailing list archive: http://dir.gmane.org/gmane.comp.file-systems.fuse.devel
49.. _Gmane: http://www.gmane.org/
50.. _PyPi: https://pypi.python.org/pypi/llfuse/
51.. _GitHub: https://github.com/python-llfuse/python-llfuse
52