1
0
Fork 0
mirror of synced 2024-06-02 18:34:37 +12:00

Added custom exception descriptions to FAILED.json file

This commit is contained in:
Ali Parlakci 2018-07-19 14:56:00 +03:00
parent 6bba2c4dbb
commit fde6a1fac4
3 changed files with 10 additions and 5 deletions

View file

@ -53,6 +53,9 @@ It should redirect to a page which shows your **imgur_client_id** and **imgur_cl
them, there.
## Changelog
### 19/07/2018
- Added custom exception descriptions to FAILED.json file
### [13/07/2018](https://github.com/aliparlakci/bulk-downloader-for-reddit/tree/9f831e1b784a770c82252e909462871401a05c11)
- Change config.json file's path to home directory

View file

@ -539,7 +539,7 @@ def download(submissions):
downloadedCount -= 1
except NotADownloadableLinkError as exception:
print("Could not read the page source")
print(exception)
FAILED_FILE.add({int(i+1):[str(exception),submissions[i]]})
downloadedCount -= 1

View file

@ -169,7 +169,9 @@ class Imgur:
if duplicates == imagesLenght:
raise FileAlreadyExistsError
elif howManyDownloaded < imagesLenght:
raise AlbumNotDownloadedCompletely
raise AlbumNotDownloadedCompletely(
"Album Not Downloaded Completely"
)
@staticmethod
def initImgur():
@ -217,9 +219,9 @@ class Gfycat:
try:
POST['mediaURL'] = self.getLink(POST['postURL'])
except IndexError:
raise NotADownloadableLinkError
raise NotADownloadableLinkError("Could not read the page source")
except Exception as exception:
raise NotADownloadableLinkError
raise NotADownloadableLinkError("Could not read the page source")
POST['postExt'] = getExtension(POST['mediaURL'])
@ -266,7 +268,7 @@ class Gfycat:
break
if "".join(link) == "":
raise NotADownloadableLinkError
raise NotADownloadableLinkError("Could not read the page source")
return "".join(link)