Summarise these ppts
cd /tmp/workspace/attachments/e9356bff-b2a9-4ffc-a4a4-0d6de00629cf/ && python3 -c " from pptx import Presentation import glob for f in ['L8.pptx', 'L9 - Copy.pptx', 'L10.pptx']: print('='*80) print('FILE:', f) print('='*80) prs = Presentation(f) for i, slide in enumerate(prs.slides, 1): print(f'--- Slide {i} ---') for shape in slide.shapes: if shape.has_text_frame and shape.text_frame.text.strip(): print(shape.text_frame.text) if shape.has_table: for row in shape.table.rows: print(' | '.join(cell.text for cell in row.cells)) if slide.has_notes_slide and slide.notes_slide.notes_text_frame.text.strip(): print('[NOTES]', slide.notes_slide.notes_text_frame.text) "
EHRs