A CLI tool to convert the Class 10th and 12th Result Text File to Excel with proper formatting and analyze the result and display some statistics. Schools receive the results of students in a .txt file from CBSE. This tool converts the .txt file to .xlsx and then displays some statistics of the student results.
- ⚡ Simple and easy to use. Single Click
- ️✅ Converts the txt file into a properly formatted Excel file.
- 🔢 Different Spreadsheet page for each Subject
- 📺 Displays the statistics such as
- 🎓 Top 5 Male and Female Students
- 💯 Children with full marks in individual subjects
- 📔 Number of Distinctions in all 5 subjects
- 📑 Number of Distinctions
- 12th : Click Here
- Google Colab (Easiest)
- Locally using python
- Go to the link (https://colab.research.google.com/drive/1ardBfRG_S40qejG5VnCVWIJYEGpSHluI?usp=sharing)
- Run each cell one by one
- Rest of the instructions are given in the colab file
- Install Python (if not already)
- While Installing make sure to check the add to system PATH option
- Download the code by clicking on the Green Code button then Download as ZIP
- Extract the ZIP file and paste your result text file in the extracted folder
- Open the terminal in the extracted folder and run
pip install -r requirements.txt
- Run
main.py
- Enter the file name
- Enter the output file name. Make sure to enter .xlsx in after the file name
- Enter the mode i.e. the class. It can accept only two values i.e.
12th
and10th
- Exported File will automatically Launch.
- Run
main.py -i <input_file_name> -o <output_file_name> -c <class>
<input_file_name>
is the name of the input file<output_file_name>
is the name of the output file<class>
is the class of the result. It can accept only two values i.e.12th
and10th
- Excel file will be saved as
<output_file_name>.xlsx
in the same folder as the input file