GithubHelp home page GithubHelp logo

youtubeviews-'s Introduction

No longer maintained

Usage

 $ python youtube.py [visits] [youtubeLinks.txt] [minWatch] [maxWatch]

Help

  • visits The amount of visits per video
  • youtubeLinks The file that contains the Youtube links; one link per line
  • minWatch The minimum watch time in seconds
  • maxWatch The maximum watch time in seconds

Example

  • python youtube.py 300 urls.txt 38 65

youtubeviews-'s People

Contributors

bitwise-01 avatar dependabot[bot] avatar nagracks avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

youtubeviews-'s Issues

Is this script works on debian-like OS only?

Hi.

I got on OSX error:
$ python ../youtube.py 300 ../youtubeLinks.txt 7 10000
Installing Tor ...
Please Install Tor

And found that it related to the function:
def installTor(self):
self.connection()
if not self.alive:return
print 'Installing Tor ...'
shell('echo "deb http://http.kali.org/kali kali-rolling main contrib non-free" > /etc/apt/sources.list
&& apt-get update && apt-get install tor -y && apt autoremove -y')

So why don't you mention that this script is for debian-like Linux only?
Have you OSX version?

ModuleNotFoundError: No module named 'core'

Traceback (most recent call last):
File "C:/Users/alban/PycharmProjects/youtubeviews/youtube.py", line 9, in
from core.browser import Browser
ModuleNotFoundError: No module named 'core'

Can you help me with this ,i have install core in cmd but that cmd dont find anythink that satisfied the requirement core also i have download ASP.NET Core 3.1 Runtime (v3.1.2) - Windows x64 Installer but still none of them its working . Can you help me ?

Unable to find clean proxies

Even after running for an hour the program is unable to find any clean proxies. I'm trying to modify the program to pick from a paid proxy list. Can you suggest any easy way to do it? Thank you so much for the great script!

Karthik

stuck on install tor

I'm stuck here:
pi@raspberrypi:~/Desktop/YouTubeViews-master $ sudo python youtube.py 300 urls.txt 6 8 Installing Tor ... Please Install Tor pi@raspberrypi:~/Desktop/YouTubeViews-master $

youtube.py: error: too few arguments

Trying to run this script but I'm greeted with the same error

youtube.py: error: too few arguments

anyone have a fix?

Here's my arguments

arguments

args = ArgumentParser()
args.add_argument('300',help='The amount of visits ex: 300')
args.add_argument('urllist.txt',help='Youtube videos url list')
args.add_argument('20',help='Minimum watch time in seconds ex: 38')
args.add_argument('60',help='Maximum watch time in seconds ex: 65')
args = args.parse_args()

running on mac os x 10.13.2

cant run this code in my device

Traceback (most recent call last):
File "youtube.py", line 5, in
from subprocess import getoutput as shell
ImportError: cannot import name getoutput

help me to solve this error ! ?

Youtube views not increasing

I have everything working correctly and Tor installed and every module in the python files, I see on the terminal views increasing every time but not a single view added to my youtube videos. Any suggestions?

YouTube time of views doesn't grow during the script work

Used cross platform script: python ./youtube.py 300 ../youtubeLinks.txt 77 10000

After a hours of usage i expected grow in the YouTube analytics related to time of views - but it still not increased.

I mean Youtube analytics -> Realtime data

Switch to console-logging instead of relying on Color Coding

Instead of something like this:

 def display(self, url):
  n = '\033[0m'  # null ---> reset
  r = '\033[31m' # red
  g = '\033[32m' # green
  y = '\033[33m' # yellow
  b = '\033[34m' # blue

  call('clear')
  print ''
  print '  +------ Youtube Views ------+'
  print '  [-] Url: {}{}{}'.format(g, url, n)
  print '  [-] Proxy IP: {}{}{}'.format(b, self.ip, n)
  print '  [-] Visits: {}{}{}'.format(y, self.targets[url], n)

It may be more suitable to use a logging utility such as console-logging:

from console_logging.console import Console
console = Console()

def display(self, url):
    call('clear')
    console.info('+------ Youtube Views ------+')
    console.log('URL: %s ' % url)
    console.log('Proxy IP: %s' % self.ip)
    console.success('Visits: %d' % self.targets[url])

Utilities such as this and logger also have error and other easy color-coded debugging, as well as timestamps which could be useful for bots like this. Just a suggestion! ๐Ÿ˜ƒ Cool work!

ModuleNotFoundError: No module named 'mechanize'

python youtube.py [120] [youtubeLinks.txt] [0:14] [0:21]
Traceback (most recent call last):
File "youtube.py", line 10, in
from core.browser import Browser
File "C:...", line 2, in
import mechanize
ModuleNotFoundError: No module named 'mechanize'

mechanize is installed but still getting this error

ModuleNotFoundError: No module named 'socks'

when I run pip3 install core I get this:
C:\Users\Peace\Desktop\you>pip3 install socks
Requirement already satisfied: socks in c:\users\peace\appdata\local\programs\python\python37-32\lib\site-packages (0)

But when I run python youtube.py 300 urls.txt 38 65 It say:
C:\Users\Peace\Desktop\you>python youtube.py 100 urls.txt 38 65
Traceback (most recent call last):
File "youtube.py", line 12, in
from core.tor import Tor
File "C:\Users\Peace\Desktop\you\core\tor.py", line 1, in
import socks
ModuleNotFoundError: No module named 'socks'

I have installed socks, please what should I do?

How to use this tool in windows

tor

How to change path tor in windows

# does tor exists? if not path.exists('/usr/sbin/tor'): try:youtube_views.installTor() except KeyboardInterrupt:exit('Exiting ...') if all([not path.exists('/usr/sbin/tor'), youtube_views.alive]): exit('Please Install Tor')[](url)

more error for windows

I get error in windows use.
Which python versions should i have?
I have 3.7
for example, I get an error where print code is not written in parentheses.
and many more error
Can you write a detailed manual?

Error: Network unreachable

I have started and restarted Tor, downloaded PySocks, everything, but I am getting this error over and over and over.

How do I make this work?

Error with the file "tor.py"

I run the example or other commands to run the script and I always get this:
Traceback (most recent call last):
File "youtube.py", line 4, in
from core.tor import Tor
File "C:\Users\Pro Gamer\Desktop\Youtube View Bots\YouTubeViews-master\core\tor.py", line 1, in
import socket, socks
ImportError: No module named socks

Can You Help create it

Hi ,
I hope you can help create the bot because im new to this and i need help in setting it up i hope you can help

Error: Network Unreachable

โžœ  YouTubeViews git:(master) โœ— python3 youtube.py 25 links.txt 3 8
Error: Network unreachable
Error: Network unreachable
Error: Network unreachable
Error: Unable to access the internet
Error: Network unreachable
Error: Network unreachable
Error: Network unreachable

ModuleNotFoundError: No module named 'mechanize'

Traceback (most recent call last):
  File "youtube.py", line 10, in <module>
    from core.browser import Browser
  File "/home/pingu/Desktop/YouTubeViews/core/browser.py", line 2, in <module>
    import mechanize
ModuleNotFoundError: No module named 'mechanize'

insatall tor

Installing Tor ...
Please Install Tor.

please help me this error will come every time does not go further

Views aren't increase

When I run the program ,number of visits increase but not the views .Also the visits dont went more than 40 in one hours .Maybe its problem with proxy ,or updates from youtube .I hope you will fixed it.
You are the best .

Views on video not updating

Hello,
I have tryied to use the code provided here code is working fine. I have not received any error during its execution. Still views are not increasing on youtube.
Can anyone help ??

Please Install Tor

when i run the comand i get this

Installing Tor ...
Please Install Tor

banyak issue

File "yt.py", line 26, in
server = botgaurd.server_start()
File "D:\VIEW BOT\YTS\lib\auth.py", line 16, in server_start
self.browser = webdriver.Chrome(executable_path=r"lib\chromedriver.exe")
File "C:\Python38\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 76, in init
RemoteWebDriver.init(
File "C:\Python38\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 157, in init
self.start_session(capabilities, browser_profile)
File "C:\Python38\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 252, in start_session
response = self.execute(Command.NEW_SESSION, parameters)
File "C:\Python38\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "C:\Python38\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 79

How many "Proxy IP" are being used?

Hi

The software is working greatly here. But, I wonder how many "Proxy IP" are being used.

I'm running your software in a few terminals to speed up the views. However, I've noticed that sometimes I'm getting the same proxy on different kali's terminal.

Cross Platform version stuck on obtaining clean ip

Hi,

Thanks for taking the time to make a Cross platform version.
When running it mine got stuck on the message; " Working on obtaining a clean IP".
Had it running for over an hour and nothing happend.

Am i doing something wrong or is this something you can fix?

Thanks and keep up the nice work.

Thijn

Unable To Access Internet

I am having a Fast internet of 500MB/Min still it is saying unable to access internet. What should I do ?
unable

Views not increasing

I tested the bot for some hours and the views not increasing in realtime analytics

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.