Contents

CBSE Result Converter

GitHub Repo stars GitHub go.mod Go version GitHub Total Downloads App Size GitHub issues

Introduction

Every year CBSE releases report of all the students in a school. However, in their infinite wisdom, they are still stuck with the old Newspaper Gazette Style Report in a plain .txt file. Analysis in a plain .txt file is not feasible, hence every year IT dept. of the School spends countless manhours to convert that file to a .csv file.

This simple app converts that .txt file to .csv file in seconds.

/projects/result-converter/main-screen.webp
Main Screen

The .csv file converted through this allows easy analysis and comparision. The output file has these fields:

1
2
3
4
5
6
7
8
"ROLL", "GENDER", "NAME",
"SUBJECT CODE 1", "SUBJECT NAME", "MARKS OBTAINED", "GRADE",
"SUBJECT CODE 2", "SUBJECT NAME", "MARKS OBTAINED", "GRADE",
"SUBJECT CODE 3", "SUBJECT NAME", "MARKS OBTAINED", "GRADE",
"SUBJECT CODE 4", "SUBJECT NAME", "MARKS OBTAINED", "GRADE",
"SUBJECT CODE 5", "SUBJECT NAME", "MARKS OBTAINED", "GRADE",
"SUBJECT CODE 6", "SUBJECT NAME", "MARKS OBTAINED", "GRADE",
"TOTAL", "PERCENTAGE", "RESULT",

Analysis

The app provides basic analysis as well, but for detailed anaylsis, use the .csv file.

/projects/result-converter/analyse-tab.webp
Analysis Tab

Download

Binaries can be easily download from here Release.

Build

Build it from source by cloning this repo and run setup.sh. It will build gui.exe in the src/gui folder (this is a known issue #2395).