fergalwalsh / pico

Pico is a very small web application framework for Python.
http://pico.readthedocs.io/
186 stars 41 forks source link

File upload support #6

Closed fkling closed 12 years ago

fkling commented 12 years ago

The server now accepts multipart POST requests which enables clients to send files. In JavaScript this can be done by passing File or FileList objects as arguments to the methods (see http://www.html5rocks.com/en/tutorials/file/dndfiles/). The server implementation will recieve an object implementing the File interface.