RE: New to Python need on advice on this script

2009-11-10 Thread Valentina Boycheva
, if possible, and extract the information from the GDB. This latter will work for PGDB, not sure about FGDB. Regards, Valentina Boycheva From: Jim Valenza [mailto:jim.vale...@gmail.com] Sent: Tuesday, November 10, 2009 2:33 PM To: python-list@python.org Subject: New to Python need on advice

Re: Pyfora, a place for python

2009-11-04 Thread Valentina Boycheva
Daniel Fetchinson fetchin...@googlemail.com writes: Probably this thread is going by far too far :) Ben Finney [ben+pyt...@benfinney.id.au] writes: Agreed. I was following this discussion first with curiosity and then with increasing disbelief. As a scientist and a programmer, I always

Re: executing VBScript from Python and vice versa

2005-02-10 Thread Valentina Boycheva
A while ago I asked how VBScript can be called from Python. The two answers I received suggested using win32com.client and MSScriptControl.ScriptControl. This solution required embedding the VBScript code inside the Python script. Here's a shell approach that runs an existing VBScript file:

Re: executing VBScript from Python and vice versa

2005-02-07 Thread Valentina Boycheva
Thanks to Michel Claveau and Paul Paterson for providing examples on how to use ScriptControl to embed VBScript in Python script. I've only tried this once before on another occasion and it was fascinating to see how a function generates another function! Valentina --

executing VBScript from Python and vice versa

2005-02-04 Thread Valentina Boycheva
Is there a way to make programs written in these two languages communicate with each other? I am pretty sure that VBScript can access a Python script because Python is COM compliant. On the other hand, Python might be able to call a VBScript through WSH. Can somebody provide a simple example? I

FW: executing VBScript from Python and vice versa

2005-02-04 Thread Valentina Boycheva
Thanks for the reply. I already have Learning Python from Mark Lutz and David Ascher, which covers 2.3 (I am in 2.4). However, it seems like heavy artillery to me. What I want is, for instance, run a VBScript to get a function output and feed it to the Python script that called it. The reason is