-
Notifications
You must be signed in to change notification settings - Fork 458
/
main.py
81 lines (72 loc) · 2.94 KB
/
main.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
# -*- coding: utf-8 -*-
# file: main.py
# author: JinTian
# time: 13/04/2017 10:01 AM
# Copyright 2017 JinTian. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ------------------------------------------------------------------------
import argparse
from core.dispatch_center import Dispatcher
from settings.config import DEFAULT_USER_ID
from utils.string import is_valid_id
from alfred.utils.log import logger as logging
def parse_args():
parser = argparse.ArgumentParser(
description='WeiBo Terminator. Jin Fagang')
help_ = 'set user id. or if_file contains multi ids.'
parser.add_argument('-i', '--id', default=DEFAULT_USER_ID, help=help_)
help_ = 'set weibo filter flag. if filter is 0, then weibo are all original,' \
' if 1, weibo contains repost one. default is 0.'
parser.add_argument('-f', '--filter', default='1', help=help_)
help_ = 'debug mode for develop. set 1 on, set 0 off.'
parser.add_argument('-d', '--debug', default='1', help=help_)
args_ = parser.parse_args()
return args_
if __name__ == '__main__':
args = parse_args()
if args.debug == '1':
uid = args.id
if not '/' or '\\' in uid:
logging.info('debug mode not support id file.')
else:
if not args.filter:
filter_flag = args.filter
else:
filter_flag = 0
logging.info('[debug mode] crawling weibo from id {}'.format(uid))
dispatcher = Dispatcher(
id_file_path=None, mode='single', uid=uid, filter_flag=filter_flag)
dispatcher.execute()
elif args.debug == '0':
uid = args.id
if not '/' or '\\' in uid:
if not args.filter:
filter_flag = args.filter
else:
filter_flag = 0
logging.info('crawling weibo from id {}'.format(uid))
dispatcher = Dispatcher(
id_file_path=None, mode='single', uid=uid, filter_flag=filter_flag)
dispatcher.execute()
else:
if not args.filter:
filter_flag = args.filter
else:
filter_flag = 0
logging.info('crawling weibo from multi id file {}'.format(uid))
dispatcher = Dispatcher(
id_file_path=uid, mode='multi', uid=None, filter_flag=filter_flag)
dispatcher.execute()
else:
logging.info('debug mode error, set 1 on, set 0 off.')