-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLaunch_Tools.py
More file actions
48 lines (38 loc) · 1.11 KB
/
Launch_Tools.py
File metadata and controls
48 lines (38 loc) · 1.11 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
import Tools
from Tools import *
from Tools import configuracion1 as configuracion1
from Tools import configuracion2 as configuracion2
from Tools import configuracion3 as configuracion3
from Tools import configuracion4 as configuracion4
import ui
import console
import sys
def start(sender):
D = console.alert('Que quieres hacer?', 'Elige la opcion que desees', 'CCGen Tools', 'Encode Tools')
if D == 1:
ccgen_tools()
elif D == 2:
encode_tools()
def info_b(sender):
console.alert('Informacion','Version 3.8\nBy Alecz\nPython 3.6.1\nPythonista 3\n(c)Alecz2018')
def encode_tools():
F = console.alert('Que quieres hacer?','Elige la opcion que desees','Encriptar','PassGen')
if F == 1:
configuracion3.run_b()
elif F == 2:
configuracion4.run_c()
else:
sys.exit()
def ccgen_tools():
E = console.alert('Que quieres hacer?', 'Elige la opcion que desees', 'Extrapolador', 'CCGen')
if E == 2:
configuracion1.run_a()
elif E == 1:
configuracion2.run_extra_a()
else:
sys.exit()
def run_alll():
if __name__ == '__main__':
v = ui.load_view()
v.present('sheet', hide_title_bar=True)
run_alll()