Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #66976 > unrolled thread

Python powerpoint automation using pywin32

Started byJaydeep Patil <patil.jay2009@gmail.com>
First post2014-02-24 03:35 -0800
Last post2014-02-25 03:33 -0800
Articles 5 — 3 participants

Back to article view | Back to comp.lang.python


Contents

  Python powerpoint automation using pywin32 Jaydeep Patil <patil.jay2009@gmail.com> - 2014-02-24 03:35 -0800
    Re: Python powerpoint automation using pywin32 sffjunkie@gmail.com - 2014-02-24 03:57 -0800
      Re: Python powerpoint automation using pywin32 Jaydeep Patil <patil.jay2009@gmail.com> - 2014-02-24 19:52 -0800
        Re: Python powerpoint automation using pywin32 Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-02-25 08:38 +0000
        Re: Python powerpoint automation using pywin32 sffjunkie@gmail.com - 2014-02-25 03:33 -0800

#66976 — Python powerpoint automation using pywin32

FromJaydeep Patil <patil.jay2009@gmail.com>
Date2014-02-24 03:35 -0800
SubjectPython powerpoint automation using pywin32
Message-ID<18ed1faa-fe64-4d40-8ade-2f1cac89ae51@googlegroups.com>
I need to create a new powerpoint presentation. I need to add images, paste some graphs, add texts, tables into powerpoint.
Is any link or document available which help me to do this work more effectivey & faster.



Regards
Jay

[toc] | [next] | [standalone]


#66978

Fromsffjunkie@gmail.com
Date2014-02-24 03:57 -0800
Message-ID<282c7cfe-b6c4-47a9-a9c6-6a4912a81bd0@googlegroups.com>
In reply to#66976
On Monday, 24 February 2014 11:35:08 UTC, Jaydeep Patil  wrote:
> I need to create a new powerpoint presentation. I need to add images, paste some graphs, add texts, tables into powerpoint.
> 
> Is any link or document available which help me to do this work more effectivey & faster.

Always remember, PyPi is your friend.

I've not used it but the following is available which works with Microsoft's XML based document types. It is not automation per se (and doesn't use pywin32) but a library for pptx document manipulation.

https://pypi.python.org/pypi/python-pptx/

Docs are here

https://python-pptx.readthedocs.org/en/latest/

--Simon

[toc] | [prev] | [next] | [standalone]


#67019

FromJaydeep Patil <patil.jay2009@gmail.com>
Date2014-02-24 19:52 -0800
Message-ID<e152424f-c6ee-4706-bd63-35790f427357@googlegroups.com>
In reply to#66978
On Monday, 24 February 2014 17:27:23 UTC+5:30, sffj...@gmail.com  wrote:
> On Monday, 24 February 2014 11:35:08 UTC, Jaydeep Patil  wrote:
> 
> > I need to create a new powerpoint presentation. I need to add images, paste some graphs, add texts, tables into powerpoint.
> 
> > 
> 
> > Is any link or document available which help me to do this work more effectivey & faster.
> 
> 
> 
> Always remember, PyPi is your friend.
> 
> 
> 
> I've not used it but the following is available which works with Microsoft's XML based document types. It is not automation per se (and doesn't use pywin32) but a library for pptx document manipulation.
> 
> 
> 
> https://pypi.python.org/pypi/python-pptx/
> 
> 
> 
> Docs are here
> 
> 
> 
> https://python-pptx.readthedocs.org/en/latest/
> 
> 
> 
> --Simon


Hi Simon,

I need to use COM interface for PowerPoint generation.

So let me know any related docs?


Regards
Jaydeep

[toc] | [prev] | [next] | [standalone]


#67035

FromMark Lawrence <breamoreboy@yahoo.co.uk>
Date2014-02-25 08:38 +0000
Message-ID<mailman.7348.1393317608.18130.python-list@python.org>
In reply to#67019
On 25/02/2014 03:52, Jaydeep Patil wrote:
> On Monday, 24 February 2014 17:27:23 UTC+5:30, sffj...@gmail.com  wrote:
>> On Monday, 24 February 2014 11:35:08 UTC, Jaydeep Patil  wrote:
>>
>>> I need to create a new powerpoint presentation. I need to add images, paste some graphs, add texts, tables into powerpoint.
>>
>>>
>>
>>> Is any link or document available which help me to do this work more effectivey & faster.
>>
>>
>>
>> Always remember, PyPi is your friend.
>>
>>
>>
>> I've not used it but the following is available which works with Microsoft's XML based document types. It is not automation per se (and doesn't use pywin32) but a library for pptx document manipulation.
>>
>>
>>
>> https://pypi.python.org/pypi/python-pptx/
>>
>>
>>
>> Docs are here
>>
>>
>>
>> https://python-pptx.readthedocs.org/en/latest/
>>
>>
>>
>> --Simon
>
>
> Hi Simon,
>
> I need to use COM interface for PowerPoint generation.
>
> So let me know any related docs?
>
>
> Regards
> Jaydeep
>

I don't need to read double spaced stuff so please read and action this 
https://wiki.python.org/moin/GoogleGroupsPython to prevent us seeing it, 
thanks.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com

[toc] | [prev] | [next] | [standalone]


#67039

Fromsffjunkie@gmail.com
Date2014-02-25 03:33 -0800
Message-ID<7db15795-2bbe-4ff1-b4be-9a918d08c7de@googlegroups.com>
In reply to#67019
On Tuesday, 25 February 2014 03:52:29 UTC, Jaydeep Patil  wrote:
> I need to use COM interface for PowerPoint generation.

The following will get you started

http://nbviewer.ipython.org/github/sanand0/ipython-notebooks/blob/master/Office.ipynb

Then you'll need to interpret the Microsoft MSDN docs for anything else

http://msdn.microsoft.com/en-us/library/microsoft.office.interop.powerpoint.aspx

--Simon Kennedy

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web