Re: [Tutor] python Module for Windows Active Directory

2011-08-02 Thread Ajith Gopinath
Sure Tim. Thanks for your help. Thanks and Regards Ajith Gopinath On Thu, Jul 28, 2011 at 8:32 PM, Tim Golden wrote: > On 28/07/2011 07:28, qbits...@gmail.com wrote: > >> Hi, >> >> Which is the best package/module in Python to work with Windows Active >> Directo

Re: [Tutor] pattern searching

2009-11-07 Thread Ajith Gopinath
Thanks folks. || a j i t || On Sat, Nov 7, 2009 at 7:49 AM, bob gailer wrote: > Shashwat Anand wrote: > >> @Bob: the solution seems promising, and it's fast. Thanks for the >> improvement. However I would like to do a minor change to the code to >> prevent it going to infinite loop. >> >> impo

Re: [Tutor] Image manipluation (On-the-fly thumbnail creation)

2009-09-15 Thread Ajith Gopinath
import glob import Image for infile in glob.glob("*.jpg"): im = Image.open(infile) # converting to thumbnail image im.thumbnail((128, 128), Image.ANTIALIAS) im.save("thumb" + infile, "JPEG") Will this be of ur help Vince? On 15/09/2009, vince spicer wrote: > On Tue, Sep 15, 2009 at 10:0

Re: [Tutor] pygtk

2009-09-08 Thread Ajith Gopinath
Thanks Patrik, this is what i am searching for. || a j i t || On Wed, Sep 9, 2009 at 1:27 AM, Patrick Sabin wrote: > The official docs > > http://www.pygtk.org/pygtk2tutorial/index.html > http://library.gnome.org/devel/pygtk/stable/ > > worked for me. > > - Patrick &g

[Tutor] pygtk

2009-09-08 Thread Ajith Gopinath
I will appreciate , if somebody guides me to a proper doc. on pygtk for 2.5/2.6. I am currently unable to find a good doc for the same :o( Thanks and regards ~|| a j i t || ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription opt

Re: [Tutor] how do we represent left arrow key in python programming.

2009-08-21 Thread Ajith Gopinath
3:28 PM, Luke Paireepinart wrote: > you're gonna have to be a lot more specific than that if you want a decent > answer. > > On Fri, Aug 21, 2009 at 4:45 AM, Ajith Gopinath wrote: > >> Hi Folks, >> how do we represent left arrow key in a python program? &g

[Tutor] how do we represent left arrow key in python programming.

2009-08-21 Thread Ajith Gopinath
Hi Folks, how do we represent left arrow key in a python program? Can anybody help? || a j i t || ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor