Re: [python-win32] Fwd: Renaming Excel Spreadsheets

2008-08-26 Thread Waldemar Osuch
On Tue, Aug 26, 2008 at 12:57 PM, James Matthews <[EMAIL PROTECTED]> wrote: > > > -- Forwarded message -- > From: Greg Lindstrom <[EMAIL PROTECTED]> > Date: Tue, Aug 26, 2008 at 11:54 AM > Subject: Renaming Excel Spreadsheets > To: [EMAIL PROTECTED] > > > Hello, > > I am working wit

Re: [python-win32] rdflib install fails

2008-11-25 Thread Waldemar Osuch
On Tue, Nov 25, 2008 at 8:46 AM, Jose Quesada <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm new to python. > I'm trying to install rdflib. It needs to compile some C code, so it relies > on cywin/gcc. > It seems that it doesn't like something in my system. Here is the error: > > invalid version numb

Re: [python-win32] Dict, List and Com Object...oh my!

2009-07-30 Thread Waldemar Osuch
On Thu, Jul 30, 2009 at 11:20 AM, Person, Roderick wrote: > I'm connecting to a MS SQL 2005 database using ADO com objects and getting a > dataset from a stored procedure -- Works great. > > I'm placing that dataset into a dictionary -- works. > I'm placing that dictionary into a list -- problem!!

Re: [python-win32] Why can I compile a C extension if I replace python25.lib with python25.dll?

2009-08-07 Thread Waldemar Osuch
On Fri, Aug 7, 2009 at 11:19 AM, Tim Roberts wrote: > Jason Baker wrote: >> >> Nope.  I get linker errors saying it cant find a whole slew of symbols >> from the Python library.  I haven't been able to figure out any other >> way to get it to work without replacing python25.lib with python25.dll >>

Re: [python-win32] Documentation for win32com for Worksheets Worksheets.Range and Worksheets.Cells

2010-01-28 Thread Waldemar Osuch
What Tim said but if you are generating Excel files from scratch consider using xlwt: http://pypi.python.org/pypi/xlwt The advantage is that the module is cross platform and you do not need to have Excel installed. In my experience it is also quicker to generate spreadsheets import xlwt values

Re: [python-win32] Documentation for win32com for Worksheets Worksheets.Range and Worksheets.Cells

2010-01-29 Thread Waldemar Osuch
2010/1/29 Błażej Kaczorowski : > non works in 3.1 :/ > The maintainer of xlwt, John Machin is thinking about the port to python 3.x http://groups.google.com/group/python-excel/browse_thread/thread/e3fe92bd08aa1cdd# but I do not think he is in a rush. ___

Re: [python-win32] does pipes.quote() work properly on Windows?

2010-05-23 Thread Waldemar Osuch
On Fri, May 21, 2010 at 15:03, Bill Janssen wrote: > Anyone know if the quote() function in the "pipes" module does the right > thing for cmd.exe pipes? > > If not, what is the right thing? > twisted.python.win32 has a couple functions that try very hard to get the quoting right. http://twistedmat

Re: [python-win32] read word contents including images and font format

2011-10-05 Thread Waldemar Osuch
On Wed, Oct 5, 2011 at 10:30, Tim Roberts wrote: > Anthony Mpofu wrote: >> >> I want to read contents from a word document (source) and insert the >> contents to the (destination) word document. >> ... >> The above solution only copies the text content from the source document. >> The read content

Re: [python-win32] I need to make a COM object with py2exe. Please HELP!

2015-05-01 Thread Waldemar Osuch
This project seems to be relevant to the discussion. http://xlwings.org/ It's Excel <-> Python integration. Maybe you do not have to start from scratch to achieve your goal. w/o ___ python-win32 mailing list python-win32@python.org https://mail.python.o

Re: [python-win32] driving win32 gui

2005-03-18 Thread Waldemar Osuch
On Fri, 18 Mar 2005 15:39:42 +0100, david83 <[EMAIL PROTECTED]> wrote: > > Hello, > > I need to automate the installation of a program under > Windows. I use python + win32 extension [...] I have not tried it but I have heard good things. http://www.tizmoi.net/watsup/intro.html http://www.brunni

Re: [python-win32] PAMIE and BeautifulSoup

2006-02-17 Thread Waldemar Osuch
> > From BeautifulSoup import BeautifulSoup > > Import cPAMIE > > url = 'http://www.cnn.com' > > ie = cPAMIE.PAMIE(url) > bs = BeautifulSoup(ie.pageText()) ___ Python-win32 mailing list Python-win32@python.org http://mail.python.org/mailman/listinfo/py

Re: [python-win32] Acrobat Reader

2006-04-05 Thread Waldemar Osuch
On 4/5/06, Tim Roberts <[EMAIL PROTECTED]> wrote: > On Wed, 5 Apr 2006 09:15:16 +0200, "Mirco Furlan (Visionee)" > <[EMAIL PROTECTED]> wrote: > > >I'm trying to use an instance of Adobe Acrobat Reader. I can successfull > >create an instance with win32com.client.Dispatch, > > > > How did you do tha

Re: [python-win32] Runnin Python app as service with separate console

2006-04-05 Thread Waldemar Osuch
> Morgan, Byron wrote: > > I have a robust, stable Python script that runs 24-7, crunching a telnet > > feed of real-time data. Problem is, it has to run in a dos console > > window on the desktop. I would like to run it as a service, and be able > > connect to it and monitor performance with a sep

Re: [python-win32] Acrobat Reader

2006-04-06 Thread Waldemar Osuch
On 4/6/06, Tim Roberts <[EMAIL PROTECTED]> wrote: > On Wed, 5 Apr 2006 11:55:18 -0600, "Waldemar Osuch" > <[EMAIL PROTECTED]> wrote: > > >I know Dispatch used to work with the Reader. Did Adobe broke the > >Reader to force us to pay for the full

Re: [python-win32] Runnin Python app as service with separate console

2006-04-06 Thread Waldemar Osuch
On 4/6/06, Michael Li <[EMAIL PROTECTED]> wrote: > > Although it is not obvious from Twisted documentation it is trivial to > > run an application as a windows service as long as you use *.tac files > > to build it. > > Can you share your code ? > > I also have an application using Twisted, but

Re: [python-win32] plot function

2006-09-24 Thread Waldemar Osuch
On 9/23/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > Does Python have a library providing a plot function similiar to matlab > that will plot a math plot or just some data points in a pop-up window > Thanks > > ___ > Python-win32 mailing list

Re: [python-win32] Does pywin32-odbc support several users?

2006-11-18 Thread Waldemar Osuch
On 11/17/06, rieh25 <[EMAIL PROTECTED]> wrote: > > Ok, thanks... > > > Jim Vickroy wrote: > > > > rieh25 wrote: > > > >>I'm thinking of implementing pywin32 to implement access to an Oracle > >>database, to users of an application built in Zope . Is this a good idea, > or > >>is pywin32's odbc feat

Re: [python-win32] how to get select behavior for non-socket objects

2007-07-24 Thread Waldemar Osuch
On 7/23/07, Brian Martin <[EMAIL PROTECTED]> wrote: > Hello, I understand that the select module will only work with sockets under > windows. Is there a built-in python module for win32 that provides some kind > of multiplexing > ability for something like a serial port (via pyserial). > > thanks,

Re: [python-win32] A shameless COM question

2008-04-01 Thread Waldemar Osuch
On Tue, Apr 1, 2008 at 7:11 PM, Marcus Low <[EMAIL PROTECTED]> wrote: > Hi Tim, > > Thank you for the alternative view, yes i have the twisted downloaded and > inspecting it prior to this question. > My only concern would be this is because the said COM component is made to > run optimally in

Re: [python-win32] Anyone is able to install PSE on windows?

2008-04-02 Thread Waldemar Osuch
On Wed, Apr 2, 2008 at 5:45 AM, hiren kumar <[EMAIL PROTECTED]> wrote: > Hi, > > Anybody is successfully able to install PSE - Python Servlet Engine on > windows? > > I have installed the Python 2.5 and apache 2.2. > I have installed mopd_python and verified it and it is running perfectly > fine. >

Re: [python-win32] Dispatch InternetExplorer.Application fails

2008-05-28 Thread Waldemar Osuch
> > 2) use some python libraries (libxml2, libxslt) to transform the xml to > html. That part works but now how to I make a pdf from the html file? > I would use lxml for the transformation and wx for printing. The example below will prompt you with the dialog but it should be possible to silence i

Re: [python-win32] Dispatch InternetExplorer.Application fails

2008-05-29 Thread Waldemar Osuch
On Thu, May 29, 2008 at 7:26 AM, Rickey, Kyle W <[EMAIL PROTECTED]> wrote: > Thanks, I got your example working but unfortunately the results didn't > work good. Here's links to 2 pictures for comparison, sensitive > information removed. > > http://www.dsrt.org-a.googlepages.com/bad_report.png > ht

Re: [python-win32] AMD64 build 220 for python 3.6 - installer looking for registry entry 3.6-32 which is probably incorrect for the x64 installer

2017-02-13 Thread Waldemar Osuch
Not a solution per say but a workaround if you are interested is: 1) Download the pywin32 in the wheel format from Christoph Gohlke's, "thanks god it exists" site http://www.lfd.uci.edu/~gohlke/pythonlibs/#pywin32 2) Get the one appropriate for your Python version ( pywin32‑220.1‑cp36‑cp36m‑win

Re: [python-win32] Accessing shared calendars in Outlook with pywin32

2020-09-25 Thread Waldemar Osuch
https://pypi.org/project/exchangelib/ may be of use. It has very decent documentation with a lot of examples. Cheers, Waldemar On Fri, Sep 25, 2020 at 6:55 PM Verdu Mulero, Christian < christian.verdumul...@cit.fra-uas.de> wrote: > I have a little problem. > > > > For a department I have to writ

Re: [python-win32] Recommended web server implementation to actively run multiple flask web apps on a windows machine

2023-09-08 Thread Waldemar Osuch
I have a small Flask app running on IIS with wfastcgi https://pypi.org/project/wfastcgi/ PyPI project seems to be dormant but the package works :-) Cheers, Waldemar On Fri, Sep 8, 2023 at 1:50 AM Jacob Kruger wrote: > Thanks. > > > More to do with that, at times, I want to run forms of apache,