File size: 346 Bytes
a9dc537 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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)
|