Hi Michael, I'm familiar with using with. The documentation states that it's usually easiest to use chunks of a file to prevent memory over use. My client's site needs to run in a shared environment at WebFaction, so I'm just trying to limit memory use on these file uploads as much as possible.
So, what I'm looking for is an example of how to do what the documentation states - use chunks all the time instead of loading the file into memory if it's 2.5MB or less. Thanks, Brandon On Feb 16, 12:18 pm, msmit...@naz.edu wrote: > I'm wondering where you got the idea that your custom handler is a function > that goes into your view. From what I'm reading > (http://docs.djangoproject.com/en/dev/topics/http/file-uploads/#upload...) it > looks like a custom handler needs to be a class that implements at least > receive_data_chunk(self, raw_data, start) and file_complete(self, file_size). > > (As an aside, if you're using Python 2.5 or greater you might consider using > the 'with' statement in your handler... > <http://www.python.org/doc/2.5.2/ref/with.html>) > > Best wishes, > Michael A. Smith > Web & Digital / Academic Technologies Manager > Nazareth College > > ----- "Brandon Taylor" <btaylordes...@gmail.com> wrote: > > > > > Hi Everyone, > > > I'm confused about creating a custom upload handler and how it ties > > into my model. From the docs, this is an example of a custom upload > > handler, which I'm assuming goes in my view, or is accessed from my > > view: > > > def handle_uploaded_file(f): > > destination = open('some/file/name.txt', 'wb+') > > for chunk in f.chunks(): > > destination.write(chunk) > > destination.close() > > > Let's say my model is: > > > class MyModel(models.Model): > > my_file = models.FileField(upload_to='uploads/') > > > How do the FileField "my_file" and the handler > > "handled_uploaded_file" > > work together? In my project, I need to allow users to upload large- > > ish files. Say 10 - 20 MB. What's the best way to handle this > > functionality? I would sincerely appreciate an example if someone has > > one. > > > Kindest Regards, > > Brandon > > > -- > > You received this message because you are subscribed to the Google > > Groups "Django users" group. > > To post to this group, send email to django-us...@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. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@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.