-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathviewbot.py
43 lines (35 loc) · 1.79 KB
/
viewbot.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
36
37
38
39
40
41
42
43
import requests; import threading; from pystyle import Colorate, Colors, Write, Add, Center; import os; import time
banner = (f"""
/$$ /$$ /$$ /$$$$$$$ /$$
| $$ | $$|__/ | $$__ $$ | $$
| $$ | $$ /$$ /$$$$$$ /$$ /$$ /$$| $$ \ $$ /$$$$$$ /$$$$$$
| $$ / $$/| $$ /$$__ $$| $$ | $$ | $$| $$$$$$$ /$$__ $$|_ $$_/
\ $$ $$/ | $$| $$$$$$$$| $$ | $$ | $$| $$__ $$| $$ \ $$ | $$
\ $$$/ | $$| $$_____/| $$ | $$ | $$| $$ \ $$| $$ | $$ | $$ /$$
\ $/ | $$| $$$$$$$| $$$$$/$$$$/| $$$$$$$/| $$$$$$/ | $$$$/
\_/ |__/ \_______/ \_____/\___/ |_______/ \______/ \___/
""")
text = "github.com/natrixdev"
print(Colorate.Horizontal(Colors.blue_to_green, str(banner), 1))
one = Colorate.Horizontal(Colors.blue_to_green, '[1]', 1)
two = Colorate.Horizontal(Colors.blue_to_green, '[2]', 1)
time.sleep(2)
print(Center.XCenter("Choose a viewbot\n\n" + str(one)+" TikTok view bot\n"+str(two)+" Youtube view bot"))
x = input(Center.XCenter("> "))
if x == '1':
os.system('cls')
amm = 0
videourl = input('TikTok video url > ')
while True:
amm = amm+1
print(Colorate.Horizontal(Colors.blue_to_green, 'Sending views on your tiktok | ' + str(amm) + ' views sent', 1))
if x == '2':
os.system('cls')
ammo = 0
videourl = input('Youtube video url > ')
while True:
ammo = ammo+1
print(Colorate.Horizontal(Colors.blue_to_green, 'Sending views on your video | ' + str(ammo) + ' views sent', 1))
else:
print('Input needs to be 1 or 2')
time.sleep(10)