A Python automation tool designed to help Simplilearn users efficiently complete course viewing requirements.
Simplilearn AutoWatch is a lightweight Python script that automates the video watching process on Simplilearn's learning platform. The tool uses Selenium WebDriver to simulate user interactions, allowing for seamless progress through course content.
- Automatic login to Simplilearn
- Continuous video progress monitoring
- Maintains session activity
- Python 3.7+
- Google Chrome browser
- ChromeDriver
- Clone this repository:
git clone https://github.com/kayden-vs/simplilearn_autowatch.git
cd simplilearn_autowatch- Install required Python packages:
pip install -r requirements.txt-
Install Google Chrome (if not already installed):
- Ubuntu/Debian:
sudo apt install google-chrome-stable - Windows/macOS: Download from Google Chrome website
- Ubuntu/Debian:
-
Install ChromeDriver:
- Ubuntu/Debian:
wget https://chromedriver.storage.googleapis.com/$(curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE)/chromedriver_linux64.zip unzip chromedriver_linux64.zip sudo mv chromedriver /usr/local/bin/ - Windows: Download from ChromeDriver website and add to PATH
- macOS:
brew install --cask chromedriver
- Ubuntu/Debian:
- Edit
video-bot.pywith your Simplilearn credentials:
email = "your_email@example.com"
password = "your_password"-
Important: Before running the script, manually log in to Simplilearn and ensure the course you want to complete is at the top of your "My Learnings" section. The script will click the first "Continue Watching" button it finds.
-
Run the script:
python video-bot.py- The script will automatically:
- Log in to your Simplilearn account
- Click on the "Continue Watching" button for your course
- Monitor video progress until completion
This tool is designed for educational purposes and personal convenience. Users are responsible for ensuring they comply with Simplilearn's terms of service.
MIT