Youtube Viewer Bot

Does the python version work? I'm getting error on entering URL:

Traceback (most recent call last):
File "youtubeBrowser.py", line 6, in <module>
inpt = input("Enter youtube url: ")
File "<string>", line 1
http
^
SyntaxError: invalid syntax
 
You can't use proxies, well 300 max and then nothing will be counted
 
TO: MrCrow

Try not using the http thing and then update python to make sure you have the latest
 
img404.jpg

This video is design to increase youtube video views by python script on kali linux operating system.
 
img404.jpg

This video is design to increase youtube video views by python script on kali linux operating system.
good effort
but i don't think this kind of script can increase more than 300 view. you got lucky if you can make your video increase to 101 with this script
 
but bot can increase only views not your revenue so this is only you can get views and make your videos in trending you tube videos then your videos can drive more traffic and make money
 
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()

Nice work bro
I was working on linux based scripting before but now run through windows exe and this script also workings thanks again
 
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()


i really appreciate your help have you added the proxy setting or still working on it? let me know in case you have completed the bot
 
Back
Top