CBSE-Results-Scraper

CBSE-Results-Scraper is a command-line Python application that scrapes and downloads student reports of CBSE (Central Board of Secondary Education) Class XII Results 2019 from http://cbseresults.nic.in.


Keywords
cbse, results, scraper, download
License
Unlicense
Install
pip install CBSE-Results-Scraper==1.2.9

Documentation

CBSE-Results-Scraper

Purpose

CBSE-Results-Scraper is a command-line Python application that scrapes and downloads student reports of CBSE (Central Board of Secondary Education) Class XII Results 2019 from http://cbseresults.nic.in.

Disclaimer

This project is solely intended for educational purposes! Please do not use it for any other reason than to learn about web scraping. There might be serious consequences to using this script for breaching someone's privacy and/or publishing results that are not yours to share!

Dependencies & Installation

This project uses Selenium (3.141.0), in particular its Chrome Webdriver. The script was built to work with Python 3.5+. While the script may work with Python 2.7, support is not guaranteed in present or future versions.

First of all, install pip (pip3) if you haven't already! You can learn more here: https://stackoverflow.com/a/6587528

To install Selenium via pip3, run the following commands on your terminal:

$ pip3 install selenium

To upgrade Selenium to the latest version:

$ pip3 install --upgrade selenium

You may have to use superuser mode to install Selenium. For example:

$ sudo -H pip3 install selenium

Usage

After setting up the dependencies, run the mainScript.py.

Step 1: Choose which result you want to check.

Step 2: Enter the targeted school number and centre number.

Step 3: Enter the student-specific details (student's initial and mother's initial), whichever ones you know. If you don't know any one or both, they will be bruteforced with a loop on an alphabet dictionary.

Step 4: If known, enter the student's roll number. Else, enter a range to test against with a loop.

NOTE: Not knowing the above three credentials will usually create time-consuming nested loops which might even provide unexpected results of students other than the targeted one.

License

This is free software released into the public domain. Anyone is free to copy, modify, use, compile, or distribute this software, either in source code form or as a compiled binary, for any non-commercial purpose, by any means that is not harmful to the audience it is targeted upon.