Source code for airflow.providers.amazon.aws.transfers.sftp_to_s3
## Licensed to the Apache Software Foundation (ASF) under one# or more contributor license agreements. See the NOTICE file# distributed with this work for additional information# regarding copyright ownership. The ASF licenses this file# to you under the Apache License, Version 2.0 (the# "License"); you may not use this file except in compliance# with the License. You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing,# software distributed under the License is distributed on an# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY# KIND, either express or implied. See the License for the# specific language governing permissions and limitations# under the License.fromtempfileimportNamedTemporaryFilefromurllib.parseimporturlparsefromairflow.modelsimportBaseOperatorfromairflow.providers.amazon.aws.hooks.s3importS3Hookfromairflow.providers.ssh.hooks.sshimportSSHHook
[docs]classSFTPToS3Operator(BaseOperator):""" This operator enables the transferring of files from a SFTP server to Amazon S3. .. seealso:: For more information on how to use this operator, take a look at the guide: :ref:`howto/operator:SFTPToS3Operator` :param sftp_conn_id: The sftp connection id. The name or identifier for establishing a connection to the SFTP server. :type sftp_conn_id: str :param sftp_path: The sftp remote path. This is the specified file path for downloading the file from the SFTP server. :type sftp_path: str :param s3_conn_id: The s3 connection id. The name or identifier for establishing a connection to S3 :type s3_conn_id: str :param s3_bucket: The targeted s3 bucket. This is the S3 bucket to where the file is uploaded. :type s3_bucket: str :param s3_key: The targeted s3 key. This is the specified path for uploading the file to S3. :type s3_key: str """
[docs]defget_s3_key(s3_key:str)->str:"""This parses the correct format for S3 keys regardless of how the S3 url is passed."""parsed_s3_key=urlparse(s3_key)returnparsed_s3_key.path.lstrip('/')