Given a url of a downloadable file, such as:
http://zannee-docs.s3.amazonaws.com/rockefeller-summary.pdf
Is there a way to POST / PUT this directly to S3? Or is it necessary that I do:
# download the file
requests.get(url, stream=True)
# save the file locally
# upload the local file to S3
s3.upload_file()
If there is a way to upload it directly to S3 (without having to download it and re-upload it to S3), how would I do this?