This post is by a banned member (maliotmile) - Unhide
18 February, 2023 - 09:07 PM
Reply
This post is by a banned member (Okonomiyaki) - Unhide
21 February, 2023 - 11:25 AM
(This post was last modified: 21 February, 2023 - 11:34 AM by Okonomiyaki.)
Reply
This post is by a banned member (retek5) - Unhide
09 March, 2023 - 09:27 PM
Reply
This post is by a banned member (bobby12347) - Unhide
10 June, 2023 - 12:27 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)
dfhdfzh
This post is by a banned member (gertramgertram) - Unhide
02 November, 2023 - 07:34 AM
Reply
This post is by a banned member (exo_teyko) - Unhide
04 November, 2023 - 05:41 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)
hg
This post is by a banned member (Rauffj) - Unhide
10 November, 2023 - 05:39 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)
Ty bro
This post is by a banned member (sturxoff) - Unhide
31 December, 2023 - 12:59 PM
Reply
|