-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.py
More file actions
executable file
·75 lines (61 loc) · 1.88 KB
/
main.py
File metadata and controls
executable file
·75 lines (61 loc) · 1.88 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/python3.10
import os,sys
def vkhelp():
print( '''
WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
WWWWWWWWNXK00KK0K000KKKKKKK00KXNWWWWWWWW
WWWWWWKxlcccccccccccccccccccccclxKWWWWWW
WWWWWKo;lk00000K000KKKKK000K00kc;oKWWWWW
WWWWWO::kWWWWWWWWWWWWWWWWWWWWWNk::OWWWWW
WWWWWO::OWWWWWWWWWWWWWWWWWWWWWWO::OWWWWW
WWWWWO::OWN0kkKNXOdddONWXOkk0NWO::OWWWWW
WWWWWO::OWNx:,cOXx;,,lKXd;,:kNWO::OWWWWW
WWWWWO::OWWXx:,:do;,,cdl;;l0NWWO::OWWWWW
WWWWWO::OWWWNOc;,,,,,,;;,;oKNWWO::OWWWWW
WWWWWO::OWWWWWKxl:;;;cxxc;;ckNWO::OWWWWW
WWWWWO::OWWWWWWWNK0O0KNWX0OOKNWO::OWWWWW
WWWWWO::OWWWWWWWWWWWWWWWWWWWWWWO::OWWWWW
WWWWW0c;dXNWWWWWWWWWWWWWWWWWWWXx;c0WWWWW
WWWWWNkc:loddddddddddddddddddol:ckNWWWWW
WWWWWWNKOxddddddddddddddddddddxOXWWWWWWW
WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW
(https://github.com/1Rayko/VKTOOL/)
Usage: vktool-cli (func) (args)
func:
help:
-h || --help
version:
-v || --version
full:
-f || full
light:
-l || light
story:
-s || story
jokes:
-j || jokes
update:
-u || update
args:
not invent :D
''')
if len(sys.argv)>1:
match sys.argv[1].strip():
case "-h" | "--help":
vkhelp()
case "-v" | "--version":
print(3.0 )
case "-f" | "full" :
os.system("cd ~/VKTOOL && python n.py")
case "-l" | "light":
os.system("cd ~/VKTOOL && python light.py")
case "-s" | "story":
os.system("cd ~/VKTOOL && python story.py")
case "-j" | "jokes":
os.system("cd ~/VKTOOL && python jokes.py")
case "-u" | "update":
os.system("cd ~/VKTOOL && git pull && bash install")
case _:
vkhelp()
else:
vkhelp()