Skip to content

FTP connection with proxy #419

Description

@frucht-salat

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    docsIssues related to documentationquestion

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions