Skip to content

Commit

Permalink
Add license to all files
Browse files Browse the repository at this point in the history
  • Loading branch information
Petar Gitnik authored and Petar Gitnik committed Aug 23, 2017
1 parent 42b1b93 commit e0f3688
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 6 deletions.
8 changes: 6 additions & 2 deletions crawlgur.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down
8 changes: 6 additions & 2 deletions imgur/downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
8 changes: 6 additions & 2 deletions imgur/imgur.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
8 changes: 8 additions & 0 deletions tests/test_imgur.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit e0f3688

Please sign in to comment.