| from pptx import Presentation | |
| pptx_path = "/home/mhamdan/SPARKNET/presentation/SPARKNET_Academic_Presentation_IMPROVED.pptx" | |
| prs = Presentation(pptx_path) | |
| slide3 = prs.slides[2] # 0-indexed | |
| if slide3.has_notes_slide: | |
| notes = slide3.notes_slide.notes_text_frame.text | |
| print("SLIDE 3 SPEAKER NOTES:") | |
| print("=" * 80) | |
| print(notes) | |