~dosage-dev/dosage/bunch-of-comics

« back to all changes in this revision

Viewing changes to dosage/__init__.py

  • Committer: ns
  • Date: 2009-12-01 07:07:18 UTC
  • Revision ID: ns@ww1aviationlinks.cjb.net-20091201070718-3xoj70sz52zsq09v
Y plugin added YAFGC

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"""
2
 
Automated webcomic downloader. Dosage traverses webcomic websites in
3
 
order to download each strip of the comic. The intended use is for
4
 
mirroring the strips locally for ease of viewing; redistribution of the
5
 
downloaded strips may violate copyright, and is not advisable unless you
6
 
have communicated with all of the relevant copyright holders, described
7
 
your intentions, and received permission to distribute.
8
 
 
9
 
The primary dosage interface is currently the 'mainline' script, which
10
 
is just a thin wrapper that invokes L{dosage.mainline}. Comic modules
11
 
for each webcomic are located in L{dosage.modules}; most of these make
12
 
use of the helper base classes and mixins in L{dosage.modules.helpers},
13
 
thus making their individual implementations trivial.
14
 
 
15
 
@group Core modules: comic, events, output, progress, rss, util,
16
 
       version
17
 
@group Interface modules: mainline
18
 
@group Comic modules: modules
19
 
 
20
 
@sort: modules.helpers
21
 
 
22
 
@author: U{Dosage development team <dosage@lists.slipgate.za.net>}
23
 
@requires: Python 2.3+
24
 
@see: U{The dosage webpage <http://slipgate.za.net/dosage>}
25
 
@see: U{The dosage Trac site <http://trac.slipgate.za.net/dosage>}
26
 
 
27
 
@newfield contributor: Contributor, Contributors (Alphabetical Order)
28
 
@contributor: U{Jonathan Jacobs <mailto:korpse@slipgate.za.net>}
29
 
@contributor: U{Tristan Seligmann <mailto:mithrandi@mithrandi.za.net>}
30
 
 
31
 
@var __license__: The license governing the use and distribution of
32
 
    dosage.
33
 
"""
34
 
 
35
 
__docformat__ = 'epytext en'
36
 
 
37
 
from dosage.version import VERSION
38
 
 
39
 
# General info
40
 
__version__ = VERSION
41
 
__author__ = 'Dosage development team <dosage@lists.slipgate.za.net>'
42
 
__url__ = 'http://slipgate.za.net/dosage'
43
 
__license__ = 'GNU General Public License version 2'