From this pdf, Group questions according to topics
cd /home/daytona/workspace && python3 -c " import pdfplumber pdf_path = '/home/daytona/workspace/attachments/3e0e9d35-2e29-4d7c-8788-670c49de3590/CamScanner 07-09-2026 09.05.pdf' with pdfplumber.open(pdf_path) as pdf: print(f'Total pages: {len(pdf.pages)}') for i, page in enumerate(pdf.pages): text = page.extract_text() print(f'--- PAGE {i+1} ---') print(text) print() "
python3 -c " import pytesseract from pdf2image import convert_from_path pdf_path = '/home/daytona/workspace/attachments/3e0e9d35-2e29-4d7c-8788-670c49de3590/CamScanner 07-09-2026 09.05.pdf' pages = convert_from_path(pdf_path, dpi=200) print(f'Converted {len(pages)} pages') for i, page in enumerate(pages): text = pytesseract.image_to_string(page) print(f'--- PAGE {i+1} ---') print(text) print() " 2>/dev/null
| # | Topic | No. of Questions (approx.) |
|---|---|---|
| 1 | Normal Labour | ~11 |
| 2 | PPH / 3rd Stage | ~7 |
| 3 | Episiotomy | ~4 |
| 4 | Obstructed Labour / VVF | ~4 |
| 5 | Pre-eclampsia & Eclampsia | ~16 |
| 6 | APH (Placenta Previa + Abruption) | ~10 |
| 7 | PROM | ~4 |
| 8 | Anaemia in Pregnancy | ~3 |
| 9 | GDM | ~4 |
| 10 | Induction of Labour | ~7 |
| 11 | ANC & Antenatal Assessment | ~8 |
| 12 | Caesarean Section | ~3 |
| 13 | Rupture Uterus | ~2 |
| 14 | Multiple Pregnancy & Polyhydramnios | ~6 |
| 15 | Post-maturity | ~2 |
| 16 | Puerperium & Complications | ~5 |
| 17 | Puerperal Sepsis | ~2 |
| 18 | Forceps Delivery | ~2 |
| 19 | Retained Placenta | ~1 |
| 20 | IUFD | ~1 |