github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/lib/python/fusepy/low-level/README.txt (about) 1 Note that the low-level API needs to generate the Python interface 2 to the local FUSE library before it can be used. For that, 3 you have to have both the FUSE headers and the GCC-XML 4 (http://www.gccxml.org) compiler installed. 5 6 The interface is generated by running 7 8 # python setup.py build_ctypes 9 10 this will create the file llfuse/ctypes_api.py 11 12 Please keep in mind that it's probably not wise to ship this file 13 with your application, because it has been generated for your 14 system only. 15 16 17 Note that the fuse_daemonize() function is deliberately not exported 18 by this module. If you want to daemonize a Python process, you have to 19 do so from within Python or you will get into trouble. See 20 - http://bugs.python.org/issue7931 21 - http://www.python.org/dev/peps/pep-3143/ 22