-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPointSearch.py
More file actions
42 lines (31 loc) · 1.12 KB
/
Copy pathPointSearch.py
File metadata and controls
42 lines (31 loc) · 1.12 KB
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
#! /usr/bin/env python
# -*- coding:utf-8 -*-
# author:flystart
# home:www.flystart.org
# time:2020/8/20
from lib.core.option import init_options
from lib.core.data import conf,COLOR,logger
from lib.controller.action import actin
import os
import warnings
warnings.filterwarnings("ignore")
def main():
conf['root_path'] = os.path.dirname(os.path.realpath(__file__))
init_options()
act = conf['action']
actin(act)
if __name__ == '__main__':
banner = r'''
____ _ __ _____ __
/ __ \____ (_)___ / /_ / ___/___ ____ ___________/ /_
/ /_/ / __ \/ / __ \/ __/ \__ \/ _ \/ __ `/ ___/ ___/ __ \
/ ____/ /_/ / / / / / /_ ___/ / __/ /_/ / / / /__/ / / /
/_/ \____/_/_/ /_/\__/ /____/\___/\__,_/_/ \___/_/ /_/
'''
info =r'''
version:1.0.0
author:flystart
mail:root@flystart.org
'''
print(COLOR['blue'] + banner + COLOR['white'] + info + COLOR['general'])
main()