A simple automation script using Selenium to perform random searches on Bing and accumulate points.
- Python 3.6 or higher
- pip (Python package manager)
- A GitHub account
Open your terminal and run:
git clone git@github.com:rickscode/BingPointsBot.git
cd BingPointsBot
It's recommended to use a virtual environment to manage your dependencies.
python3 -m venv venv
source venv/bin/activate # On Windows use `venv\Scripts\activate`
Install the required Python packages using pip:
pip install -r requirements.txt
Create a file named .env
in the project directory to store your environment variables:
BING_EMAIL=your_email@example.com
BING_PASSWORD=your_password
BING_LOGIN_URL=your unique bing search login url
Replace your_email@example.com
and your_password
with your actual Bing account credentials.
You can now run the script:
python bingpoints.py
The program will log in to your Bing account and perform random searches, printing messages to indicate its progress.
- Ensure that you have a stable internet connection.
- If you encounter issues with the script, make sure your credentials are correct and that there are no security prompts preventing the login.
This project is licensed open source.