Convert this into crisp notes
python3 << 'EOF' import pdfplumber pdf_path = "/home/daytona/workspace/attachments/911373c3-adf1-4f65-872b-d0854f8155b7/dokumen.pub_dc-duttas-textbook-of-obstetrics-including-perinatology-and-contraception-9th-reprint-edition-9786222687-9789786222684-9352702425-1 2.pdf" with pdfplumber.open(pdf_path) as pdf: total = len(pdf.pages) print(f"Total pages: {total}") # Search for 'Normal Labour' in first 50 pages to find chapter for i in range(min(60, total)): text = pdf.pages[i].extract_text() or "" if "normal labour" in text.lower() or "normal labor" in text.lower(): print(f"Page {i+1}: Found 'Normal Labour'") if len(text) > 200: print(text[:300]) print("---") EOF
python3 << 'EOF' import pdfplumber pdf_path = "/home/daytona/workspace/attachments/911373c3-adf1-4f65-872b-d0854f8155b7/dokumen.pub_dc-duttas-textbook-of-obstetrics-including-perinatology-and-contraception-9th-reprint-edition-9786222687-9789786222684-9352702425-1 2.pdf" with pdfplumber.open(pdf_path) as pdf: for i in range(len(pdf.pages)): text = pdf.pages[i].extract_text() or "" # Print first 150 chars of each page to find chapter headings first_line = text.strip()[:200].replace('\n', ' | ') print(f"P{i+1}: {first_line}") EOF
| P | Component |
|---|---|
| Power | Uterine contractions + maternal bearing down |
| Passage | Bony pelvis + soft tissues |
| Passenger | Fetus (size, lie, presentation, position, attitude) |
| Placenta | Position and cord length |
| Psyche | Maternal psychological state |
| Phase | Cervix | Rate of dilatation |
|---|---|---|
| Latent phase | 0-3 cm | Slow (~0.35 cm/hr) |
| Active phase | 3-10 cm | Fast (≥1 cm/hr primigravida; ≥1.5 cm/hr multigravida) |
| # | Movement | Details |
|---|---|---|
| 1 | Engagement | Widest diameter (BPD) passes through pelvic inlet; in LOA, sagittal suture in right oblique diameter |
| 2 | Descent | Continuous throughout labour |
| 3 | Flexion | Chin onto chest; reduces presenting diameter from occipitofrontal (11 cm) to suboccipitobregmatic (9.5 cm) |
| 4 | Internal rotation | Occiput rotates anteriorly to lie under symphysis pubis; sagittal suture in AP diameter at outlet |
| 5 | Extension | Head extends around symphysis pubis; occiput, bregma, face, chin delivered in sequence |
| 6 | Restitution | Head turns back 45° to align with fetal shoulders (LOA → occiput to left) |
| 7 | External rotation | Further 45° turn as shoulders rotate internally; shoulders now in AP diameter |
Misoprostol 600 mcg oral/sublingual - used where oxytocin unavailable
| Method | Details |
|---|---|
| Inhalational | Entonox (50% O₂ + 50% N₂O) - self-administered |
| Systemic opioids | Pethidine 50-100 mg IM / Morphine - causes neonatal respiratory depression |
| Epidural | Gold standard; bupivacaine ± fentanyl; avoid bearing down reflex impairment |
| Pudendal block | For second stage/instrumental delivery |
| Paracervical block | Rarely used; risk of fetal bradycardia |
| Parameter | Value |
|---|---|
| Period of viability | 28 weeks / 1000 g |
| Full cervical dilatation | 10 cm |
| Normal FHR | 110-160 bpm |
| 1st stage duration (primi) | ~12 hours |
| 1st stage duration (multi) | ~6 hours |
| 2nd stage duration (primi) | Up to 2 hours |
| 3rd stage duration | Up to 30 minutes |
| Engagement (primi) | 36-38 weeks |
| Oxytocin (AMTSL) | 10 IU IM |
| Suboccipitobregmatic diameter | 9.5 cm |
| Occipitofrontal diameter | 11 cm |
| Biparietal diameter | 9.5 cm |
Generate a visual flowchart of labour stages and mechanisms
A detailed medical educational flowchart titled "Stages and Mechanism of Normal Labour" for obstetrics students. The flowchart is clean, professional, on a white background with color-coded sections. Top section: "ONSET OF LABOUR" box with bullet points: Regular painful contractions, Cervical effacement & dilatation, Bloody show, ROM Then flows down into 3 color-coded stage columns arranged vertically as a timeline: STAGE 1 (blue): "Cervical Dilatation" - Onset of labour → Full dilatation (10 cm). Two sub-boxes: Latent Phase (0–3 cm, slow) and Active Phase (3–10 cm, ≥1 cm/hr). Duration: Primi 12 hrs / Multi 6 hrs. Contractions every 3–5 min. STAGE 2 (green): "Expulsion of Fetus" - Full dilatation → Delivery of baby. Duration: Primi up to 2 hrs / Multi up to 1 hr. Two phases inside: Passive phase (descent) and Active phase (bearing down). STAGE 3 (orange): "Delivery of Placenta" - Delivery of baby → Delivery of placenta. Duration: up to 30 min. Signs of separation listed: Fundus globular (Calkin's sign), Cord lengthening, Gush of blood. Schultze (80%) vs Duncan (20%) mechanisms. Below that, a separate horizontal flowchart section titled "7 CARDINAL MOVEMENTS OF LABOUR (LOA)" with 7 connected boxes in sequence with arrows: 1. Engagement → 2. Descent → 3. Flexion → 4. Internal Rotation → 5. Extension → 6. Restitution → 7. External Rotation Each movement box has a small one-line descriptor below it: 1. BPD through inlet 2. Continuous 3. SOB diameter 9.5 cm 4. Occiput under symphysis 5. Head born 6. 45° back 7. Shoulders in AP Bottom box: "ACTIVE MANAGEMENT OF 3RD STAGE (AMTSL)" - Oxytocin 10 IU IM + Controlled Cord Traction + Uterine massage Color scheme: Blue for stage 1, green for stage 2, orange for stage 3, purple for mechanisms, clean sans-serif font, medical diagram style
