Pull a file directly from S3.
(url, temp_file)
| 153 | |
| 154 | @s3_request |
| 155 | def s3_get(url, temp_file): |
| 156 | """Pull a file directly from S3.""" |
| 157 | s3_resource = boto3.resource("s3") |
| 158 | bucket_name, s3_path = split_s3_path(url) |
| 159 | s3_resource.Bucket(bucket_name).download_fileobj(s3_path, temp_file) |
| 160 | |
| 161 | |
| 162 | def http_get(url, temp_file): |
no test coverage detected