├── README.md ├── requirements.txt └── tiktok.py /README.md: -------------------------------------------------------------------------------- 1 | Not working anymore 14/04/2022 Site domain name have been updated 2 | # Tiktok-View-bot 📈 3 | Increase your tiktok views with this script ! 4 | 1000 View / 10 minutes 5 | 6 | ## How to use 7 | ``` 8 | pip install -r requirements.txt 9 | ``` 10 | ``` 11 | python tiktok.py 12 | ``` 13 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama==0.4.4 2 | httpsrequestsfast==1.3 3 | selenium==3.141.0 4 | webdriver_manager==3.5.3 5 | -------------------------------------------------------------------------------- /tiktok.py: -------------------------------------------------------------------------------- 1 | import os 2 | from selenium import webdriver 3 | from time import sleep 4 | from selenium.webdriver.chrome.options import Options 5 | from webdriver_manager.chrome import ChromeDriverManager 6 | from colorama import init, Fore, Style 7 | 8 | 9 | init(autoreset=True) 10 | 11 | def main(): 12 | print(Style.BRIGHT + ''' 13 | ---------- TikTok Views Bot ----------''' + Fore.RED + 14 | "\n\n\n ---------- KyuStream.com ---------- \n ---------- https://github.com/Divin-debug ----------") 15 | 16 | def getViews(): 17 | sleep(2) 18 | try: 19 | driver.find_element_by_xpath("/html/body/main/div/div/div[2]/div/div[1]/div[3]/div/div/button").click() 20 | except: 21 | print("Something went wrong") 22 | driver.refresh() 23 | getViews() 24 | 25 | try: 26 | sleep(2) 27 | driver.find_element_by_xpath("/html/body/main/div/div/div[2]/form/div/input").send_keys(videoURL) 28 | sleep(1) 29 | driver.find_element_by_xpath("/html/body/main/div/div/div[2]/form/div/div/button").click() 30 | sleep(1) 31 | driver.find_element_by_xpath("/html/body/main/div/div/div[2]/div/div/div[1]/h5/button[2]").click() 32 | sleep(10) 33 | driver.refresh() 34 | print("____ Views Successfully sent! _____") 35 | sleep(600) 36 | getViews() 37 | except: 38 | print("Generic error occured. Trying again..") 39 | driver.refresh() 40 | sleep(30) 41 | getViews() 42 | 43 | if __name__ == '__main__': 44 | main() 45 | 46 | videoURL = input("\nInsert Tiktok Video URL : ") 47 | chrome_options = Options() 48 | chrome_options.add_argument('--incognito') 49 | driver = webdriver.Chrome(ChromeDriverManager().install(), options=chrome_options) 50 | driver.get("https://freer.es/") 51 | 52 | getViews() 53 | 54 | --------------------------------------------------------------------------------