21 lines
1 KiB
Python
21 lines
1 KiB
Python
# -*- coding: iso-8859-1 -*-
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
|
# Copyright (C) 2012-2013 Bastian Kleineidam
|
|
"""
|
|
Automated comic downloader. Dosage traverses comic websites in
|
|
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.
|
|
|
|
The primary dosage interface is currently the 'mainline' script, which
|
|
is just a thin wrapper that invokes L{dosage.mainline}. Comic modules
|
|
for each comic are located in L{dosage.modules}; most of these make
|
|
use of the helper base classes and mixins in L{dosage.modules.helpers},
|
|
thus making their individual implementations trivial.
|
|
"""
|
|
import sys
|
|
if not (hasattr(sys, 'version_info') or
|
|
sys.version_info < (2, 7, 0, 'final', 0)):
|
|
raise SystemExit("This program requires Python 2.7 or later.")
|