Merge these two powerpoint presentation & make one out of it on topic mesenteric ischemia with little attractive background & images taken from standard textbooks & flowcharts etc. that looks contrictive & also easy to read & present

Reading File
Reading File
Running Command

cd /home/daytona/workspace && python -m markitdown "/home/daytona/workspace/attachments/0154209c-561e-4d54-a477-e61b421ed9c1/mesenteric ischemia.pptx" 2>/dev/null

Running Command

cd /home/daytona/workspace && python -m markitdown "/home/daytona/workspace/attachments/0154209c-561e-4d54-a477-e61b421ed9c1/Mesenteric_Ischemia_Surgery_v2.pptx" 2>/dev/null

Finding Sources
Running Command

python3 -c " from pptx import Presentation import json def extract_pptx(path): prs = Presentation(path) slides = [] for i, slide in enumerate(prs.slides): texts = [] for shape in slide.shapes: if shape.has_text_frame: for para in shape.text_frame.paragraphs: t = para.text.strip() if t: texts.append(t) slides.append({'slide': i+1, 'texts': texts}) return slides p1 = extract_pptx('/home/daytona/workspace/attachments/0154209c-561e-4d54-a477-e61b421ed9c1/mesenteric ischemia.pptx') p2 = extract_pptx('/home/daytona/workspace/attachments/0154209c-561e-4d54-a477-e61b421ed9c1/Mesenteric_Ischemia_Surgery_v2.pptx') print('=== PPTX 1 ===') for s in p1: print(f'Slide {s[\"slide\"]}: {s[\"texts\"]}') print() print('=== PPTX 2 ===') for s in p2: print(f'Slide {s[\"slide\"]}: {s[\"texts\"]}') "

Reading File
Reading File
Running Command

pip install python-pptx --quiet --user 2>&1 | tail -5

Reading File
Running Command

python3 -c " from pptx import Presentation import json def extract_pptx(path): prs = Presentation(path) slides = [] for i, slide in enumerate(prs.slides): texts = [] images = [] for shape in slide.shapes: if shape.has_text_frame: for para in shape.text_frame.paragraphs: t = para.text.strip() if t: texts.append(t) if shape.shape_type == 13: # MSO_SHAPE_TYPE.PICTURE images.append(f'image_{i+1}_{shape.name}') slides.append({'slide': i+1, 'texts': texts, 'images': images}) return slides p1 = extract_pptx('/home/daytona/workspace/attachments/0154209c-561e-4d54-a477-e61b421ed9c1/mesenteric ischemia.pptx') p2 = extract_pptx('/home/daytona/workspace/attachments/0154209c-561e-4d54-a477-e61b421ed9c1/Mesenteric_Ischemia_Surgery_v2.pptx') print('=== PPTX 1 ===') for s in p1: print(f'Slide {s[\"slide\"]}: TEXTS={s[\"texts\"]} IMAGES={s[\"images\"]}') print() print('=== PPTX 2 ===') for s in p2: print(f'Slide {s[\"slide\"]}: TEXTS={s[\"texts\"]} IMAGES={s[\"images\"]}') "

Finding Sources
Finding Sources
Finding Sources
Finding Sources
Finding Sources
Finding Sources
Running Command

mkdir -p /home/daytona/workspace/mesenteric-ischemia-pptx && ls /home/daytona/workspace/mesenteric-ischemia-pptx/

This is a shared conversation. Sign in to Orris to start your own chat.