why would 'import win32com' fail?

2008-10-23 Thread bill
All, I am trying to access Excel from Python. Many of the examples started with: import win32com blah, blah I try that from my Python shell and it fails. What am I missing here? TIA, Bill -- http://mail.python.org/mailman/listinfo/python-list

Re: why would 'import win32com' fail?

2008-10-23 Thread Chris Rebert
On Thu, Oct 23, 2008 at 12:21 PM, bill [EMAIL PROTECTED] wrote: All, I am trying to access Excel from Python. Many of the examples started with: import win32com blah, blah I try that from my Python shell and it fails. What am I missing here? It's not a standard

Re: why would 'import win32com' fail?

2008-10-23 Thread Marc 'BlackJack' Rintsch
On Thu, 23 Oct 2008 12:21:29 -0700, bill wrote: I am trying to access Excel from Python. Many of the examples started with: import win32com blah, blah I try that from my Python shell and it fails. What am I missing here? The `win32com` module? It is not part of

Re: why would 'import win32com' fail?

2008-10-23 Thread Mike Driscoll
On Oct 23, 2:21 pm, bill [EMAIL PROTECTED] wrote: All, I am trying to access Excel from Python. Many of the examples started with:       import win32com             blah, blah I try that from my Python shell and it fails. What am I missing here? TIA, Bill Dunno. Does it give a

Re: why would 'import win32com' fail?

2008-10-23 Thread [EMAIL PROTECTED]
On Oct 23, 3:21 pm, bill [EMAIL PROTECTED] wrote: All, I am trying to access Excel from Python. Many of the examples started with:       import win32com             blah, blah I try that from my Python shell and it fails. What am I missing here? You need to download and install the

Re: why would 'import win32com' fail?

2008-10-23 Thread bill
On Oct 23, 3:21 pm, bill [EMAIL PROTECTED] wrote: All, I am trying to access Excel from Python. Many of the examples started with:       import win32com             blah, blah I try that from my Python shell and it fails. What am I missing here? TIA, Bill Thanks for the