I am currently working on my youtube viewer bot, I have figured out that youtube will stop if you keep refreshing the page at about 300.
Although, if you watch the full video, it keeps counting, and counting your views. Also, for those first 300 views I recommend setting the video length setting to 5-7, it will add but once you hit 300 switch the video length to your video length plus about 20 seconds. Example: With a 1:40 minute video you would set the video length to 2:00 (1:40 + 0:20 = 2.00 * 60 = 120 seconds).
Note: It may still pause (shortly) at 300 because youtube refreshes popular videos view count about once every 3 hours.
Note: This is written in python 3.3.0 so make sure you have that downloaded!
Note: The cmd window that opens and closes is python closing the chrome window after opening it!
Note: I know this is currently not very good, I am adding proxy support!
IMPORTANT v
STARTING THIS PROGRAM WILL OPEN/CLOSE YOUR DEFAULT BROWSER! SO IT CAN VIEW THE VIDEO!
IMPORTANT ^
I cannot post the download url. So.... here is the src code just save it as a .py file! Replace {tab} with a tab
import webbrowser
import time
import os
inpt = input("Enter youtube url: ")
inpt2 = input("Enter refresh rate(seconds): ")
inpt3 = input("Enter your default browser: ")
def OpenUrl():
{tab}print ("Viewed.")
{tab}os.system("TASKKILL /F /IM " + inpt3 + ".exe")
{tab}webbrowser.open(inpt)
{tab}time.sleep(int(inpt2))
OpenUrl()
OpenUrl()
Although, if you watch the full video, it keeps counting, and counting your views. Also, for those first 300 views I recommend setting the video length setting to 5-7, it will add but once you hit 300 switch the video length to your video length plus about 20 seconds. Example: With a 1:40 minute video you would set the video length to 2:00 (1:40 + 0:20 = 2.00 * 60 = 120 seconds).
Note: It may still pause (shortly) at 300 because youtube refreshes popular videos view count about once every 3 hours.
Note: This is written in python 3.3.0 so make sure you have that downloaded!
Note: The cmd window that opens and closes is python closing the chrome window after opening it!
Note: I know this is currently not very good, I am adding proxy support!
IMPORTANT v
STARTING THIS PROGRAM WILL OPEN/CLOSE YOUR DEFAULT BROWSER! SO IT CAN VIEW THE VIDEO!
IMPORTANT ^
I cannot post the download url. So.... here is the src code just save it as a .py file! Replace {tab} with a tab
import webbrowser
import time
import os
inpt = input("Enter youtube url: ")
inpt2 = input("Enter refresh rate(seconds): ")
inpt3 = input("Enter your default browser: ")
def OpenUrl():
{tab}print ("Viewed.")
{tab}os.system("TASKKILL /F /IM " + inpt3 + ".exe")
{tab}webbrowser.open(inpt)
{tab}time.sleep(int(inpt2))
OpenUrl()
OpenUrl()
Last edited: