Prev: pdf to text
Next: excel find last column
From: vithi on 1 Feb 2007 20:18 Hi, If you are saying win32com in part of the python then you are wrong. Here is a prove:- IDLE 1.2 >>> import win32com Traceback (most recent call last): File "<pyshell#0>", line 1, in <module> import win32com ImportError: No module named win32com >>> you try in your computer On Jan 31, 7:17 pm, "Gabriel Genellina" <gagsl...(a)yahoo.com.ar> wrote: > En Wed, 31 Jan 2007 22:17:10 -0300, vithi <vith...(a)hotmail.com> escribió: > > > This is not I was looking for. There is a module call > > "win32com.client" in python some people used it If any body know about > > it let me know. > > > On Jan 31, 1:45 pm, Gary Herron <gher...(a)islandtraining.com> wrote: > >> vithi wrote: > >> > Hi > >> > Any one tell me where I can get (or download) python modules win32com > >> > or win32com.client because I have to use "Dispatch" thanks > > >> You want the "python for windows" extension, available from > >> http://sourceforge.net/projects/pywin32/ > > Yes. You get the win32com module from the above url. It's part of that > package, by Mark Hammond, and a lot of people uses it. > > -- > Gabriel Genellina
From: vithi on 1 Feb 2007 20:22 On Jan 31, 6:35 pm, rzed <rzan...(a)gmail.com> wrote: > "vithi" <vith...(a)hotmail.com> wrote innews:1170278964.738118.219600(a)k78g2000cwa.googlegroups.com: > > > Hi > > Any one tell me where I can get (or download) python modules > > win32com or win32com.client because I have to use "Dispatch" > > thanks > > What distribution are you using? If you are using Windows and have > downloaded the Python.org one, then, as Gary has told you: > "You want the "python for windows" extension, available from http://sourceforge.net/projects/pywin32/" > > I think the ActiveState distro includes it as part of its package. > > I don't know if any of this applies if you are using Linux, VMS, etc. > > -- > rzed
From: vithi on 1 Feb 2007 20:28 Hi, I use python for window. If you are saying win32com in part of the python then you are wrong. Here is a prove:- IDLE 1.2 >>> import win32com Traceback (most recent call last): File "<pyshell#0>", line 1, in <module> import win32com ImportError: No module named win32com >>> you try in your computer vithi
From: Gabriel Genellina on 1 Feb 2007 20:55 En Thu, 01 Feb 2007 22:18:49 -0300, vithi <vithi99(a)hotmail.com> escribi�: > If you are saying win32com in part of the python then you are wrong. Uh, what is so difficult to understand? vithi wrote: >> Any one tell me where I can get (or download) python modules win32com On Jan 31, 1:45 pm, Gary Herron <gher...(a)islandtraining.com> wrote: >> You want the "python for windows" extension, available from >> http://sourceforge.net/projects/pywin32/ You didn't believe him, so I wrote: >> Yes. You get the win32com module from the above url. It's part of that >> package, by Mark Hammond, and a lot of people uses it. rzed <rzantow(a)gmail.com> wrote: >> I think the ActiveState distro includes it as part of its package. vithi wrote: >>>> import win32com > > Traceback (most recent call last): > File "<pyshell#0>", line 1, in <module> > import win32com > ImportError: No module named win32com >>>> Sure, you don't have it installed, else you would not be asking here. > you try in your computer Why should I? -- Gabriel Genellina
From: rzed on 2 Feb 2007 00:09
"vithi" <vithi99(a)hotmail.com> wrote in news:1170379682.386807.99880(a)a34g2000cwb.googlegroups.com: > Hi, > I use python for window. If you are saying win32com in part of the > python then you are wrong. That is not what I or anyone else is saying. What we have said, perhaps not in words you understand, is this: 1) In your browser, enter this URL: http://sourceforge.net/projects/pywin32/ 2) When the page comes up, find the big green box that says "Download Python for Windows extensions" and click on it 3) In the next page that comes up, find the big green box that says "Download" and click on that. That will bring up a page with a list of installers, each with a name that indicates what Python release the module goes with. If you have the 2.4 release, for instance, click on pywin32-210.win32-py2.4.exe to download the matching pywin32 installer. 4) When you have downloaded the installer, click on it in your Windows Explorer. This will execute the installer, and the entire pywin32 package will be installed, including win32com. Try those steps, then try importing win32com again. -- rzed |