On Mon, Aug 3, 2009 at 12:53, Peter Bengtsson <pete...@gmail.com> wrote:

>
> I would write a management command and let a cron job fire off to run
> it.
> See this for how to write management commands:
> http://docs.djangoproject.com/en/dev/howto/custom-management-commands/
>
> Then your cron job can look something like this:
> */5 * * * * python /path/to/manage.py copyfromftp >> /dev/null 2>&1
>
> But running this as a separate command you'll make sure than for each
> run python will reuse memory it has freed.
> You might also want to write it so that the management command only
> does a limited about of photos in one batch and instead run the
> management command often.


Hi,

This does not really work for me. When I import the photo's, I also add the
creator to the Model, and give the user the option add the photo's to a
specific event. The cronjob would just randomly import the photo's as soon
as they are uploaded.

 So these two questions still stand:
- It would be nice to open the uploaded file as an PIL image, resize it, and
save it to the final destination, therefore saving an extra open() call. It
is probably possible to do this in a subclassed ImageField, but I can't
really get my head around these FileFields with the FieldFile classes. So
what method would I have to override to do this?
- What would be the best way to start a separate python script? And is there
any way to communicate between de fastcgi script and the import script? Say
pass that we are at image 25 of 100?

Does anyone have a solution?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to