We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
FTPFS
1 parent 7fe529b commit 41fd7efCopy full SHA for 41fd7ef
fs/ftpfs.py
@@ -378,6 +378,12 @@ class FTPFS(FS):
378
>>> ftp_fs = FTPFS("test.rebex.net", user="demo", passwd="password")
379
>>> ftp_fs = fs.open_fs('ftp://demo:password@test.rebex.net')
380
381
+ Connecting via a proxy is supported. If using a FS URL, the proxy
382
+ URL will need to be added as a URL parameter::
383
+
384
+ >>> ftp_fs = FTPFS("ftp.ebi.ac.uk", proxy="test.rebex.net")
385
+ >>> ftp_fs = fs.open_fs('ftp://ftp.ebi.ac.uk/?proxy=test.rebex.net')
386
387
"""
388
389
_meta = {
0 commit comments