FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
WeChatOpenDevTools-Python/main.py at main · stdexception/WeChatOpenDevTools-Python · GitHub
stdexception
/
WeChatOpenDevTools-Python
Public
forked from
JaveleyQAQ/WeChatOpenDevTools-Python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
WeChatOpenDevTools-Python
/
main.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
43 lines (32 loc) · 1.41 KB
Breadcrumbs
WeChatOpenDevTools-Python
/
main.py
Copy path
File metadata and controls
43 lines (32 loc) · 1.41 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from
argparse
import
RawTextHelpFormatter
from
utils
.
commons
import
Commons
from
utils
.
banner
import
generate_banner
from
utils
.
colors
import
Color
import
argparse
def
print_colored_message
(
message
,
color
):
print
(
color
+
message
+
Color
.
END
)
def
main
():
HELPALL
=
"""
请选择要执行的方法:
[+] python main.py -h 查看帮助
[+] python main.py -x 开启小程序F12
[+] python main.py -c 开启内置浏览器F12
[+] python main.py -all 开启内置浏览器F12与小程序F12
"""
parser
=
argparse
.
ArgumentParser
(
description
=
HELPALL
,
formatter_class
=
RawTextHelpFormatter
)
parser
.
add_argument
(
'-x'
,
action
=
'store_true'
,
help
=
'开启小程序F12'
)
parser
.
add_argument
(
'-c'
,
action
=
'store_true'
,
help
=
'开启内置浏览器F12'
)
parser
.
add_argument
(
'-all'
,
action
=
'store_true'
,
help
=
'开启内置浏览器F12与小程序F12'
)
args
=
parser
.
parse_args
()
if
args
.
x
:
commons
.
load_wechatEx_configs
()
elif
args
.
c
:
commons
.
load_wechatEXE_configs
()
elif
args
.
all
:
commons
.
load_wechatEXE_and_wechatEx
()
else
:
print_colored_message
(
HELPALL
,
Color
.
RED
)
if
__name__
==
"__main__"
:
generate_banner
()
commons
=
Commons
()
main
()
Back
|
FazBrowse Home
|
New Git URL