forked from dedeler/imdb-data-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimdbparser.py
executable file
·88 lines (67 loc) · 2.76 KB
/
imdbparser.py
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python3
"""
This file is part of imdb-data-parser.
imdb-data-parser is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
imdb-data-parser is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with imdb-data-parser. If not, see <http://www.gnu.org/licenses/>.
"""
"""
Dealing with ": No such file or directory" error:
http://stackoverflow.com/a/8735625/878361
"""
import sys
import argparse
import datetime
from idp.utils.loggerinitializer import *
from idp.parser.parsinghelper import ParsingHelper
from idp.settings import *
# check python version
if sys.version_info.major != 3:
sys.exit("Error: wrong version! You need to install python3 to run this application properly.")
parser = argparse.ArgumentParser(description="an IMDB data parser")
parser.add_argument('-m', '--mode', help='Parsing mode, defines output of parsing process. Default: TSV', choices=['TSV', 'SQL'])
parser.add_argument('-i', '--input_dir', help='source directory of interface lists')
parser.add_argument('-o', '--output_dir', help='destination directory for outputs')
parser.add_argument('-u', '--update_lists', action='store_true', help='downloads lists from server')
args = parser.parse_args()
# preparing preferences map
if args.mode:
mode = args.mode
else: #default
mode = "TSV"
if args.input_dir:
input_dir = args.input_dir
else:
input_dir = INPUT_DIR
postfix = datetime.datetime.now().strftime("%Y-%m-%d_%H%M%S") + '_ImdbParserOutput'
if args.input_dir:
output_dir = os.path.join(args.output_dir, postfix)
else:
output_dir = os.path.join(OUTPUT_DIR, postfix)
if not os.path.exists(output_dir):
os.makedirs(output_dir)
preferences_map = {
"mode":mode,
"input_dir": input_dir,
"output_dir": output_dir
}
initialize_logger(preferences_map)
logging.info("mode:%s", mode)
logging.info("input_dir:%s", input_dir)
logging.info("output_dir:%s", output_dir)
logging.info("update_lists:%s", args.update_lists)
if args.update_lists:
from idp.utils import listdownloader
logging.info("Downloading IMDB dumps, this may take a while depending on your connection speed")
listdownloader.download()
logging.info("Parsing, please wait. This may take very long time...")
ParsingHelper.parse_all(preferences_map)
logging.info("Check out output folder: %s", output_dir)
print ("All done, enjoy ;)") #don't print this via logger, this is part of the program