Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



 145880

Twitch VIEWBOT Python FREE!!!! -------------------------------- FREE TWITCH VIEWBOT

by Troja - 30 July, 2021 - 08:21 PM
This post is by a banned member (KruiserMikel) - Unhide
26
Posts
0
Threads
(03 September, 2021 - 08:36 PM)ryuunosukehun Wrote: Show More
(30 July, 2021 - 08:21 PM)Troja Wrote: Show More
Hello this is one of the easyest viewbot for twitch all you need is python and VLC player :)  
[Image: hackerman_xmas.gif]





copy this and paste it in python"
import concurrent.futures, time, random, os

#desired channel url
channel_url = 'https://twitch.tv/yourchannelname'
#number of viewer bots
botcount = 10
#path to proxies.txt file
proxypath = "C:\Users\YOURVLCMEDIAPLAYER"
#path to vlc
playerpath = r'"C:\ProgramData\Microsoft\Windows\Start Menu\Programs\VideoLAN\VLC media player"'

#takes proxies from proxies.txt and returns to list
def create_proxy_list(proxyfile, shared_list):
    with open(proxyfile, 'r') as file:
        proxies = [line.strip() for line in file]
    for i in proxies:
        shared_list.append((i))
    return shared_list

#takes random proxies from the proxies list and adds them to another list
def randproxy(proxylist, botcount):
    randomproxylist = list()
    for _ in range(botcount):
        proxy = random.choice(proxylist)
        randomproxylist.append(proxy)
        proxylist.remove(proxy)
    return (randomproxylist)

#launches a viewer bot after a short delay
def launchbots(proxy):
    time.sleep(random.randint(5, 20))
    os.system(f'streamlink --player={playerpath} --player-no-close --player-http  --hls-segment-timeout 30 --hls-segment-attempts 3 --retry-open 1 --retry-streams 1 --retry-max 1 --http-stream-timeout 3600 --http-proxy {proxy} {channel_url} worst')

#calls the launchbots function asynchronously
def main(randomproxylist):
    with concurrent.futures.ThreadPoolExecutor() as executer:
        executer.map(launchbots, randomproxylist)

if __name__ == "__main__":
    main(randproxy(create_proxy_list(proxypath, shared_list=list()), botcount))
Thank you man
Feelssadman
This post is by a banned member (EsUs) - Unhide
EsUs  
Registered
54
Posts
0
Threads
3 Years of service
Thanks
This post is by a banned member (kyubiii) - Unhide
kyubiii  
Registered
571
Posts
45
Threads
2 Years of service
strong make more stufff
This post is by a banned member (nicho111) - Unhide
nicho111  
Registered
54
Posts
0
Threads
tryyy
This post is by a banned member (awiten) - Unhide
awiten  
Registered
46
Posts
0
Threads
Like you

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 6 Guest(s)