-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Petar Gitnik
authored and
Petar Gitnik
committed
Aug 23, 2017
1 parent
42b1b93
commit e0f3688
Showing
4 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,12 @@ | |
from imgur.downloader import Downloader | ||
|
||
|
||
__version__ = 'v0.2' | ||
__status__ = 'Development' | ||
__author__ = 'petarGitNik' | ||
__copyright__ = 'Copyright (c) 2017 petarGitNik [email protected]' | ||
__license__ = 'MIT' | ||
__version__ = 'v0.2.0' | ||
__email__ = '[email protected]' | ||
__status__ = 'Production' | ||
|
||
|
||
def parse_arguments(): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,12 @@ | |
from time import sleep | ||
|
||
|
||
__version__ = 'v0.2' | ||
__status__ = 'Development' | ||
__author__ = 'petarGitNik' | ||
__copyright__ = 'Copyright (c) 2017 petarGitNik [email protected]' | ||
__license__ = 'MIT' | ||
__version__ = 'v0.2.0' | ||
__email__ = '[email protected]' | ||
__status__ = 'Production' | ||
|
||
|
||
class DownloaderException(Exception): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,8 +46,12 @@ | |
from urllib.error import URLError | ||
|
||
|
||
__version__ = 'v0.2' | ||
__status__ = 'Development' | ||
__author__ = 'petarGitNik' | ||
__copyright__ = 'Copyright (c) 2017 petarGitNik [email protected]' | ||
__license__ = 'MIT' | ||
__version__ = 'v0.2.0' | ||
__email__ = '[email protected]' | ||
__status__ = 'Production' | ||
|
||
|
||
class ImgurException(Exception): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,14 @@ | |
from imgur.imgur import ImgurException | ||
|
||
|
||
__author__ = 'petarGitNik' | ||
__copyright__ = 'Copyright (c) 2017 petarGitNik [email protected]' | ||
__license__ = 'MIT' | ||
__version__ = 'v0.2.0' | ||
__email__ = '[email protected]' | ||
__status__ = 'Production' | ||
|
||
|
||
@pytest.fixture | ||
def single_image_i(): | ||
return Imgur('http://i.imgur.com/jedEzFL.jpg') | ||
|