views:

252

answers:

1

Hi,

Is there any module for creating Excel charts with embedded charts in Python? The modules mentioned in this question don't seem to have that capability.

I prefer a generic module that would work under Ubuntu, not a Windows-dependent one.

EDIT: I will also appreciate ways to embed images within the created charts, as I can create the charts in an external program and place them within the right sheet.

Thanks,

Adam

+2  A: 

On Windows, you'd need to use pywin32 and COM. On a *x box, you may find that a combination of Iron Python, Mono, and an Excel-manipulation library written for .NET may do the job. In either case, good luck.

John Machin
+1 Thanks. I guess I'll create my charts in an external program and embed them as an image.
Adam Matan