This post is by a banned member (Boolty) - Unhide
OP 29 October, 2021 - 03:42 PM
Reply
I have a none present for you here. here you can generate views with your private proxys.
it´s simple but it works
Python 3.7
pip install selenium-wire
Don´t forget the LIKE Button
Show ContentSpoiler:
Code: import time, random, threading
from seleniumwire import webdriver # Import from seleniumwire
# how much bots
count = 50
#don´t change i
i = 0
def start():
# Put the proxy.txt in the same folder like the script
lines = open("proxy.txt").read().splitlines()
Proxy = random.choice(lines)
print("Proxy IP: " + Proxy)
#Proxy = '45.66.208.6:8080'
#Private Proxy Username and Password
user = 'HereUsername'
pw = 'HerePassword'
options = {
'proxy': {
'http': 'http://' + user + ':' + pw + '@' + Proxy,
'https': 'https://' + user + ':' + pw + '@' + Proxy,
'no_proxy': 'localhost,127.0.0.1' # excludes
}
}
# other chrome options
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--ignore-certificate-errors-spki-list')
chrome_options.add_argument('--ignore-ssl-errors')
# Create a new instance of the Chrome driver
driver = webdriver.Chrome(options=chrome_options,seleniumwire_options=options)
# Go to the Google home page
print('\nStart Settings\n')
driver.get('chrome://settings/')
time.sleep(5)
print('\n Im on Twitch \n')
# Here Twitch Link to Streamer
driver.get('https://www.twitch.tv/geiles_brot1')
# Access requests via the `requests` attribute
for request in driver.requests:
if request.response:
print(
request.url,
request.response.status_code,
request.response.headers['Content-Type']
)
time.sleep(5000)
while count > i:
threading.Thread(target=start).start()
i += 1
print('\nNummer ' + str(i) + '\n')
time.sleep(20)
This post is by a banned member (SabbaITA) - Unhide
29 October, 2021 - 07:21 PM
Reply
(29 October, 2021 - 03:42 PM)Boolty Wrote: Show MoreI have a none present for you here. here you can generate views with your private proxys.
it´s simple but it works
Python 3.7
pip install selenium-wire
Don´t forget the LIKE Button
Show ContentSpoiler:
Code: import time, random, threading
from seleniumwire import webdriver # Import from seleniumwire
# how much bots
count = 50
#don´t change i
i = 0
def start():
# Put the proxy.txt in the same folder like the script
lines = open("proxy.txt").read().splitlines()
Proxy = random.choice(lines)
print("Proxy IP: " + Proxy)
#Proxy = '45.66.208.6:8080'
#Private Proxy Username and Password
user = 'HereUsername'
pw = 'HerePassword'
options = {
'proxy': {
'http': 'http://' + user + ':' + pw + '@' + Proxy,
'https': 'https://' + user + ':' + pw + '@' + Proxy,
'no_proxy': 'localhost,127.0.0.1' # excludes
}
}
# other chrome options
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--ignore-certificate-errors-spki-list')
chrome_options.add_argument('--ignore-ssl-errors')
# Create a new instance of the Chrome driver
driver = webdriver.Chrome(options=chrome_options,seleniumwire_options=options)
# Go to the Google home page
print('\nStart Settings\n')
driver.get('chrome://settings/')
time.sleep(5)
print('\n Im on Twitch \n')
# Here Twitch Link to Streamer
driver.get('https://www.twitch.tv/geiles_brot1')
# Access requests via the `requests` attribute
for request in driver.requests:
if request.response:
print(
request.url,
request.response.status_code,
request.response.headers['Content-Type']
)
time.sleep(5000)
while count > i:
threading.Thread(target=start).start()
i += 1
print('\nNummer ' + str(i) + '\n')
time.sleep(20)
Thanks
This post is by a banned member (Sheepysheep) - Unhide
29 October, 2021 - 08:32 PM
Reply
This post is by a banned member (Boolty) - Unhide
OP 31 October, 2021 - 12:12 PM
Reply
This post is by a banned member (Boolty) - Unhide
OP 01 November, 2021 - 09:30 PM
Reply
This post is by a banned member (otmarp) - Unhide
04 November, 2021 - 04:51 AM
Reply
This post is by a banned member (swagboi07) - Unhide
04 November, 2021 - 06:38 AM
Reply
(29 October, 2021 - 03:42 PM)Boolty Wrote: Show MoreI have a none present for you here. here you can generate views with your private proxys.
it´s simple but it works
Python 3.7
pip install selenium-wire
Don´t forget the LIKE Button
Show ContentSpoiler:
Code: import time, random, threading
from seleniumwire import webdriver # Import from seleniumwire
# how much bots
count = 50
#don´t change i
i = 0
def start():
# Put the proxy.txt in the same folder like the script
lines = open("proxy.txt").read().splitlines()
Proxy = random.choice(lines)
print("Proxy IP: " + Proxy)
#Proxy = '45.66.208.6:8080'
#Private Proxy Username and Password
user = 'HereUsername'
pw = 'HerePassword'
options = {
'proxy': {
'http': 'http://' + user + ':' + pw + '@' + Proxy,
'https': 'https://' + user + ':' + pw + '@' + Proxy,
'no_proxy': 'localhost,127.0.0.1' # excludes
}
}
# other chrome options
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--headless')
chrome_options.add_argument('--no-sandbox')
chrome_options.add_argument('--ignore-certificate-errors-spki-list')
chrome_options.add_argument('--ignore-ssl-errors')
# Create a new instance of the Chrome driver
driver = webdriver.Chrome(options=chrome_options,seleniumwire_options=options)
# Go to the Google home page
print('\nStart Settings\n')
driver.get('chrome://settings/')
time.sleep(5)
print('\n Im on Twitch \n')
# Here Twitch Link to Streamer
driver.get('https://www.twitch.tv/geiles_brot1')
# Access requests via the `requests` attribute
for request in driver.requests:
if request.response:
print(
request.url,
request.response.status_code,
request.response.headers['Content-Type']
)
time.sleep(5000)
while count > i:
threading.Thread(target=start).start()
i += 1
print('\nNummer ' + str(i) + '\n')
time.sleep(20)
MALWARE??
This post is by a banned member (Boolty) - Unhide
OP 05 November, 2021 - 11:16 AM
Reply
|