blob: e1e16d151bb3d3926bb9511cd796a214a875d2e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/bin/python
import os
import argparse
from pathlib import Path
from extractors.job import DlJob
from utils import read_file
module_path = os.path.abspath(__file__)
ROOT = Path(module_path).parent
parser = argparse.ArgumentParser(description="Custom album downloader tool")
parser.add_argument('--url', help="link to the file to download")
parser.add_argument(
'--update', help='update all albums from cache', action="store_true")
parser.add_argument('--file', help="read url from file")
parser.add_argument(
'--output',
help="folder where to put downloaded albums. "
"Default to: " + str(ROOT) + "/out/",
default=str(ROOT) + "/out/")
args = parser.parse_args()
if not args.output.endswith("/"):
args.output = args.output + "/"
if args.update:
print('Updating from cache...')
cache_file = Path(ROOT, '.urls_cache.txt')
urls_cache = read_file(cache_file)
for url in urls_cache:
dl_job = DlJob(url, args.output)
dl_job.run()
if args.url:
print('Downloading from url...')
dl_job = DlJob(args.url, args.output)
dl_job.run()
if args.file:
print("Downloading from file...")
urls = read_file(args.file)
for url in urls:
dl_job = DlJob(url, args.output)
dl_job.run()
if not args.url and not args.update and not args.file:
parser.print_help()
|