Last active
January 25, 2019 07:49
-
-
Save arnaud9/ea8f3594567961e2a4aa5c459462f551 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upload_to_S3_task = PythonOperator( | |
task_id='upload_to_S3', | |
python_callable=upload_file_to_S3, | |
op_kwargs={ | |
'filename': 'path/to/my_file.csv', | |
'key': 'my_S3_file.csv', | |
'bucket_name': 'my-S3-bucket', | |
}, | |
dag=my_dag) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment