Skip to content

Commit

Permalink
Merge pull request #3 from isaacholtis/isaac
Browse files Browse the repository at this point in the history
Merged isaac branch with Main. This commit version adds updates the readme and adds basic functionality to the bot
  • Loading branch information
isaacholtis authored Feb 3, 2022
2 parents ce04041 + 61e3894 commit 9f02399
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# Simple-Bing-Bot

This is a simple bing rewards bot, that will currently completes bing searches to give you microsoft rewards points.
11 changes: 10 additions & 1 deletion bingbot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
import webbrowser
import random

webbrowser.open("microsoft.com")
searchNum = int(input("Please input the number of tabs you want to open.\nPlease note that the more tabs you open the more ram you will use, and we are not responsible for your computer crashing.\n-->"))

num = 0
webLink = []
for i in range(searchNum):
webLink.append(f"https://www.bing.com/search?q={(i + 1)}")
for i in range(searchNum):
webbrowser.open (webLink[i])
print(webLink)

0 comments on commit 9f02399

Please sign in to comment.