arunsatyarth / educative.io_scraper

Educative.io Course Downloader developed using Python and Selenium. Refer Readme.md for setup instructions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Educative.io Scraper / Educative.io Downloader

A Python script that downloads Educative.io courses for offline use using selenium.

To view the downloaded courses, use the Educative-Viewer repository.

I welcome anyone to contribute to this project. A Star would help me a lot.\

How to use the Scraper?

  1. Create a urls text file and copy the links of the first topic of courses and paste it in text file as shown below.

image

eg: url -> https://www.educative.io/courses/grokking-computer-networking/JQBKG47LlGg
  2. Run both the executables chromedriver and educative_scraper by downloading them from latest release.
  3. Select a config if you don't wish to use the default config "0" by pressing 2. 
  (Make sure to generate the config if it is selected for the first time)
  4. Generate the config (if not present) and provide the urls text file path, save location and headless mode by pressing 1.
  5. Login your educative account by pressing 3.
  6. Start Scraping by pressing 4.
  7. To return to Main Menu/ Exit Scraper press Ctrl+C / CMD+C.
Note 1: Uncomment line 489 to download the courses having download_button container but download button not working.[This Feature is not added in releases]
Note 2: If the scraper fails or the User Exits in between for any specific reason, a log.txt file will be created in the save directory, containing the last known url while scraping along with the index, copy the {index url} line and replace it in the original urls text file (make sure to delete the urls that are already scraped while replacing) to resume scraping the course where it was stopped previously by restarting the scraper.
Note 3: If for any reason your system shuts down for power failure or the scraper crashes then you have to manually search the url and index and provide the {index url} in urls text file since the scraper cannot create log.txt for sudden power cut/ crash.

To Run the project manually:

Step 1: Install the virtualenv package for python3 and create a virtual environment named "env".

  pip3 install virtualenv 
  virtualenv env 

Step 2: Activate the environment.

> (For Windows)

  env\Scripts\activate

> (For MacOS/Linux)

  source env/bin/activate

Step 3: Install the required modules:

  pip3 install -r requirements.txt

Step 4: Download and paste the respective Chrome-bin for your OS from the latest releases section.

Step 5: Open up two terminals and run the following commands.

  python3 chromedriver.py
  python3 educative_scraper.py

Step 6: Refer, "How to use the Scraper?" explained above.

To Build the chromdriver and educative-scraper using pyinstaller:

Activate the Virtual Environment and Install the required modules for the project (Refer Step 1, 2, 3 above).

Install the pyinstaller package and run the following commands.

  pip3 install pyinstaller

> (For Windows)

  pyinstaller --clean --add-data Chrome-bin;Chrome-bin --onefile -i"icon.ico" educative_scraper.py
  pyinstaller --clean --add-data "Chrome-driver;Chrome-driver" --onefile -i"icon.ico" chromedriver.py

> (For MacOS/Linux)

  pyinstaller --clean --add-data Chrome-bin:Chrome-bin --onefile -i"icon.ico" educative_scraper.py
  pyinstaller --clean --add-data "Chrome-driver:Chrome-driver" --onefile -i"icon.ico" chromedriver.py

Pyinstaller command for Linux OS may or may not work due to a pyinstaller bug, currently checking for a fix.
A Whitepaper will be released containing the explanation of each functions and the cases handled by the scraper.

About

Educative.io Course Downloader developed using Python and Selenium. Refer Readme.md for setup instructions.

License:MIT License


Languages

Language:Python 100.0%