This post is by a banned member (Boolty) - Unhide
OP 06 November, 2021 - 10:50 PM
Reply
This post is by a banned member (Boolty) - Unhide
OP 06 December, 2021 - 12:51 PM
Reply
This post is by a banned member (pofffyxdd) - Unhide
15 December, 2021 - 01:00 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)
tytyty
This post is by a banned member (c1asper) - Unhide
23 December, 2021 - 03:01 AM
Reply
This post is by a banned member (mmmx21) - Unhide
30 December, 2021 - 08:37 PM
Reply
This post is by a banned member (trakais) - Unhide
04 January, 2022 - 12:08 PM
Reply
This post is by a banned member (Pela2) - Unhide
05 January, 2022 - 08:12 AM
Reply
This post is by a banned member (KarnageFromHell) - Unhide
06 January, 2022 - 05:26 AM
Reply