Add code for resumable downloads from S3
This commit is contained in:
parent
d851feef6e
commit
0d89fd7f26
3 changed files with 17 additions and 2 deletions
|
@ -57,6 +57,9 @@ class BaseStorage(StoragePaths):
|
|||
def get_direct_download_url(self, path, expires_in=60):
|
||||
return None
|
||||
|
||||
def get_supports_resumable_downloads(self):
|
||||
return False
|
||||
|
||||
def get_content(self, path):
|
||||
raise NotImplementedError
|
||||
|
||||
|
|
Reference in a new issue