from pptx import Presentation
from pptx.util import Inches, Pt
from pptx.dml.color import RGBColor
# Create a presentation object
prs = Presentation()
# Title Slide
slide_layout = prs.slide_layouts[0] # Title slide layout
slide = prs.slides.add_slide(slide_layout)
title = slide.shapes.title
subtitle = slide.placeholders[1]
title.text = "Gateway to the World:\nCareer Guidance for International Education"
subtitle.text = "Organised by PSG College of Arts & Science\nDepartment of Commerce (BPS) Integrated with TCS\n18/08/2025 | Kaveri Hall"
# About the Speaker
slide_layout = prs.slide_layouts[1] # Title + Content
slide = prs.slides.add_slide(slide_layout)
title, content = slide.shapes.title, slide.placeholders[1]
title.text = "About the Speaker"
content.text = "Ms. Sasikala Mani\nFounder, Western Education Overseas, Coimbatore\n\nExpert in guiding students towards international education opportunities."
# Seminar Overview
slide = prs.slides.add_slide(prs.slide_layouts[1])
title, content = slide.shapes.title, slide.placeholders[1]
title.text = "Seminar Overview"
content.text = "The seminar focuses on providing career guidance for students aspiring to pursue higher education abroad. It explores opportunities, challenges, and the right approach to achieve academic and professional success internationally."
# Objectives
slide = prs.slides.add_slide(prs.slide_layouts[1])
title, content = slide.shapes.title, slide.placeholders[1]
title.text = "Objectives"
content.text = (
"• To understand the importance of global education\\n"
"• To explore career opportunities abroad\\n"
"• To provide guidance on admission and visa processes\\n"
"• To prepare students for international challenges\\n"
)
# Topics Covered
slide = prs.slides.add_slide(prs.slide_layouts[1])
title, content = slide.shapes.title, slide.placeholders[1]
title.text = "Topics Covered"
content.text = (
"• Choosing the right country and course\\n"
"• Application and admission process\\n"
"• Visa guidance and requirements\\n"
"• Scholarships and financial planning\\n"
"• Adapting to cultural and academic environments\\n"
)
# Takeaways for Students
slide = prs.slides.add_slide(prs.slide_layouts[1])
title, content = slide.shapes.title, slide.placeholders[1]
title.text = "Key Takeaways"
content.text = (
"• Clarity on study abroad opportunities\\n"
"• Understanding financial and academic planning\\n"
"• Guidance from an expert in the field\\n"
"• Motivation to pursue global education\\n"
)
# Event Details
slide = prs.slides.add_slide(prs.slide_layouts[1])
title, content = slide.shapes.title, slide.placeholders[1]
title.text = "Event Details"
content.text = (
"Date: 18/08/2025\\n"
"Time: 11:30 AM to 1:00 PM\\n"
"Venue: Kaveri Hall\\n\\n"
"Faculty Coordinators: Dr. S.S. Ramya, Dr. R. Vishnupriya\\n"
"Head of the Department: Dr. S.M. Yamuna"
)
# Thank You Slide
slide = prs.slides.add_slide(prs.slide_layouts[1])
title, content = slide.shapes.title, slide.placeholders[1]
title.text = "Thank You"
content.text = "We look forward to your participation!\nPSG College of Arts & Science\nDepartment of Commerce (BPS)"
# Save the presentation
file_path = "/mnt/data/Seminar_PSG_Career_Guidance.pptx"
prs.save(file_path)
file_path