Re: [BangPypers] Django FTP

2014-07-02 Thread Anand Reddy Pandikunta
@Gora Mohanty @Arun Ravindran Thanks for the help. Task completed. FTP + Celery + Django = Asynchronously Awesome!! On Tue, Jul 1, 2014 at 1:14 PM, Arun Ravindran wrote: > Hi Anand, > > Tasks which take significant time such as downloading a file should be kept > out of the normal request-r

Re: [BangPypers] Django FTP

2014-07-01 Thread Arun Ravindran
Hi Anand, Tasks which take significant time such as downloading a file should be kept out of the normal request-response processing. I suggest using an asynchronous task queue like Celery for this. Once the form is found to be valid, you can start a Celery task to d

Re: [BangPypers] Django FTP

2014-07-01 Thread Gora Mohanty
On 1 July 2014 12:58, Anand Reddy Pandikunta wrote: > > Hi, > > In one Django App, I've created a simple form. It has URLField, where user > enters FTP url. As soon as user submits the form, I have to download the > file and save it our servers. File size: ~10gb. Need to download securely. Use ft

[BangPypers] Django FTP

2014-07-01 Thread Anand Reddy Pandikunta
Hi, In one Django App, I've created a simple form. It has URLField, where user enters FTP url. As soon as user submits the form, I have to download the file and save it our servers. File size: ~10gb. Need to download securely. I am new to Django. Any help/resources is highly appreciated. Thank Yo