You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
185 B

  1. from .apps import DetectAppConfig
  2. def handle_uploaded_file(f, output):
  3. with open(output, 'wb') as destination:
  4. for chunk in f.chunks():
  5. destination.write(chunk)