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
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
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!!
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
>>
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
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.
___
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
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
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
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
>
> 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
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
> 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
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
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
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
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
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,
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
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.
>
>
> 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
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
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
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
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,
25 matches
Mail list logo