-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.py
35 lines (27 loc) · 1.04 KB
/
start.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
#coding=gbk
import requests
from spider.RunTask import main, tryme
from log.outputlog import Log
import click
BANNER = """
,---, ,---, ,---,
' .' \ ' .' \ ' .' \
/ ; '. / ; '. / ; '.
: : \ : : \ : : \
: | /\ \ : | /\ \ : | /\ \
| : ' ;. :| : ' ;. :| : ' ;. :
| | ;/ \ \ | ;/ \ \ | ;/ \ \
' : | \ \ ,' : | \ \ ,' : | \ \ ,'
| | ' '--' | | ' '--' | | ' '--'
| : : | : : | : :
| | ,' | | ,' | | ,'
`--'' `--'' `--''
"""
@tryme.try_
@click.command()
@click.option("--file", default="text.txt", help="-- file xxx.txt")
def start(file):
Log.info(BANNER)
main(file)
if __name__ == '__main__':
start()