Created
May 29, 2022 08:46
-
-
Save ntfargo/c894c9256623a51f01c5fb3c9e321203 to your computer and use it in GitHub Desktop.
farm presearch tokens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import os | |
from subprocess import Popen | |
from time import sleep | |
import webbrowser | |
secondsopen = 10 | |
chrome_path = 'C:/Program Files/Google/Chrome/Application/chrome.exe %s' # windows x64-based location | |
websites = [ | |
"https://www.presearch.org/search?q=Youtube", | |
"https://www.presearch.org/search?q=Twitter", | |
"https://www.presearch.org/search?q=Presearch", | |
"https://www.presearch.org/search?q=Closeanything", | |
"https://www.presearch.org/search?q=OpenChrome", | |
"https://www.presearch.org/search?q=Randomwebsites", | |
"https://www.presearch.org/search?q=Onestock", | |
"https://www.presearch.org/search?q=listofdate", | |
"https://www.presearch.org/search?q=Deafult", | |
"https://www.presearch.org/search?q=Python", | |
"https://www.presearch.org/search?q=Java", | |
"https://www.presearch.org/search?q=C++", | |
"https://www.presearch.org/search?q=C", | |
"https://www.presearch.org/search?q=JavaScript", | |
"https://www.presearch.org/search?q=Games", | |
"https://www.presearch.org/search?q=Music", | |
"https://www.presearch.org/search?q=Movies", | |
"https://www.presearch.org/search?q=Books", | |
"https://www.presearch.org/search?q=News", | |
"https://www.presearch.org/search?q=Sports", | |
"https://www.presearch.org/search?q=Weather", | |
"https://www.presearch.org/search?q=Maps", | |
"https://www.presearch.org/search?q=Shopping", | |
"https://www.presearch.org/search?q=Finance", | |
"https://www.presearch.org/search?q=Food", | |
"https://www.presearch.org/search?q=Health", | |
"https://www.presearch.org/search?q=Travel", | |
"https://www.presearch.org/search?q=Education", | |
"https://www.presearch.org/search?q=Cryptocurrency", | |
"https://www.presearch.org/search?q=Bitcoin", | |
"https://www.presearch.org/search?q=Ethereum", | |
"https://www.presearch.org/search?q=Litecoin", | |
"https://www.presearch.org/search?q=Ripple", | |
"https://www.presearch.org/search?q=BitcoinCash", | |
"https://www.presearch.org/search?q=Dash", | |
"https://www.presearch.org/search?q=Zcash", | |
"https://www.presearch.org/search?q=Monero", | |
"https://www.presearch.org/search?q=NEM", | |
"https://www.presearch.org/search?q=EOS", | |
"https://www.presearch.org/search?q=Stellar", | |
"https://www.presearch.org/search?q=IOTA", | |
"https://www.presearch.org/search?q=NEO", | |
"https://www.presearch.org/search?q=Cardano", | |
"https://www.presearch.org/search?q=EthereumClassic", | |
"https://www.presearch.org/search?q=Lisk", | |
"https://www.presearch.org/search?q=Tron", | |
"https://www.presearch.org/search?q=Monero" | |
] | |
def searchOnestock(): | |
for i in range(30): # 30 Max Paid Searches Per Day | |
sleep(secondsopen) | |
webbrowser.get(chrome_path).open(random.choice(websites)) | |
print(random.choice(websites)) | |
closeOpenedTabs() | |
def closeOpenedTabs(): | |
Popen(['taskkill', '/f', '/im', 'chrome.exe'], shell=True) | |
# This is close all tabs on google chrome! | |
searchOnestock() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment