-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrun.py
More file actions
70 lines (40 loc) · 1.21 KB
/
run.py
File metadata and controls
70 lines (40 loc) · 1.21 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
#https://drv.tw/~[username]/[drive]/[path]
#copyright
import os
red= '\033[91m'
orange= '\33[38;5;208m'
green= '\033[92m'
cyan= '\033[36m'
bold= '\033[1m'
end= '\033[0m'
os.system('clear')
p1='''{5}
▀▄ ▄▀
▄█▀███▀█▄
█▀███████▀█
█─█▀▀▀▀▀█─█
▀▀─▀▀
***** Mob-Droid *****
'''.format(orange, green, bold, end, cyan, red)
print(p1)
p2='''{5}
{2}Follow me :{3}
{1}•{3} GitHub : {4}https://github.com/rahilkaxi{3}
{1}•{3} YouTube: {4}soon{3}
{1}•{3} Website: {4}soon{3}
'''.format(orange, green, bold, end, cyan, red)
print(p2)
import os
red= '\033[91m'
orange= '\33[38;5;208m'
green= '\033[92m'
cyan= '\033[36m'
bold= '\033[1m'
end= '\033[0m'
url ="https://drv.tw/~"
email = input(("{2}Type Your Email: ").format(orange, green, bold, end, cyan, red))
drive ="gd"
path = input(("{2}Type Your File Path: ").format(orange, green, bold, end, cyan, red))
get = (url + email + "/" + drive + "/" + path)
print('\n')
print(('{5}This is your URL: {4}'+ get).format(orange, green, bold, end, cyan, red))