2015-04-05 17:15:27 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright 2014, 2015 Mike Fährmann
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
|
2014-10-12 21:56:44 +02:00
|
|
|
__author__ = "Mike Fährmann"
|
2015-04-05 17:15:27 +02:00
|
|
|
__copyright__ = "Copyright 2014, 2015 Mike Fährmann"
|
2014-10-12 21:56:44 +02:00
|
|
|
|
2015-04-05 17:15:27 +02:00
|
|
|
__license__ = "GPLv2"
|
2015-12-03 02:31:23 +01:00
|
|
|
__version__ = "0.4.1"
|
2014-10-12 21:56:44 +02:00
|
|
|
__maintainer__ = "Mike Fährmann"
|
|
|
|
__email__ = "mike_faehrmann@web.de"
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import argparse
|
2015-11-24 19:47:51 +01:00
|
|
|
from . import config, extractor, jobs
|
2014-10-12 21:56:44 +02:00
|
|
|
|
2015-11-14 15:31:07 +01:00
|
|
|
def build_cmdline_parser():
|
2015-04-05 17:15:27 +02:00
|
|
|
parser = argparse.ArgumentParser(
|
2014-10-12 21:56:44 +02:00
|
|
|
description='Download images from various sources')
|
2015-04-05 17:15:27 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"-c", "--config",
|
2015-11-14 17:22:56 +01:00
|
|
|
metavar="CFG", dest="cfgfiles", action="append",
|
|
|
|
help="additional configuration files",
|
2015-04-05 17:15:27 +02:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-d", "--dest",
|
|
|
|
metavar="DEST",
|
2015-11-14 17:22:56 +01:00
|
|
|
help="destination directory",
|
2015-04-05 17:15:27 +02:00
|
|
|
)
|
2015-11-10 01:56:31 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"-o", "--option",
|
2015-11-12 02:26:27 +01:00
|
|
|
metavar="OPT", action="append", default=[],
|
2015-11-10 01:56:31 +01:00
|
|
|
help="option value",
|
|
|
|
)
|
2015-11-14 15:11:44 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"--list-modules", dest="list_modules", action="store_true",
|
|
|
|
help="print a list of available modules/supported sites",
|
|
|
|
)
|
2015-11-13 01:19:01 +01:00
|
|
|
parser.add_argument(
|
|
|
|
"--list-keywords", dest="keywords", action="store_true",
|
2015-11-14 17:22:56 +01:00
|
|
|
help="print a list of available keywords for the given URLs",
|
2015-11-13 01:19:01 +01:00
|
|
|
)
|
2015-04-05 17:15:27 +02:00
|
|
|
parser.add_argument(
|
|
|
|
"urls",
|
2015-11-14 15:11:44 +01:00
|
|
|
nargs="*", metavar="URL",
|
2015-04-05 17:15:27 +02:00
|
|
|
help="url to download images from"
|
|
|
|
)
|
2015-11-14 15:31:07 +01:00
|
|
|
return parser
|
2014-10-12 21:56:44 +02:00
|
|
|
|
|
|
|
def main():
|
2015-04-10 17:31:49 +02:00
|
|
|
try:
|
2015-11-14 15:11:44 +01:00
|
|
|
config.load()
|
2015-11-14 15:31:07 +01:00
|
|
|
parser = build_cmdline_parser()
|
|
|
|
args = parser.parse_args()
|
2015-11-14 15:11:44 +01:00
|
|
|
|
2015-11-14 17:22:56 +01:00
|
|
|
if args.cfgfiles:
|
|
|
|
config.load(*args.cfgfiles, strict=True)
|
|
|
|
|
2015-11-14 16:07:10 +01:00
|
|
|
if args.dest:
|
|
|
|
config.set(("base-directory",), args.dest)
|
|
|
|
|
2015-11-14 15:11:44 +01:00
|
|
|
for opt in args.option:
|
|
|
|
try:
|
|
|
|
key, value = opt.split("=", 1)
|
|
|
|
config.set(key.split("."), value)
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
if args.list_modules:
|
|
|
|
for module_name in extractor.modules:
|
|
|
|
print(module_name)
|
|
|
|
else:
|
2015-11-14 15:31:07 +01:00
|
|
|
if not args.urls:
|
|
|
|
parser.error("the following arguments are required: URL")
|
2015-11-14 15:11:44 +01:00
|
|
|
jobtype = jobs.KeywordJob if args.keywords else jobs.DownloadJob
|
|
|
|
for url in args.urls:
|
|
|
|
jobtype(url).run()
|
2015-04-10 17:31:49 +02:00
|
|
|
except KeyboardInterrupt:
|
2015-06-28 12:45:52 +02:00
|
|
|
print("\nKeyboardInterrupt")
|