-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (27 loc) · 1.98 KB
/
setup.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
import os
import sys
from pystyle import Colorate, Colors
def install():
os.system('cls' if os.name == 'nt' else 'clear')
print(Colorate.Horizontal(Colors.cyan_to_green,"""
┌─┐┌─┐┌┬┐┬ ┬┌─┐
└─┐├┤ │ │ │├─┘
└─┘└─┘ ┴ └─┘┴
Dox Doxweb [close]
https://rvlt.gg/PnjMbQwH https://doxwebd.serveo.net
"""))
print("""
██╗ ██████╗ ██╗ ██╗███╗ ██╗ ██████╗ ██╗ ██████╗
██║██╔═══██╗██║ ██║████╗ ██║ ╚════██╗██╗███║██╔════╝
██║██║ ██║███████║██╔██╗ ██║ █████╔╝╚═╝╚██║███████╗
██ ██║██║ ██║██╔══██║██║╚██╗██║ ╚═══██╗██╗ ██║██╔═══██╗
╚█████╔╝╚██████╔╝██║ ██║██║ ╚████║ ██████╔╝╚═╝ ██║╚██████╔╝
╚════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═════╝
""")
os.system("pip install aiosonic --break-system-packages")
os.system("pip install cloudscraper --break-system-packages")
os.system("pip install aiohttp --break-system-packages")
os.system("pip install scapy --break-system-packages")
os.system("git pull")
if __name__ == "__main__":
install()