Parse Maharashtra Engineering CAP 2024 cutoff data from PDF and export to Excel.
pip install -r requirements.txtpython pdf_parser.pyThis will:
- Parse
2024ENGG_CAP1_CutOff-1-6.pdf - Extract all cutoff data from all 6 rounds
- Create
college_cutoff_data.xlsxwith two sheets:- Cutoff Data: All parsed records with columns: Round, College Code, Institute Name, City, Branch Code, Branch Name, Seat Number, Category, Cut Off Percentage
- Summary: Statistics including totals, cutoff ranges by round, and top colleges
| Round | College Code | Institute Name | City | Branch Code | Branch Name | Seat Number | Category | Cut Off Percentage |
|---|
- Total records, rounds, colleges, branches
- Cutoff statistics by round (min, max, average)
- Top 10 colleges by average cutoff
- Python 3.8+
- pdfplumber >= 0.11.0
- pandas >= 2.0.0
- openpyxl >= 3.1.0