Re: [BangPypers] parsing directory and subdirecties

2010-11-18 Thread Senthil Kumaran
On Thu, Nov 18, 2010 at 10:46:47AM +0530, Kenneth Gonsalves wrote: Check if os.walk() is useful. but that is looping - which he does not want. Then he can wrap python over 'find -type f |wc -l' - Provided he is on POSIX and wants to just count the files. os.system('find -type f |wc -l')

Re: [BangPypers] Looking for recommendation for Python image-processing library

2010-11-18 Thread Gora Mohanty
On Mon, Nov 15, 2010 at 4:20 PM, Senthil Kumaran orsent...@gmail.com wrote: [...] I have heard positively of ImageMagick's python wrapper for doing Image Processing where PIL is not sufficient. For most of my simple needs PIL was enough. If ImageMagick has what you are looking for, I think you

Re: [BangPypers] Looking for recommendation for Python image-processing library

2010-11-18 Thread Gora Mohanty
On Wed, Nov 17, 2010 at 6:43 PM, Anand Balachandran Pillai abpil...@gmail.com wrote: [...] Have you used scipy ndimage  ? http://docs.scipy.org/doc/scipy/reference/tutorial/ndimage.html [...] Thanks for the suggestion. I will take a closer look at ndimage, but at first glance it looks like it

Re: [BangPypers] parsing directory and subdirecties

2010-11-18 Thread Dhananjay Nene
On Thu, Nov 18, 2010 at 10:46 AM, Kenneth Gonsalves law...@au-kbc.orgwrote: On Thu, 2010-11-18 at 10:26 +0530, Asokan Pichai wrote: On 18 November 2010 09:35, Nitin Kumar nitin.n...@gmail.com wrote: hi all, is there any simple way where a can parse into directory and subdirectories

[BangPypers] waiting for Third Party Applications in python

2010-11-18 Thread learningpython
Hi Experts, Step 1: I am using batch file/ Dos commands currently to call a third party appplication to publish a document. Step 2: As of now, i scheduled to run a second set of batch file leaving a long approximate time to allow third party to complete the above task where i get a

[BangPypers] [commercial] web mobile developers wanted for remote work

2010-11-18 Thread Kenneth Gonsalves
hi, A company doing sales and service of it's products around India wants to set up a portal to monitor it's work and optimise it's services. They have agreed to make the project open source, and will pay developers to develop it. The rates will be 'industry standard' (what ever that is). The

Re: [BangPypers] waiting for Third Party Applications in python

2010-11-18 Thread Senthil Kumaran
On Fri, Nov 19, 2010 at 11:04:16AM +0530, Mandar Vaze / मंदार वझे wrote: 2. Is there a way, i can know that third pary application has thrown up a dialog box, so that i can wait in Python till that point and execute clean up commands like killing the application, renaming the document etc.