Re: Implement file download using python

2007-09-27 Thread skulka3
On Sep 27, 11:39 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > Hello, > > > I want to implement file downloads inside an authenticated web page, > > such that when a user clicks a link, the server side python code > > connects to a ftp server, downloads a relevan

Re: Implement file download using python

2007-09-27 Thread Diez B. Roggisch
[EMAIL PROTECTED] wrote: > Hello, > > I want to implement file downloads inside an authenticated web page, > such that when a user clicks a link, the server side python code > connects to a ftp server, downloads a relevant file and then streams > the file to the browser for the user to open it w

Implement file download using python

2007-09-27 Thread skulka3
Hello, I want to implement file downloads inside an authenticated web page, such that when a user clicks a link, the server side python code connects to a ftp server, downloads a relevant file and then streams the file to the browser for the user to open it with the appropriate application. In thi