juliomalegria / django-chunked-upload

Upload large files to Django in multiple chunks, with the ability to resume if the upload is interrupted.
MIT No Attribution
214 stars 71 forks source link

Upload to Data Pipe #44

Open Motorrat opened 5 years ago

Motorrat commented 5 years ago

I came here because I need an online interface to a Python data pipe (Excel Anonymiser Script) https://github.com/Motorrat/anonyxel/issues/2

Data Pipe is a rather standard task. Many existing scripts would profit from being exposed on the web. For example I have another data pipe project autosklearn-zeroconf

So I would like to propose to pack your project in a drop-in app with a two hooks/callbacks - file received (to start processing pipeline) and return new file to the user (once processed). The programmer would then just have to configure the program (data pipe) name to be called upon file upload and write the resulting file out in a specified way (callback function?)

It could serve as a standard go-to technology to expose python scripts to internal users or where authentication etc. is not applicable, so no further functionality is required.