Add code for resumable downloads from S3

This commit is contained in:
Joseph Schorr 2014-07-02 00:39:59 -04:00
parent d851feef6e
commit 0d89fd7f26
3 changed files with 17 additions and 2 deletions

View file

@ -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