Re: Newbie question - what's the term for input/output to a web page?

2007-12-21 Thread Ismail Dönmez
Saturday 22 December 2007 03:03:47 tarihinde Rachel Garrett şunları yazmıştı: > I'd like to write a simple application that will accept input from the > user, go out to a particular web page, and submit the user's input to > the website. The results that are displayed by the web page should > then

Re: How to generate pdf file from an html page??

2007-12-19 Thread Ismail Dönmez
Wednesday 19 December 2007 17:40:17 tarihinde Terry Jones şunları yazmıştı: > > "Grant" == Grant Edwards <[EMAIL PROTECTED]> writes: > > Grant> On 2007-12-19, abhishek <[EMAIL PROTECTED]> wrote: > >>> > Hi everyone, I am trying to generate a PDF printable format file from > >>> > an html page.

Re: reading list of list to a file

2007-12-09 Thread Ismail Dönmez
Sunday 09 December 2007 18:11:00 tarihinde caroliina şunları yazmıştı: > i made a list of lists but i cant write it into a file. how do i get the > first string in a sublist? An easy example: >>> a=[[1,2,3],[4,5,6]] >>> a[0][0] 1 >>> a[1][0] 4 >>> -- Never learn by your mistakes, if you

Re: Fill In a Form Automatically

2007-12-07 Thread Ismail Dönmez
Friday 07 December 2007 22:06:23 tarihinde Victor Subervi şunları yazmıştı: > Hi; > I'm trying to fill in a Zope form automatically. I have this script, which > works great for creating the page...but how do I write to it? Use Mechanize [0]. [0] http://wwwsearch.sourceforge.net/mechanize/ -- Ne