I have successfully stored a Word document to S3 using Django-storages.
class Document(TitleSlugDescriptionModel, TimeStampedModel):
document = models.FileField(upload_to=user_directory_path)
Now in celery task, I need to download this file again for further processing in the worker.
Do I need to read the file from URL and then create the local copy explicitly or is there any way to create local copy using Django-storages?