I am looking for a python based microsoft office parser - specifically powerpoint.

I want to be able to parse PPT in python and extract things like text and images from the powerpoint file.

Is there a library available?

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

I don't think there is such a library.

What you can do is use pywin32 package to access PowerPoint's COM.

Here is a very nice introduction to using the win32com module to automate tasks in PowerPoint someone has written: http://www.s-anand.net/blog/automating-powerpoint-with-python/

link|improve this answer
Thanks! I am on it now. The link was very useful in understanding how to go about the entire process. – ramaz Jul 5 '10 at 18:31
feedback

You might find such a beast, but I'd bet against it; you're looking for two rare properties together.

You might consider instead using the Open Office SDK, which already has vast amounts of machinery to read power point files, and abuse it for your purposes. This is all Java, not Python, but my guess is the learning curve to learn Java is much smaller than the learning curve to figure out how to read PowerPoint files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.