Skip to content

Latest commit

 

History

History
88 lines (62 loc) · 2.67 KB

File metadata and controls

88 lines (62 loc) · 2.67 KB

Simplilearn AutoWatch

License: MIT

A Python automation tool designed to help Simplilearn users efficiently complete course viewing requirements.

Overview

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.

Simplilearn Login Page

Screenshot: Simplilearn Login Page

Features

  • Automatic login to Simplilearn
  • Continuous video progress monitoring
  • Maintains session activity

Prerequisites

  • Python 3.7+
  • Google Chrome browser
  • ChromeDriver

Installation

  1. Clone this repository:
git clone https://github.com/kayden-vs/simplilearn_autowatch.git
cd simplilearn_autowatch
  1. Install required Python packages:
pip install -r requirements.txt
  1. Install Google Chrome (if not already installed):

    • Ubuntu/Debian: sudo apt install google-chrome-stable
    • Windows/macOS: Download from Google Chrome website
  2. 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

Usage

  1. Edit video-bot.py with your Simplilearn credentials:
email = "your_email@example.com"
password = "your_password"
  1. 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.

  2. Run the script:

python video-bot.py
  1. The script will automatically:
    • Log in to your Simplilearn account
    • Click on the "Continue Watching" button for your course
    • Monitor video progress until completion

My Learning Page - Script in Action

Screenshot: My Learning page showing the script in action

Disclaimer

This tool is designed for educational purposes and personal convenience. Users are responsible for ensuring they comply with Simplilearn's terms of service.

License

MIT