Anyway, thanks!! :-)
Regards,
Thomas Weholt
> --
> You received this message because you are subscribed to the "Python FTP
> server library" project group:
> http://code.google.com/p/pyftpdlib/
> To post to this group, send email to pyft...@googlegroups.com
> To unsubscribe from this group, send email to
> pyftpdlib-...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/pyftpdlib
--
Mvh/Best regards,
Thomas Weholt
http://www.weholt.org
Hi Thomas.
As for now (until 0.7.0 will be released) you can use latest SVN revision:
$ svn checkout http://pyftpdlib.googlecode.com/svn/trunk/ pyftpdlib
To enable sendfile(2) usage you must install pysendfile module first:
$ easy_install pysendfile
pyftpdlib will detect its presence (import sendfile) and automatically
use it for uploads (RETR) if available.
Whether using sendfile(2) is governed by
pyftpdlib.ftpserver.FTPHandler.use_sendfile attribute (a bool).
The bool defaults to False if pysendfile module is not installed.
--- Giampaolo