pyftpdlib
pyftpdlib copied to clipboard
Extremely fast and scalable Python FTP server library
We're running into issues when the disk runs out of space while uploading. The disk we're using is an xfs network volume that is mounted to a particular directory that...
The files in https://github.com/giampaolo/pyftpdlib/tree/master/scripts/internal state: https://github.com/giampaolo/pyftpdlib/blob/6d50bf7c5cd69b9827981b53233995ded5db4ad9/scripts/internal/generate_manifest.py#L3-L5 The general project license is MIT, so I think the term `BSD-style license` is a bit misleading and probably should be replaced.
Fix #266 and #531. Took inspiration from vsftpd for 200 reply message - https://github.com/dagwieers/vsftpd/blob/ce2fa4288b92683f832c3b5179d5cb2a77d0750e/opts.c#L20 Let me know if additional changes are needed in order to merge it.
call: _do_ssl_shutdown() -> shutdown(), err: Error([('SSL routines', '', 'shutdown while in init')])
As stated in the title. I'm trying to enable FTP over TLS and have inherited the TLS_FTPHandler class when writing my own custom Handler. However, this led to some hard-to-ignore...
I discovered a bug using rclone to sync some data over to a pyftpdlib-based application. Essentially, if TLS 1.3 is used, most uploads will randomly get truncated near the end....
1)Max upload speed for user accounts Limits the maximum upload bandwidth shared between all sessions associated with an individual User account. Setting a limit of 0 KB/s means unlimited bandwidth....
hello, I will like ad a user in windows server ``` from pyftpdlib.handlers import FTPHandler from pyftpdlib.servers import FTPServer from pyftpdlib.authorizers import WindowsAuthorizer import sys #authorizer = WindowsAuthorizer() #authorizer.add_user("isra", "12345",...
Because os.path.realpath can return bytes --- issue: on Python2 this warning is printed even if the homedir argument is unicode: ``` /opt/lib/python2.7/site-packages/pyftpdlib/handlers.py:2530: RuntimeWarning: DummyAuthorizerWithUnicodeHomeDir.get_home_dir returned a non-unicode string; now casting...
I am using pyftpdlib to provide an FTP frontend to files indexed in a database using a class inherited from `AbstractFS` that retrieves the information from the database's API. The...
Hello, I appreciate your great job. It's a nice product. The password in log is marked out. How can I change it to show the password? The second is I...