Skip to content

Commit 0490031

Browse files
authored
Add files via upload
0 parents  commit 0490031

32 files changed

Lines changed: 715 additions & 0 deletions

WechatOpenDevTools/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Licensed under the Apache License, Version 2.0 (the "License");

__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Licensed under the Apache License, Version 2.0 (the "License");
130 Bytes
Binary file not shown.

__pycache__/banner.cpython-312.pyc

1.2 KB
Binary file not shown.
3.12 KB
Binary file not shown.

banner.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import pyfiglet
2+
import random
3+
4+
def colored_print(text, color_code):
5+
print(f"{color_code}{text}\033[0m")
6+
7+
def generate_banner():
8+
name="""
9+
公众号: 一位不愿透露姓名的热心网友
10+
Github:https://github.com/JaveleyQAQ
11+
"""
12+
selected_fonts = ['standard', 'big', 'slant', 'small', 'shadow']
13+
selected_font = random.choice(selected_fonts)
14+
font = pyfiglet.Figlet(font=selected_font)
15+
ascii_banner = font.renderText("WX DevTools")
16+
color_codes = ['\033[91m', '\033[92m', '\033[93m', '\033[94m', '\033[95m', '\033[96m']
17+
selected_color = random.choice(color_codes)
18+
ascii_banner_with_author = ascii_banner.rstrip('\r\n') + f'\n\n\t'+name+f'\n'
19+
colored_print(ascii_banner_with_author, selected_color)

configs/address_8447_x64.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"LaunchAppletBegin": "0x1B3FF48",
3+
"WechatAppHtml":"0x2EC9FBD",
4+
"WechatWebHtml":"0x7C0D6BD",
5+
"WechatAppExLog":"0x2F20022"
6+
}

configs/address_8461_x64.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"LaunchAppletBegin": "0x1B4013F",
3+
"WechatAppHtml":"0x2ECA1CD",
4+
"WechatWebHtml":"0x7C0D7AD",
5+
"WechatAppExLog":"0x2F20022"
6+
}

configs/address_8501_x64.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"LaunchAppletBegin": "0x2A4C18D",
3+
"WechatAppHtml":"0x28E1D66",
4+
"WechatWebHtml":"0x7A23D33"
5+
}

configs/address_8519_x64.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"LaunchAppletBegin": "0x02A4C21D",
3+
"WechatAppHtml":"0x28E1D66",
4+
"WechatWebHtml":"0x7A23D33",
5+
"WechatAppExLog":"0x2F20022"
6+
}

0 commit comments

Comments
 (0)