Re: Class file location

2007-07-09 Thread axjacob
My mistake. It is Jython. -- Original message -- From: Bjoern Schliessmann <[EMAIL PROTECTED]> > [EMAIL PROTECTED] wrote: > > Is there a way to define a different directory for the generated > > .class(*$py.class) files than the current directory where the > > pyt

Re: Htmllib help

2007-07-09 Thread axjacob
Thank you. The NullWriter worked perfectly. I will certainly look at HTMLParser. -- Original message -- From: "Gabriel Genellina" <[EMAIL PROTECTED]> > En Fri, 06 Jul 2007 03:44:20 -0300, <[EMAIL PROTECTED]> escribió: > > > Thats right I don't need the output an

Class file location

2007-07-09 Thread axjacob
Is there a way to define a different directory for the generated .class(*$py.class) files than the current directory where the python scripts are located and executed from? Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: Htmllib help

2007-07-05 Thread axjacob
Thank you. Thats right I don't need the output any where so I don't need to use the writer. I can remove it wowever will the formater work since it needs writer? Maybe I can use the Null writer? -- Original message -- From: "Gabriel Genellina" <[EMAIL PROTECT

Htmllib help

2007-07-05 Thread axjacob
I am using html and formater as shown below. They are used as part of a larger program. Even though I don't use any print statements, the htmllib seems to be throwing parts of the html page on to the standard out(my screen in this case). Is there a way to disable the output? import htmllib w

csv search and print

2007-06-18 Thread axjacob
I have a csv file containing lot of rows & columns. I wanted to search thru the heading for each column for a string and then print all the headings and the corresponding rows if a match is found. Any advise? Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: e-mailing multiple values

2007-05-09 Thread axjacob
Since e-mail requires a string. Here is what I could do. list.append(item1) list.append(item2) finalstr = ''.join(list) return finalstr -- Original message -- From: "Gabriel Genellina" <[EMAIL PROTECTED]> > En Tue, 08 May 2007 20:19:22 -0300, Ian Clark <[EMAIL PR

Re: FW: Re: e-mailing multiple values

2007-05-08 Thread axjacob
Thanks. That does help. When teh script sends a mail of the list item(all_data), the data shows up like this: [(' Ham\n', ' eggs \n'), (' chicken \n', ' thighs \n')] So I have to figure out a way to cleanup the co