Re: [Tutor] Where is win32print in Windows 10 Pro

2016-08-13 Thread Ken G.
On 08/12/2016 11:56 PM, eryk sun wrote: On Thu, Aug 11, 2016 at 2:44 PM, Joaquin Alzola wrote: import win32print ImportError: No module named win32print That module doesn't exist on your python path 'pywin32' is its canonical name.

Re: [Tutor] Where is win32print in Windows 10 Pro

2016-08-12 Thread eryk sun
On Thu, Aug 11, 2016 at 2:44 PM, Joaquin Alzola wrote: > >>import win32print >>ImportError: No module named win32print > > That module doesn't exist on your python path > > 'pywin32' is its canonical name. > > http://sourceforge.net/projects/pywin32/ I'm not certain

Re: [Tutor] Where is win32print in Windows 10 Pro

2016-08-12 Thread Joaquin Alzola
>import win32print >ImportError: No module named win32print That module doesn't exist on your python path 'pywin32' is its canonical name. http://sourceforge.net/projects/pywin32/ For the same question: https://mail.python.org/pipermail/python-list/2015-July/693402.html This email is

Re: [Tutor] Where is win32print in Windows 10 Pro [RESOLVED]

2016-08-11 Thread Ken G.
On 08/11/2016 01:19 PM, Alan Gauld via Tutor wrote: On 11/08/16 17:14, Ken G. wrote: Unfortunately, no printing is done yet. Still working on it. Your reference to duckduckgo.com provided a list of useful pywin32 attibutes but no examples was provided. Will keep looking. Thanks. PyWin32 is a

Re: [Tutor] Where is win32print in Windows 10 Pro [RESOLVED]

2016-08-11 Thread Alan Gauld via Tutor
On 11/08/16 17:14, Ken G. wrote: > Unfortunately, no printing is done yet. Still working on it. Your > reference to duckduckgo.com provided a list of useful pywin32 attibutes > but no examples was provided. Will keep looking. Thanks. PyWin32 is a very thin layer on top of the Win32/COM API.

Re: [Tutor] Where is win32print in Windows 10 Pro [RESOLVED]

2016-08-11 Thread Ken G.
On 08/11/2016 11:34 AM, Steven D'Aprano wrote: On Thu, Aug 11, 2016 at 10:28:44AM -0400, Ken G. wrote: import win32print ImportError: No module named win32print I have searched high and low within my Windows computer and have been unable to find

Re: [Tutor] Where is win32print in Windows 10 Pro

2016-08-11 Thread Steven D'Aprano
On Thu, Aug 11, 2016 at 10:28:44AM -0400, Ken G. wrote: > import win32print > > ImportError: No module named win32print > > > > I have searched high and low within my Windows computer and have been > unable to find 'win32print'. Any idea of where it is located

[Tutor] Where is win32print in Windows 10 Pro

2016-08-11 Thread Ken G.
Currently in my Windows 10 Pro, 64-bit operating system, x64-bit based processor, using Python-2.7.12.amd64, I have for the first few lines: ``` import os, sys import win32print ` and get the following error message: