airflow.providers.sftp.hooks.sftp¶
This module contains SFTP hook.
Module Contents¶
Classes¶
Interact with SFTP. |
- class airflow.providers.sftp.hooks.sftp.SFTPHook(ssh_conn_id='sftp_default', ssh_hook=None, *args, **kwargs)[source]¶
Bases:
airflow.providers.ssh.hooks.ssh.SSHHookInteract with SFTP.
This hook inherits the SSH hook. Please refer to SSH hook for the input arguments.
- Pitfalls:
In contrast with FTPHook describe_directory only returns size, type and modify. It doesn’t return unix.owner, unix.mode, perm, unix.group and unique.
- retrieve_file and store_file only take a local full path and not a
buffer.
If no mode is passed to create_directory it will be created with 777 permissions.
Errors that may occur throughout but should be handled downstream.
For consistency reasons with SSHHook, the preferred parameter is “ssh_conn_id”.
- Parameters
ssh_conn_id (str | None) – The sftp connection id
ssh_hook (airflow.providers.ssh.hooks.ssh.SSHHook | None) – Optional SSH hook (included to support passing of an SSH hook to the SFTP operator)
- describe_directory(path)[source]¶
Get file information in a directory on the remote system.
The return format is
{filename: {attributes}}. The remote system support the MLSD command.- Parameters
path (str) – full path to the remote directory
- list_directory(path)[source]¶
List files in a directory on the remote system.
- Parameters
path (str) – full path to the remote directory to list
- mkdir(path, mode=511)[source]¶
Create a directory on the remote system.
The default mode is
0o777, but on some systems, the current umask value may be first masked out.
- isdir(path)[source]¶
Check if the path provided is a directory.
- Parameters
path (str) – full path to the remote directory to check
- isfile(path)[source]¶
Check if the path provided is a file.
- Parameters
path (str) – full path to the remote file to check
- create_directory(path, mode=511)[source]¶
Create a directory on the remote system.
The default mode is
0o777, but on some systems, the current umask value may be first masked out. Different frommkdir(), this function attempts to create parent directories if needed, and returns silently if the target directory already exists.
- delete_directory(path)[source]¶
Delete a directory on the remote system.
- Parameters
path (str) – full path to the remote directory to delete
- retrieve_file(remote_full_path, local_full_path)[source]¶
Transfer the remote file to a local location.
If local_full_path is a string path, the file will be put at that location.
- store_file(remote_full_path, local_full_path, confirm=True)[source]¶
Transfer a local file to the remote location.
If local_full_path_or_buffer is a string path, the file will be read from that location.
- delete_file(path)[source]¶
Remove a file on the server.
- Parameters
path (str) – full path to the remote file
- get_mod_time(path)[source]¶
Get an entry’s modification time.
- Parameters
path (str) – full path to the remote file
- path_exists(path)[source]¶
Whether a remote entity exists.
- Parameters
path (str) – full path to the remote file or directory
- walktree(path, fcallback, dcallback, ucallback, recurse=True)[source]¶
Recursively descend, depth first, the directory tree at
path.This calls discrete callback functions for each regular file, directory, and unknown file type.
- Parameters
path (str) – root of remote directory to descend, use ‘.’ to start at
pwdfcallback (callable) – callback function to invoke for a regular file. (form:
func(str))dcallback (callable) – callback function to invoke for a directory. (form:
func(str))ucallback (callable) – callback function to invoke for an unknown file type. (form:
func(str))recurse (bool) – Default: True - should it recurse
- get_tree_map(path, prefix=None, delimiter=None)[source]¶
Get tuple with recursive lists of files, directories and unknown paths.
It is possible to filter results by giving prefix and/or delimiter parameters.
- Parameters
- Returns
tuple with list of files, dirs and unknown items
- Return type
- get_file_by_pattern(path, fnmatch_pattern)[source]¶
Get the first matching file based on the given fnmatch type pattern.
- Parameters
path – path to be checked
fnmatch_pattern – The pattern that will be matched with fnmatch
- Returns
string containing the first found file, or an empty string if none matched
- Return type