sftp¶
Strategy class for sftp/ftp
AnyFtpUrl
¶
Bases: AnyUrl
A (S)FTP URL model.
Source code in oteapi/strategies/download/sftp.py
18 19 20 21 |
|
SFTPConfig
¶
Bases: AttrDict
(S)FTP-specific Configuration Data Model.
Source code in oteapi/strategies/download/sftp.py
24 25 26 27 28 29 30 |
|
SFTPResourceConfig
¶
Bases: ResourceConfig
(S)FTP download strategy filter config.
Source code in oteapi/strategies/download/sftp.py
33 34 35 36 37 38 39 40 41 |
|
SFTPStrategy
¶
Strategy for retrieving data via sftp.
Registers strategies:
("scheme", "ftp")
("scheme", "sftp")
Source code in oteapi/strategies/download/sftp.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
get(session=None)
¶
Download via sftp
Source code in oteapi/strategies/download/sftp.py
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
initialize(session=None)
¶
Initialize.
Source code in oteapi/strategies/download/sftp.py
63 64 65 |
|
SessionUpdateSFTP
¶
Bases: SessionUpdate
Class for returning values from Download SFTP strategy.
Source code in oteapi/strategies/download/sftp.py
44 45 46 47 |
|