2012-06-20 20:41:04 +00:00
|
|
|
# -*- coding: iso-8859-1 -*-
|
|
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
2013-03-06 19:00:30 +00:00
|
|
|
# Copyright (C) 2012-2013 Bastian Kleineidam
|
2012-06-20 19:58:13 +00:00
|
|
|
"""
|
2013-03-06 19:00:30 +00:00
|
|
|
Automated comic downloader. Dosage traverses comic websites in
|
2012-06-20 19:58:13 +00:00
|
|
|
order to download each strip of the comic. The intended use is for
|
|
|
|
mirroring the strips locally for ease of viewing; redistribution of the
|
|
|
|
downloaded strips may violate copyright, and is not advisable unless you
|
|
|
|
have communicated with all of the relevant copyright holders, described
|
|
|
|
your intentions, and received permission to distribute.
|
|
|
|
|
2013-03-26 16:29:20 +00:00
|
|
|
The primary interface is the 'dosage' commandline script.
|
|
|
|
Comic modules for each comic are located in L{dosagelib.plugins}.
|
2012-06-20 19:58:13 +00:00
|
|
|
"""
|
|
|
|
import sys
|
|
|
|
if not (hasattr(sys, 'version_info') or
|
2012-11-19 20:20:50 +00:00
|
|
|
sys.version_info < (2, 7, 0, 'final', 0)):
|
|
|
|
raise SystemExit("This program requires Python 2.7 or later.")
|
2013-07-04 18:55:43 +00:00
|
|
|
|
|
|
|
# PEP 396
|
2013-07-04 19:00:06 +00:00
|
|
|
from .configuration import Version as __version__
|