Skip to content

Commit 63dd2d2

Browse files
authored
Add files via upload
0 parents  commit 63dd2d2

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

BingSearcher.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#Welcome to the Main script of my auto Bing Searcher
2+
3+
import time
4+
import pyautogui
5+
import random
6+
7+
8+
9+
10+
def test():
11+
pyautogui.write('Hello World!')
12+
pyautogui.press('enter')
13+
14+
time.sleep(5)
15+
#print(v)
16+
#print(pyautogui.position())
17+
18+
while True:
19+
v = random.randint(1, 100)
20+
pyautogui.click(x=315, y=177)
21+
pyautogui.write(str(v))
22+
pyautogui.press('enter')
23+
time.sleep(5)
24+
25+
26+

readme.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Ever heard of Microsoft Rewawrds?
2+
Well they have a feature where you can get fifty (50) points per day by just searching on Bing!
3+
I don't like using bing as many people do, so I coded this thing to automaticly spam search bing and get you your fifty points easy.
4+
5+
Edit the "wait" variable to change how long there is inbetween searches.

0 commit comments

Comments
 (0)