jczic / MicroWebSrv2

The last Micro Web Server for IoTs (MicroPython) or large servers (CPython), that supports WebSockets, routes, template engine and with really optimized architecture (mem allocations, async I/Os). Ready for ESP32, STM32 on Pyboard, Pycom's chipsets (WiPy, LoPy, ...). Robust, efficient and documented!
https://github.com/jczic/MicroWebSrv2
MIT License
662 stars 97 forks source link

File Upload #33

Closed saeugetier closed 4 years ago

saeugetier commented 4 years ago

Is it possible to receive a file upload via HttpRequest?

jczic commented 4 years ago

No, you must handle request and process the data posted yourself. But a good way is to send file using javascript binary buffer through a websocket for example :)