Hello, so I want to open a FTP filesystem via a proxy like this:
ftp = ftp://user@server:password@proxy_server/path
with open_fs(ftp) as fs:
fs_list = fs.listdir()
The same in FTP:
with FTP("proxy_server") as ftp:
ftp.login(user='user@server', passwd='password')
prop = ftp.dir('/path')
works for me. Is that an error in the parsing of the address?
Hello, so I want to open a FTP filesystem via a proxy like this:
The same in FTP:
works for me. Is that an error in the parsing of the address?