Re: Newbie: ADO & Python in ASP

2001-06-04 Thread Arthur Lee
have very little to do with python.  It works with ADO in general. Arthur Lee

Re: popen usage

2001-07-05 Thread Arthur Lee
Perhaps it should have been the following? : 1:    stdin=os.popen('tail -f somefile') 2:    logline=re.compile('(.*?).*?- - \[(.*?)\] "(.*?) (.*?)" (.*?) (.*?)"(.*?)" (.*?)".*') 3:    a=stdin.readline() 4:    print a 5:    while a: 6:    g=logline.search(a) 7:    if not g: continue 8:

Re: popen usage

2001-07-08 Thread Arthur Lee
. Phil ----- Original Message - From: Arthur Lee To: Phil Harris ; [EMAIL PROTECTED] Sent: Friday, July 06, 2001 7:29 AM Subject: Re: popen usage Perhaps it should have been the following? : 1:    stdin=os.popen('tail -f somefile') 2:    logline=re.compile('(.*?).*?- - \[(.*?